Hi Internationale,
You can use something like next code in your combobox’s on Change action:
var pageId = $('select[name="combobox1"]').val();
phoneui.gotoMultiPagePage('m1-<designName>-multiPage1', 'SET_PAGE', 'm1-<designName>-'+pageId, 'NONE');
First, you get the value of the combobox, note that is necesary that the value of your items in combobox have the name of the pages id:
See attachment combobox-multipage.png
Then, you call the gotoMultiPagePage with parameters: widgetId, targetType (SET_PAGE in this case) your page id(i.e. m1-<designName>-page1) and transition.
Hope this is helpful.
Attachments:
You must be
logged in to view attached files.