Search
23525 results 511-520
Forum
- 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).
- 21st Jan 2019Problems with change of columns when server side processing after reload of datatableof DataTables. 2. Change columns after reload datatable is
- 17th Jan 2019Can I group and hide columns "excel-like"?would make hidden neighbouring columns reappear. Cheers, Colin
- 11th Jan 2019Responsive Download: hide columns based on the browser size (plug in not work on smart phones?)extension only reduces the columns when there's no space