Reset LOV and re-assign values Follow
When there are dependent LOVs on one page, and you want to reset the LOV values according to new fields (call the service again with different input fields), you should do either of the following:
1. press the lov trigger button or in JS: $('#' + elementId + '_lov_trigger').click()
2. call the following functions:
setAutocomplete(elementId, serviceName, []);
$("#elementId").focus();
deleteOfflineResponse(serviceName); //optional
getSuggestions(elementId, serviceName);
Comments
0 comments
Please sign in to leave a comment.