How to uncheck the list after refresh
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2024 06:15 AM
I have the following List action which refresh the list on click
function onClick() {
var selected = g_list.getChecked();
console.log("first " + selected);
setTimeout(function() {
g_list.refresh();
console.log("second " + g_list.getChecked());
}, 1000);
}
Even after refresh , getChecked() still returns the list of sysid's which were selected before refresh.
Even after refresh , getChecked() still returns the list of sysid's which were selected before refresh.
How do we uncheck this in the backend?
1 REPLY 1
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2024 06:47 AM