Search
23412 results 631-640
Forum
- 16th Oct 2017I have 15 columns in data table when i'm trying to export to PDF only 8 columns are exporting.You can specify the orientation to have a wider page and also define the width of the columns. Hope this help! { extend: 'pdfHtml5', text: 'PDF', orientation: 'landscape', pageSize: 'LEGAL', customize : function(doc) { // Column width doc.content.forEach(function(item) { if (item.table) { item.table.widths = [75, '*', '*', '*', '*', '*'] } }); } }
- 16th Oct 2017Ellipsis for multiple columnsto description for both columns causing them to have
- 12th Oct 2017Fixed columns and scrolling on IE issuseI used the below as workaround for IE users alone. It just doesn't allow the fixed columns to be scrolled. if (/MSIE (\d+.\d+);/.test(navigator.userAgent) || navigator.userAgent.indexOf("Trident/") > -1) { $(document).on('mousewheel', '.DTFC_LeftWrapper', function () { return false; }); }
- 12th Oct 2017Fixed columns : locking columns can alone scroll on IEI used the below as workaround for IE users alone. It just doesn't allow the fixed columns to be scrolled. if (/MSIE (\d+.\d+);/.test(navigator.userAgent) || navigator.userAgent.indexOf("Trident/") > -1) { $(document).on('mousewheel', '.DTFC_LeftWrapper', function () { return false; }); }
- 11th Oct 2017Combine Columns - server_processing.phpajax": "/scripts/server_processing.php" } ); } ); </script> server_processing.php $columns = array( array( 'db' =>
- 28th Sep 2017Dynamically generating columnsThanks @allan and @htwyford. This actually helped me build a Datatable with dynamic columns while making sure the data mapped to the dynamic columns as well. Cheers!
- 26th Sep 2017Vertical Scrolling Errors with Fixed Columnsthe left and right columns $(this.dom.scroller) .on( 'mouseover.DTFC touchstart.DTFC',
- 21st Sep 2017Can we have fixed header functionality for dynamic columns?I don't really understand what you mean I'm afraid. What do you mean by "dynamic column"? DataTables doesn't have the ability to dynamically add and remove columns from the table at the moment - although column visibility can be changed. Allan
- 20th Sep 2017Server Side Processing + Dynamic Show/Hide columnsHiding columns with colvis button works with server side in this test case I built: http://live.datatables.net/xeculisa/1/edit How are you hiding the columns? Maybe you can update the test case to show your issue. Kevin
- 28th Aug 2017How to add columns dynamically basing on json datayour fixing the header columns in the table, Even