I have a form with a Select field (Dropdown) that is populated via a lookup from a database table.
Based on the value of another field that is returned when the record loads “onLoad” I want to change the available options that are shown in the Select field.
Example: Order is loaded into the form with “ReqShipMethod” as “Second”, so in the “ShipMethod” Select field I only want to display the options for 2nd day, like “UPS 2Day”, “Fedex Next Day”, “Fedex 2nd Day”, etc. These values are in a database table, but I don’t mind just listing the ones I want displayed.
Can I change the possible values for a dropdown dynamically after the form is loaded (Record is loaded) ?
Thanks!