File: demos/startbootstrap-sb-admin-2/bower_components/datatables-responsive/docs/option/responsive.details.type.xml

Recommend this page to a friend!
  Classes of Emmanuel Podvin   Blapy   demos/startbootstrap-sb-admin-2/bower_components/datatables-responsive/docs/option/responsive.details.type.xml   Download  
File: demos/startbootstrap-sb-admin-2/bower_components/datatables-responsive/docs/option/responsive.details.type.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Blapy
jQuery plugin to load linked pages using AJAX
Author: By
Last change: Update of demos/startbootstrap-sb-admin-2/bower_components/datatables-responsive/docs/option/responsive.details.type.xml
Date: 2 years ago
Size: 1,916 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8" ?> <dt-option library="Responsive"> <name>responsive.details.type</name> <summary>Set the child row display control type</summary> <since>Responsive 1.0.0</since> <type type="string"> <description> The child row display type to use. This can be one of: * `-string inline` - Use the first column to display the control element * `-string column` - Use a whole column to display the control element. Note that if used as a column type and the `target` option is set to be a column index, the class assigned to that column in the DataTable should be `control` to allow the CSS to display a visual show / hide control to the end user. </description> </type> <default value="inline"/> <description> Responsive has two built in methods of managing how the child row display control is shown to the end user: * `inline` - where the first column in the table has additional padding added to it and the `:before` pseudo element is used to display the button. * `column` - where a whole column is dedicated to the show / hide control. The `inline` style is useful if you already have a table that you quickly want to add Responsive to without changing its structure, while the `column` type can be useful if you don't want the first column's layout to be modified by the padding required to make space for the inline display. Please note that as with all other configuration options for Responsive, this option is an extension to the [default set of DataTables options](/reference/option). This property should be set in the DataTables initialisation object. </description> <example title="Use the `column` control type"><![CDATA[ $('#example').DataTable( { responsive: { details: { type: 'column' } }, columnDefs: [ { className: 'control', orderable: false, targets: 0 } ], order: [ 1, 'asc' ] } ); ]]></example> </dt-option>