Wiki

Clone wiki

grails-datatables / searching

searching

Values

Name Type Values Default
searching boolean true, false true

Description

searching is a table option that allows you to specify whether searching is enabled for the table. This is part of the DataTables JavaScript plugin. If set to false, then no searching can be performed on the table.

Example

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

See Also

searchButton, columnSearching, tableSearching


Back to Options.

Updated