I've never seen it done before but is it possible to hide an option in a list using javascript?
Any thoughts on how to write this? I've read a bunch of blogs but havent seen anything on this topic.
Thanks!
*This post is locked for comments
I've never seen it done before but is it possible to hide an option in a list using javascript?
Any thoughts on how to write this? I've read a bunch of blogs but havent seen anything on this topic.
Thanks!
*This post is locked for comments
Thanks Guido. I figured it out a very similar way.
Thanks again for your help
Thanks!
Is this what the function would look like then?
function Meeting() {
var Meeting = Xrm.Page.data.entity.attributes.get("new_clientorprospect").getSelectedOption().text;
if (Meeting == "Client" || Meeting == "Prospect") {
Xrm.Page.getControl("new_action").removeOption("Strategic");
}
}
André Arnaud de Cal...
292,516
Super User 2025 Season 1
Martin Dráb
231,432
Most Valuable Professional
nmaenpaa
101,156