Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3550
List opens
posted

I want to set new items and the selected item, in JS.

the following code works, but opens the window with the list of the combobox.

var currencies ="EUR-USD";

var n = currencies.split("-");

var comboPrem = $find("comboPremium");

comboPrem._elements["List"].innerHtml = '';

comboPrem.loadItems(n[0]);

comboPrem.loadItems(n[1]);

comboPrem.set_currentValue(n[0],false);