I have an igniteui-angluar <ig-grid>
I am using and I want to validate the cells using validatiorOptions' checkValue event.
Here is my set up of the features section
HTML:
<features>
<feature name="Updating"
event-edit-row-ending="shiftBindHandler"
event-row-adding="addRowHandler">
<column-settings>
<column-setting column-key="ShiftID">
<editor-options type="text" max-length="4">
<validator-options event-check-value="shiftIDValidator">
</validator-options>
</editor-options>
</column-setting>
</column-settings>
</feature>
...
</features>
Here is the corresponding checkValue function
Controller:
$scope.shiftIDValidator = function (e, u) {
console.log('Validator Called');
}
What is the proper way to use checkValue in the igniteui-angular format? There isn't much information out there on any of this stuff. This paragraph on event handling is about all I can find on the subject.
Thanks!
Julie