item () 的 Angular 自定义验证dx-item
如何在 devextreme 和 Angular 4 中获得对此的引用?
<dxi-validation-rule type="custom" [validationCallback]="hasDateSet" message="Follow up date is required."></dxi-validation-rule>
<dxi-validation-rule type="custom" [validationCallback]="hasDateSet" message="Follow up date is required."></dxi-validation-rule>
hasDateSet(e): boolean {
//how can I get referece to this (scope)
//this here give me validator => e
console.log(e);
return false;
}