Wiki

Clone wiki

grails-datatables / tableSearching

tableSearching

Values

Name Type Values Default
tableSearching boolean true, false true

Description

tableSearching is a table option that allows you to specify whether the search box at the top of the table will be drawn. It does not prevent searching from being performed via the DataTables JavaScript API or the DataTablesController.

Example

<dt:datatable name="MyTable" domainClass="this.is.my.DomainClass" serverSide="true" tableSearching="false">
    <dt:column name="myFirstProperty"/>
    <dt:column name="mySecondProperty"/>
</dt:datatable>

See Also

searchButton, columnSearching, tableSearching


Back to Options.

Updated