Search
23528 results 711-720
Forum
- 24th Jan 2017Columns disappeared on iMac, help..with displaying all the columns. Sorry I don't have
- 24th Jan 2017Preventing some columns from being hidden?I actually had to change the columns parameters to the following. As listed above it threw a jscript error. { extend: 'colvis', text: 'Hide Columns', columns: ':not(:nth-child(-n+2))' } Thanks for the help. John
- 18th Jan 2017Count only visible columnsAnother option is to use the columns-selector option to select only visible columns: table.columns(':visible').count(); Allan
- 8th Jan 2017Used Fixed Columns and column rows are now not the same sizeThe below code works but not sure why I have to add a dealy for the resize of the columns to work. tblObj.draw(false) //add delay setTimeout( function() { tblObj.columns.adjust().draw(false) }, 1);
- 9th Dec 2016My individual column searching (text inputs) are not searching on their columns, but only on the IDecho " bindings<br>"; } $globalSearch = array(); $columnSearch = array(); $dtColumns = self::pluck( $columns, 'dt' ); if (isset($request['search']) &&
- 9th Dec 2016Visibility-Toggle only for selected columns?Yes, the columns option for the columnsToggle button type. There is an example here (although that uses the colvis type). Allan
- 2nd Dec 2016Several search inputs on multiple columnsAlso have a look at this example which shows how you built a select based on the data in columns. Allan
- 29th Nov 2016How to make columns made visible by ColVis button searchableenable and disable a column's searchable flag after initialisation.
- 27th Nov 2016Export visible columns within a subset.Whats wrong with using this?? exportOptions: { columns: [1,2,3,4,5,6] }
- 23rd Nov 2016How to render specific columns as img ?You are setting data": "description", for columns 3, 4, 5 and 6. They will all show the description data. Do you actually need that property? Where is the data for the table coming from? Allan