Brought in following assets that Kevin's EDI project will be using:
[openemr.git] / public / assets / datatables-fixedheader-3-1-1 / docs / api / fixedHeader.disable().xml
blobadaba1999b420d789fdb679bcb9902f8899b68df
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <dt-api library="FixedHeader">
3         <name>fixedHeader.disable()</name>
4         <summary>Disable the fixed elements</summary>
5         <since>3.0.1</since>
7         <type type="function">
8                 <signature>fixedHeader.disable()</signature>
9                 <returns type="DataTables.Api">
10                         The DataTables API for chaining
11                 </returns>
12                 <description>
13                         Disable the fixed elements. When disabled, the table will remain static, regardless of end user scrolling.
14                 </description>
15         </type>
17         <description>
18                 This method can be used to disable the table's fixed elements (i.e. header and footer). This can be useful if you wish to show and hide the table (see also `fh-api fixedHeader.adjust()`) or otherwise manipulate the table in its original state.
19         </description>
21         <example title="Disable the FixedHeader"><![CDATA[
23 var table = $('#myTable').DataTable();
25 table.fixedHeader.disable();
27 ]]></example>
29         <related>fh-api fixedHeader.enable()</related>
30 </dt-api>