Search
23682 results 651-660
Forum
- 1st Dec 2017multiple columns search not workThat will search for Fred in both columns 0 and 1. It does not do an OR operation between them. Allan
- 1st Dec 2017OR over multiple columnswe need work on two different columns like this : 1st column Name and 2nd phone number
- 17th Nov 2017How do you loop through all columns of a table and tell if it is currently visible or notwhere the string of columns that were retrieved from
- 17th Nov 2017How to use $.fn.dataTable.render.text on a columns without defining all columns?{ "targets": '_all', "render":$.fn.dataTable.render.text() } will apply the text renderer to all columns. See the columnDefs.targets documentation for more information about the targeting options. Allan
- 14th Nov 2017Prevent DataTable from collapsing Columns?stay inline with the columns when resizing the page.
- 2nd Nov 2017Unable to render data to Datatable when its more than 8 columns.that with the additional columns the GET request is
- 25th Oct 2017Ordering when merging 2 columns in 1GET, $sql_details, $table, $primaryKey, $columns, null, "user_id = $userid" ) ); where
- 19th Oct 2017Sort columns by iconsyou will do this: columns: [ {data: `field1`, orderDataType: `dom-class`},
- 17th Oct 2017Show more columns in the child row than in the tableYou can use the none special class for Responsive to get that to work. Responsive will hide those columns and they will still be visible. Allan
- 16th Oct 2017I have 15 columns in data table when i'm trying to export to PDF only 8 columns are exporting.You can specify the orientation to have a wider page and also define the width of the columns. Hope this help! { extend: 'pdfHtml5', text: 'PDF', orientation: 'landscape', pageSize: 'LEGAL', customize : function(doc) { // Column width doc.content.forEach(function(item) { if (item.table) { item.table.widths = [75, '*', '*', '*', '*', '*'] } }); } }