Search
4182 results 451-460
Forum
- 7th Feb 2023Datatables Editor Create returns "POST http://127.0.0.1:8000/dashboard 400 (Bad Request)"name: "institution", orderable: true}, ], columnDefs: [ { targets: [2, 3, 4,],
- 31st Jan 2023Select Option to Get All Row Data into a item Objecta button action function. columnDefs: [{ orderable: false, className: 'select-checkbox',
- 30th Jan 2023Regex not working with DataTablesGET', }, order: [ 4, 'desc' ], columnDefs: [ { target: 0, width: "70%",
- 23rd Jan 2023Refresh table on dropdown changedoes nothing data: data, columnDefs: [ { targets: -1, data: null,
- 18th Jan 2023DataTables Render function returns Undefined datadata: "institution.name", orderable: true}, ], columnDefs: [ { targets: [2, 3, 4,],
- 13th Jan 2023Make datatable fixed size and how to change the amount of entrys shownYes I have tried, but nope still stays the same $(document).ready( function () { $('#all_courses').DataTable({ pageLength: 10, scrollY: "250px", scrollX: true, paging: true, columnDefs: [ { width: 100, targets: 0 } ], fixedColumns: true, responsive: true }); $('.dataTables_paginate').hide();
- 12th Jan 2023Date Sorting IssueThat thread is very old, dataTables supports date time sorting. $('#tblUsers').DataTable({ "columnDefs": [ { "targets": "sort-date", "type": "date" } ] }); <th class="sorting sort-date" ... >Expiration Date</th>
- 11th Jan 2023Question about Datatable behaviourdata.PtPlaisio == 1); console.log('pas2' + data); }, columnDefs: [ { width: '20%', targets: 0
- 10th Jan 2023Make a filter condition with a custom buttondataTable').DataTable({ language: { url: "https://cdn.datatables.net/plug-ins/1.13.1/i18n/fr-FR.json" }, columnDefs: [ { target: 7, visible: true,
- 4th Jan 2023Add a headers='' attribute to a tdThere is no headers option for the column options, as you'll see in the full list of options. To do what you are looking for here, use the columns.createdCell option - e.g.: columnDefs: [ { targets: 0, createdCell: function (cell) { cell.setAttribute('headers', 'test'); } } ] Allan