Hi all, I would like to use, in my datagrid toolbar an ejs-checkbox to filter data.
I've tried to add a template item to toolbox using :
toolbarItems.Add(new {template = "<ejs-checkbox id='check' label='test' checked='' change='OnChange'></ejs-checkbox>", align = "right" })
without result.
I've solved with :
toolbarItems.Add(new {template = "<input type='checkbox' id='check1' onclick='handleClick(this);'> Show All</input>", align = "right" });
How can i have the same result with ejs-checkbox ?
Thanks in advance
Stefano