Hello, I've tried adding a custom checkbox to the toolbar using ej2-buttons. The checkbox appears but has no handlers attached to it when I click on it. How do I also allow an input to fire the toolbarClick event?
Here's the basics of my code:
```javascript
import { GridComponent, Toolbar, ToolbarItems } from '@syncfusion/ej2-react-grids';
import { CheckBox } from '@syncfusion/ej2-buttons';
function App() {
const templateCheckbox = new CheckBox({ label: 'Click', checked: false })
const toolbarOptions = [
{ type: 'Input', template: templateCheckbox, id: 'show-archived' },
]
const toolbarClick = (args) => {
console.log(args)
}
return (
<GridComponent toolbarClick={toolbarClick}>
...data
</GridComponent>
)
}
```