Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
nlapiRemoveLineItem as result of UI Changes (ClientScript)
Hi netsuitefolk,
i know there a some entries about this nlapiRemoveLineItem.
Our UI has a sublist and we want if a field changed to remove current lineitems of sublist.
if you tried all in forum mentioned things, nothing work on a clientscript as result of a fieldchanged event.
ex.:
if (nlapiGetLineItemCount('recmachcustrecord_ms_ci_contract') > 0) { for (var i = nlapiGetLineItemCount('recmachcustrecord_ms_ci_contract'); i >= 0; i--) { nlapiRemoveLineItem('recmachcustrecord_ms_ci_contract', i); } } result will that no sublist wasentry removed,
if you set an alert after each nlapiRemoveLineItem, than it will deletet. But this isn't userfriendly!
MY SOLUTIION
0