PHP Classes

File: assets/js/datatables/tools/examples/select_multi.xml

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   assets/js/datatables/tools/examples/select_multi.xml   Download  
File: assets/js/datatables/tools/examples/select_multi.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Pretty PHP S3 Files Manager
Web based interface to manage files in Amazon S3
Author: By
Last change:
Date: 8 years ago
Size: 1,218 bytes
 

Contents

Class file image Download
<?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><![CDATA[ As well as providing a button toolbar, TableTools provides everything needed to have selectable rows in the table. TableTools has four row selection modes of operation: * `none` - Default, where no user row selection options are available * `single` - A single row can be selected * `multi` - Multiple rows can be selected simply by clicking on the rows * `os` - Operating System like selection where you can use the shift and ctrl / cmd keys on your keyboard to add / remove rows from the selection. This example shows the `multi` select option. There are also a number of [pre-defined buttons](http://datatables.net/extras/tabletools/buttons) to provide functions such as select-all and select-none, as shown in this example. ]]></info> </dt-example>