Hi @aleksandra_budnik ,
While pasting it allows null and ’ ', Please help me to highlight the cell as error when I paste empty data
data: "Billable",
type: "dropdown",
className: "htLeft",
source: ["Yes","No"],
strict: true,
allowInvalid: false,
placeholder: 'No',
validator: function (value, callback) {
if(value=='Yes'||value=='No') {
callback(true);
}
else {
callback(false);
}
},