Я добавляю поле типа URL в Sublist, когда создаю форму в SuiteScript.Как отобразить различные описания ссылок в разных строках подсписка?
Свойство Field.linkText, насколько я вижу, задает описание для всех строк поля (столбца).
var field = form.addField({
id : 'apply_trantype',
type : serverWidget.FieldType.URL,
label : 'TYPE'});
field.linkText = 'Bill'; // or 'Bill Payment', depending on row context
sublist.setSublistValue({
id : 'apply_trantype',
value : url.resolveRecord({
recordType : dataApply[i].recordType,
recordId : dataApply[i].internalid,
isEditMode : false
}),
line : i});
Спасибо.