Chris
08/16/2021, 5:51 PMsublist.commitLine('item')
, is there a way to stop validateLine
event from firing?Steffen Andersland
08/16/2021, 6:00 PMChris
08/16/2021, 6:01 PMSteffen Andersland
08/16/2021, 6:03 PMChris
08/16/2021, 6:04 PMSteffen Andersland
08/16/2021, 6:09 PMfunction validateLine(context) {
if (context.sublistId === "item") return true;
if (/** some criteria met is invalid*/) return false;
return true
}