Chris
04/10/2024, 9:01 PM//create an inline html field
var hideFld = context.form.addField({
id:'custpage_hide_buttons',
label:'not shown - hidden',
type: serverWidget.FieldType.INLINEHTML
});
var scr = "";
scr += 'jQuery("#custpage_sublistmarkall").hide();';
scr += 'jQuery("#custpage_sublistunmarkall").hide();';
Nathan L
04/10/2024, 9:03 PMChris
04/10/2024, 9:19 PMChris
04/10/2024, 9:43 PMNathan L
04/10/2024, 10:28 PM