Brought in following assets that Kevin's EDI project will be using:
[openemr.git] / public / assets / datatables-fixedheader-3-1-1 / docs / option / fixedHeader.footer.xml
blobd677a6eabeb18fa9c50e5ae6bd81474e5ee053f8
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <dt-option library="FixedHeader">
3         <name>fixedHeader.footer</name>
4         <summary>Enable / disable fixed footer</summary>
5         <since>3.0.0</since>
7         <default type="boolean" value="false"/>
9         <type type="boolean">
10                 <description>
11                         Enable the fixing of the table footer (`true`) or disable (`false`).
12                 </description>
13         </type>
15         <description>
16                 This parameter simply provides the ability to enable or disable the fixed footer aspect of the FixedHeader extension. When enabled the table's footer will be _sticky_, so it will always be visible while the end user scrolls through a DataTables.
17         </description>
19         <example title="Disable the header, but enable footer"><![CDATA[
21 $('#example').DataTable( {
22         fixedHeader: {
23                 header: false,
24                 footer: true
25         }
26 } );
28 ]]></example>
29 </dt-option>