Hi Bruno,
Thanks for contacting Syncfusion Suppot.
Query #1): MaskEdit- 2-way binding is not working
We have created a new incident under your account regarding this query. Please track that incident for further details by login with your Syncfusion account.
Query #2): ejButton widget event handler is executed twice
We are reproducing the same issue in our end. Initial click event raises from angular. Latter click event triggers due to ejButton. We can identify origin of click event using “model” (event argument). So, please use the below code to prevent the “click” event triggering from Angular.
[script]
onShowMaskValue(args){
if (!ej.isNullOrUndefined(args.model))
{
//your change event code.
console.log("Button Click event Triggered.");
//where args.model comprises of model values of Button
//args.model doesn’t present in the event raises from angular
}
}
|
Regards,
Francis Paul A.