The native mark all buttons do not trigger client ...
# suitescript
s
The native mark all buttons do not trigger client side entry points, is that what you are asking?
e
It actually should mark all entries in the sublist, with a checkbox. Literally “mark all” - I have this working in other environments but can’t figure out the difference…
b
what does your sublist code look like?
e
Copy code
var newSublist = FORM.addSublist({ id: 'custpage_test_list', tab: 'custpage_rwc_btl_tab', type: serverWidget.SublistType.STATICLIST, label: 'Test' });
            newSublist.addMarkAllButtons();
            newSublist.addRefreshButton();
            newSublist.addField({ id: 'custpage_test', label: 'Test', type: serverWidget.FieldType.CHECKBOX });
            newSublist.addField({ id: 'custpage_text', label: 'Text', type: serverWidget.FieldType.TEXT });
            newSublist.setSublistValue({ id: 'custpage_text', line: 0, value: 'Testing check' });
serverWidget.SublistType.STATICLIST
This is why. . .
LIST
works
Thanks @battk