Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
I need to make a dropdown that reads "Regular" but when selected I need it to say "RG".
Thank you in advance for you help.
Solved! Go to Solution.
In the exit event of the drop down menu, write the following code
if(this.rawValue == "Regular")
{
this.rawValue = "RG";
}
View solution in original post
Thank you so much for your help!
Views
Likes
Replies