Search
23412 results 691-700
Forum
- 14th Feb 2017Show only two columns by select them using two dropdpwn menu?table with the two columns whenever you need to
- 9th Feb 2017Problem ScrollY option, lose alignment Head Column vs data columnsGood Day In a webpage from Datatable, If you adjust the window, You'll be to look the problem, If you move the Scroll X, The headers are static, and only columns data moves. https://datatables.net/examples/basic_init/scroll_y.html Regards
- 7th Feb 2017Issue with colReorder and colVis - Columns display in the wrong orderstatement to 'false', the columns show and hide perfectly...
- 31st Jan 2017I am creating the columns using a JSONYour generated columns array would need to use the columns.className property to see a class name. Allan
- 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