You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function myValidatorNotNullOrEmpty() {
return {
validator: function (value) {
return value !== '' && value !== null && value !== undefined && value !== 0;
},
message: function (value, item, param) {
return "this value must be not null or empty :) ";
}
};
}
Hello,
I have implemented this code https://github.com/tabalinas/jsgrid/blob/master/demos/custom-grid-field.html into my jsGrid but how do I validate the DatePicker field?
What am I trying to do?
`
var MyDateField = function(config) {
jsGrid.Field.call(this, config);
};
`
`
`
The text was updated successfully, but these errors were encountered: