Search
23525 results 501-510
Forum
- 28th Feb 2019How to show/hide column(s) on complex header in a Data Tableway to hide the columns over the spanned Main
- 26th Feb 2019Can default responsive bootstrap modal modified to hide columns which are hidden using colvisHi @NameUnavailable , Hidden columns shouldn't be being displayed.
- 25th Feb 2019Query on how to produce page and all page totals for calculated columns in datatablesdocument totals for rendered columns using http://live.datatables.net/qoxadado/1/edit as follows
- 22nd Feb 2019Responsive and Selected Columns onlyBasically trying to do this // Activate an inline edit on click of a table cell $('#tblCylinders').on('click', 'tbody td:not(.child), tbody span.dtr-data', function (e) { // Ignore the Responsive control and checkbox columns if ($(this).hasClass('control') || $(this).hasClass('select-checkbox')) { return; } if ($(this).hasClass('editable')) editorCyl.inline(this); });
- 19th Feb 2019Individual Column Searching & Fixed ColumnsI knew the fixed columns was generating an overlay
- 17th Feb 2019I have an json file in local disk and I want to write the data to columns.Hi @KulaDeepu_KD , These two examples, here and here, should help - they show how to map such data to columns. Cheers, Colin
- 11th Feb 2019SSP Server-side Word by Word, applied to columnsarray_search( $requestColumn['data'], $dtColumns ); $column = $columns[ $columnIdx ]; $str = $requestColumn['search']['value']; $strArray
- 11th Feb 2019Datatables Export Hidden columns to ExcelHi @ingila , Hidden columns are exported, see example here. If you're not seeing this, could you modify that test case to demonstrate the problem, Cheers, Colin
- 6th Feb 2019Adding columns duplicates table headerI wouldn't have both columns and columnDefs - just move
- 5th Feb 2019How to right align numeric columns in exported pdf and excel?Your solution worked for me @osamajaved . I only wanted certain columns to be re-aligned, not all. EDIT: I only used: var rowCount = doc.content[1].table.body.length; for (i = 1; i < rowCount; i++) { doc.content[1].table.body[i][4].alignment = 'right'; doc.content[1].table.body[i][5].alignment = 'right'; doc.content[1].table.body[i][6].alignment = 'right'; } ;},