Hi,
I am trying to get rid of the validation error message which shows up when I click "Edit" in grid toolbar. Despite the fact that the dropdown is populated and the user just wants to update its value, the error message still shows up when the edit button is first clicked. Once the control loses mouse focus - user changes the dropdown value, or clicks on the other control, the error message disappears.
How would I get rid of this unnecessary error message?
HTML:
<e-column field='visitId' headerText='Master Visit' width='200' textAlign='Left' editType='dropdownedit'
[validationRules]='requiredRule' [edit]='editParams' [allowEditing]='userIsAllowed'
type='string'></e-column>
TS:
this.editParams = {
params:
{
query: new Query(),
fields: { value: 'visitId', text: 'visitName' },
}
};