1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <dt-example table-type="html" order="1">
-
- <css lib="datatables tabletools" />
- <js lib="jquery datatables tabletools">
- <![CDATA[
-
- $(document).ready(function() {
- $('#example').DataTable( {
- dom: 'T<"clear">lfrtip',
- tableTools: {
- "sRowSelect": "multi",
- "aButtons": [ "select_all", "select_none" ]
- }
- } );
- } );
- ]]>
- </js>
-
- <title lib="TableTools">Row selection - multi-row select</title>
-
- <info>< to provide functions such as select-all and select-none, as shown in this example.
-
- ]]></info>
-
- </dt-example>
|