应用jQuery UI ThemeRoller的标签和CSS类。
DataTables能使用各种各样的CSS类库包,其中包括jQuery UI, Twitter Bootstrap 和 Foundation. 但是 Bootstrap, Foundation 和其他的类库需要添加插件, 而jQuery UI 的主题支持是内置在DataTables中的,可以用这个参数来控制是否使用。 如果设置为true, DataTables就可以使用jQuery UI ThemeRoller的标签和css类,使得你的表格和jQuery UI很容易集成起来。
当设置为true之后, 你需要加载jquery.dataTables_themeroller.css
文件,因为ThemeRoller并不能提供DataTables需要的所有style文件。这个文件路径在 DataTables 包(media/css
)中。
注意:这个特性已经被抛弃了在DataTables 1.10 版本中,并且以后会在1.11版本中删除。在1.11版本中,这个功能需要采用插件的方式实现,跟其他的css样式一样。可以看 DataTables jQuery UI styling documentation 了解更多关于使用jQuery UI定制表格的这个新方法。
This option can be given in the following type(s):
false
Enable jQuery UI ThemeRoller support:
$('#example').dataTable( { "jQueryUI": true } );
Translation from DataTables.net, with permission