{
“fieldname”: “status”,
“label”: __(“Status”),
“fieldtype”: “MultiSelectList”,
“width”: “80”,
“default”: “To Deliver and Bill”,
get_data: function(txt) {
let status = [“To Bill”, “To Deliver”, “To Deliver and Bill”, “Completed”]
let options =
for (let option of status){
options.push({
“value”: option,
“description”: “”
})
}
return options
}
},
i tried this but not working