Search
23398 results 491-500
Forum
- 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'; } ;},
- 1st Feb 2019Select which columns will be marked as Child rows (show extra / detailed information)Sorry, didn't realize you were using Responsive. 1: You would use responsive.details.renderer for this. Here is an example. 2: According to the Responsive docs you can use set className: 'none' on those columns to always be hidden by Responsive. Kevin
- 31st Jan 2019possibility to address columns by name instead of indexWhen using the column() / columns() methods yes you can address a column by name (column-selector), but as of yet
- 31st Jan 2019Fixed columns in Aurelia project doesn't workDate; loading: boolean = false; columns: { title: string; data: any
- 29th Jan 2019Cannot edit fixed columnsevents on the original columns and propagating that to
- 27th Jan 2019Using same tooltips on columnheaders for different users when columns are shifting per userplaced on the same columns for user and admin.
- 22nd Jan 2019Omit certain columns when using autoFillI have managed to achieve what I want by doing a editor.on('preAutoFill') to filter out the columns with the "publicholiday" class. $('#testtable').DataTable().on('preAutoFill', function(e, datatable, cells){ for(var i =0; i < cells[0].length; i++){ if(cells[0][i].cell.node().className.includes("weekend")){ cells[0][i].set = cells[0][i].data; }else if (cells[0][i].cell.node().className.includes("publicholiday")){ cells[0][i].set = cells[0][i].data; } } });
- 21st Jan 2019Filtering columns in Datatables as used in AdminLTEThx. This works without errors. Also relevant is to put in the HTML view with the table rows and columns (as also mentioned in the comments).