Hi Pat,
Thanks for using Syncfusion products.
There is no allowSearching property in Grid. We can enable the search property by define the ‘search’ property in toolbar like as follows,
public toolbarOptions: any = ['Search'];
render() {
return (
<div className='control-pane'>
<div className='control-section row'>
<GridComponent dataSource={categoryData} toolbar={this.toolbarOptions} allowPaging={true} pageSettings={{ pageSize: 10, pageCount: 5 }} >
…
<Inject services={[Toolbar, Page]} />
</GridComponent>
</div>
</div>
) |
Please refer to the following online demo for more reference,
Please let us know if you have any further assistance on this.
Regards,
Venkatesh Ayothiraman.