Lucas
04/22/2024, 3:01 PMif(context.sublistId =='item' && context == 'WEBSTORE'){
log.debug("here");
}
Steve Goldberg
04/22/2024, 3:10 PMLucas
04/22/2024, 3:15 PM/**
* @NApiVersion 2.x
* @NScriptType ClientScript
*/
define(['N/ui/dialog','N/currentRecord'], function(dialog,currentRecord1) {
function fieldChanged(context) {
log.debug("fieldChanged");
}
function sublistChanged(context) {
log.debug("sublistChanged");
}
return {
fieldChanged: fieldChanged,
sublistChanged: sublistChanged,
};
});
Steve Goldberg
04/22/2024, 3:19 PMSteve Goldberg
04/22/2024, 3:19 PMLucas
04/22/2024, 3:19 PMeminero
04/22/2024, 3:41 PMLucas
04/22/2024, 3:59 PM