Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is an onChange Client Script that will clear values of an MRVS - Multi Row Variable Set
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
return;
}
g_form.clearValue('IO:sysid'); //pass in the sys_id of your MRVS/multi row variable set
}
Loading