Search
791 results 171-180
Forum
- 11th May 2017Add a row to an empty table using datatables and use editor to edit the new rowajax: "views/ajax/invoices.php", table: "#invoice", fixedHeader: true, idSrc: 'CF_InvoiceElements.id', fields: [{ name:
- 26th Apr 2017getting fixed header issue on page loadMy code is mention below where dt is my dynamic generated id var table = $('#' + dt).DataTable({ responsive: true, //fixedHeader: true, "columnDefs": [{ "targets": "no-sort", "orderable": false }], "aaSorting": [], "fnDrawCallback": function (oSettings) { } // "columnDefs": [{ type: 'date-uk', targets: "date-sort" }], }); new $.fn.dataTable.FixedHeader(table);
- 29th Mar 2017copying to clipboard issue@kthorngren No I don't have as such settings here is my code: $(document).ready(function() { var table = $('#property_list').DataTable( { dom: 'Bfrtip', "columnDefs": [ { "targets": [ 0 ], "searchable": true, }, { "targets": [ 1 ], "visible": true, }, { "targets": [ 2 ], "visible": true, }, ], buttons: [ 'copyHtml5', 'csvHtml5', 'pdfHtml5', 'print' ], fixedHeader: true, paging: false });
- 14th Mar 2017bug with language plugin ?edit : for posting case : var oTable_ = $("#table").dataTable({ "width": "100%", "iDisplayLength" : 50, "fixedHeader": true, "editable": true, "bAutoWidth": true, "language": { "url": "/js/datatables.french.lang" }, "fnRowCallback": function(nRow, aData) { $(nRow).data("ref", aData[0]); }
- 3rd Jan 2017Issue integrating SmartAdmin Angular 2 Framework and DataTables extensionsAdd these lines to shared/ui/datatable/datatable.component.ts - under options = $.extend colReorder: true, fixedHeader: { footer: true }, scrollY: 370,
- 18th Oct 2016Editor: Create row onClickapi/ProductionData', order: [1, 'asc'], fixedHeader: true, columns: [ { "class": "details-control", "orderable":
- 4th Oct 2016Fixed Header not aplying on DataTableIs your datatable binding working properly ?? only fixed header is issue or something else ?? try only fixedHeader: true,
- 3rd Oct 2016How to adjust the no.of columns dynamically for datatablessearching: true, autoWidth: false, fixedHeader: true, }); });
- 7th Sep 2016Retrieve Data Table From Server Side Using Ajax Do Not Bind Data to table.... Only Shows Loading..GV1").DataTable({ serverSide: true, processing: true, fixedHeader: true, ajax: { type: "POST",
- 6th Jul 2016Fixed Header with Fixed Column$('#example').DataTable( { fixedHeader: true, fixedColumns: true } );