d:\wwwroot\wuchunhua\thinkphp\public\adminlte\plugins\datatables\extensions\autofill\Readme.txt

001: # AutoFill
002:
003: AutoFill gives an Excel like option to a DataTable to click and drag over multiple cells, filling in information over the selected cells and incrementing numbers as needed. Key features include:
004:
005: * Click and drag cell content insertion
006: * Automatic incrementing of numeric information
007: * Enable and disable on any column
008: * Detailed callback functions for customisation
009: * Support for both DataTables and browser window scrolling
010:
011:
012: # Installation
013:
014: To use AutoFill, first download DataTables ( http://datatables.net/download ) and place the unzipped AutoFill package into a `extensions` directory in the DataTables package. This will allow the pages in the examples to operate correctly. To see the examples running, open the `examples` directory in your web-browser.
015:
016:
017: # Basic usage
018:
019: AutoFill is initialised using the `$.fn.dataTable.AutoFill` constructor. For example:
020:
021: ```js
022: $(document).ready( function () {
023:     var table = $('#example').dataTable();
024:     new $.fn.dataTable.AutoFill( table );
025: } );
026: ```
027:
028:
029: # Documentation / support
030:
031: * Documentation: http://datatables.net/extensions/autofill/
032: * DataTables support forums: http://datatables.net/forums
033:
034:
035: # GitHub
036:
037: If you fancy getting involved with the development of AutoFill and help make it better, please refer to its GitHub repo: https://github.com/DataTables/AutoFill
038:
039: