is there a way to determine if a field is a single...
# suitescript
k
is there a way to determine if a field is a single select or a multiple select via suitescript?
d
var objField = objSublist.getField({ fieldId: 'item' }); if(objField.type === 'checkbox'){ //Perform an action }
Its possible Please check the above script