So in my form I have a data table with 3 required columns.
I've successfully added a validator to ensure at least one entry is added to this table.
However, once a user populates the column they can tab out and not compete the remaining 2 columns and submit the form. I've tried adding a column validator but his does not work and ruins my previous validator.
"fd.control('DataTable').addColumnValidator('Level', {
error: 'Error message',
validate: function(value) {
if (value <= 0) {
this.error = 'You must select a Programme Level';
return false;
}
return true;
}
});
Is there a way to make the columns active so the user, even if they tab out, must input an entry.
Thanks

