Appery and Native Select Menu refresh differences
I have a select menu populated with the following code
setTimeout(function() {
Apperyio("emp_select").val("");
Apperyio("emp_select").refresh();
}, 10);
-OR-
setTimeout(function() {
Apperyio("emp_select").val("").selectmenu('refresh');
}, 10);
On the following mapping:
This results in the menu defaulting to a manually inoutted value, set up as shown:
The issue I am having is that when a user selects an item from the menu, the menu refreshes. However, this does not happen if I set the menu component as a Native Menu.
Is there a way I can default to a certain value like so yet have the select menu keep its selected value?