I am using combo box to load a JSON object into data property. when page is load up the combo box is load up with default data. I want to refresh the combo box option dynamically by pass in new JSON object as new data. But the combo still display the old option value. How do i refresh the options in combo after page load?
function test() {
$$(“cbo_User”).data = userData;
}