PHP Classes

File: assets/js/datatables/tools/TableTools-master/examples/plug-in.xml

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   assets/js/datatables/tools/TableTools-master/examples/plug-in.xml   Download  
File: assets/js/datatables/tools/TableTools-master/examples/plug-in.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,189 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[ $.fn.dataTable.TableTools.buttons.copy_to_div = $.extend( true, $.fn.dataTable.TableTools.buttonBase, { "sNewLine": "<br>", "sButtonText": "Copy to element", "sDiv": "", "fnClick": function( nButton, oConfig ) { document.getElementById(oConfig.sDiv).innerHTML = this.fnGetTableData(oConfig); } } ); $(document).ready(function() { $('#example').DataTable( { dom: 'T<"clear">lfrtip', tableTools: { "aButtons": [ { "sExtends": "copy_to_div", "sButtonText": "Copy to div", "sDiv": "copy" } ] } } ); } ); ]]> </js> <title lib="TableTools">Plug-in button types</title> <info><![CDATA[ This example shows how you can add a message to the saved PDF using the `sPdfMessage` parameter. It also shows that the orientation of the output PDF can be changed to landscape which is useful if you have a lot of columns. ]]></info> <demo-html> <div id="copy" class="box" style="height: 100px; overflow: auto"> Copy output will go here </div> </demo-html> </dt-example>