Hi Team,
Select Dropdown always return the first value, everytime i selects new value how can i fix this? the mapping screenshot is in below:
Hello She,
Please try to remove the link from MyID to Selected
Hi Evgene,
I already fixed this. issue the problem now is in select dropdown again. its empty when the page is show but its already have a values when the pageshow.
Hi,
Not yet, will update as soon as news.
hi She,
If you want to select the first item, after your select component is populated using the REST api, use this code in your success event
To select first item
code
// Change the select component name to suit yours
var myElement = $('select[name="mobileselectmenu_16"]');
myElement.val(myElement.find('option').first().val());
myElement.selectmenu('refresh');
/code
Hi I have a problem similar to the original problem that She had. I want the value that is actually saved in the database to appear first in the select menu. How do I do this?