I am coming from a web development background. In html, the selected value of an option menu can be different than the displayed text for the menu item:
Code: Select all
<option value="1">Red</option>
What's a good approach to accomplish this in LC with an Option Menu button? It seems like the only way is to create a hidden field that I update with the matching color id value when the option menu changes. That makes sense and isn't onerous, I just wanted to make sure I wasn't missing something obvious.