Hi folks,
I want to notify a user to enter some information (voluntarily) when accessing the case record.
Does anyone have experience doing this, it could be a popup, banner, text etc..
Thanks,
J
*This post is locked for comments
Perfect, thanks!
J
No worries. Add the javascript to a web resource and call your function using the on load event handler
Hi T.I.A,
I think that's what I'll need to do. How do I add that in?
Sorry for my incompetence :D
Thanks,
J
you could either use Javascript running on load of the form, this will make a notification banner appear at the top of the form:
Xrm.Page.ui.setFormNotification(“This is an INFORMATION notification.”, “INFORMATION”)
or dialog pop up:
var alertStrings = { text: "successfully checkedin." };
var alertOptions = { height: 120, width: 260 };
Xrm.Navigation.openAlertDialog(alertStrings, alertOptions).then( function () { } );
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156