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.
Views
Replies
Total Likes
In the exit event of the drop down menu, write the following code
if(this.rawValue == "Regular")
{
this.rawValue = "RG";
}
Views
Replies
Total Likes
In the exit event of the drop down menu, write the following code
if(this.rawValue == "Regular")
{
this.rawValue = "RG";
}
Views
Replies
Total Likes
Thank you so much for your help!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies