Hi.
Im having a problem for make make work ok a input type number in a grid toolbar.
the following code is working ok
this.toolbar=[{ template: '<input type="number" />' } ,'Search']
but neither
this.toolbar=[{ template: '<ejs-numerictextbox ></ejs-numerictextbox>' } ,'Search']
neither
this.toolbar=[{ template: '<input type="number" [(ngModel)]=filterChoiceCount />' } ,'Search']
Both of them works ok in directly in the html, so de the imports and the variables, are correct.
and What i really would need to do is a combination of both, just like:
this.toolbar=[{template:'<ejs-numerictextbox min="1000" max="50000" [(ngModel)]="filterChoiceCount" step="500"></ejs-numerictextbox>'}, 'Search']
wich works correctly if i put directly in the html.