Wiki

Clone wiki

grails-datatables / searchable

searchable

Values

Name Type Values Default
searchable boolean true, false true

Description

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

Example

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

See Also

columnSearching, tableSearching


Back to Options.

Updated