Search
10333 results 921-930
Forum
- 9th Mar 2023How to remove hyperLink labelYou can use columns.render for that - just reformat the URL into how you want it. There's an example similar to that on the reference page. Colin
- 8th Mar 2023Data Tables Editor MVC Routing & Ajax Errornbsp;Please review the following URL and make sure that
- 8th Mar 2023Populate table from GET requestvar table = $('#my_table').DataTable({ ajax: { url: '/my/api/endpoint', type: 'GET' columns:
- 8th Mar 2023Select2 (Other?) on Editor ModalMarca', allowClear: true, ajax: { url: 'select2.php', dataType: 'json', delay:
- 6th Mar 2023Search field doesnt worklt;td> <form method="POST" action="<?= URL ?>listemail/mailtoDelete"> <button type="submit" class="btn
- 5th Mar 2023How to filter the closest datatable?order: [[1, 'desc']], language: { url: '{{tpl.glob_asset_path}}/js/datatables/plugins/i18n/ru.json', }, dom: "<'ui fluid
- 4th Mar 2023Trying to figure out the datasrc parameterSee if this Nested data source example helps. Assuming you are using ajax.dataSrc I think you will want to set it like this: "ajax": { "url": "myUrl", "dataSrc": "viewentry.entrydata" } Kevin
- 2nd Mar 2023When using dom: the buttons disappearBfrtipP', // <<<<<<<------- probematic language: { "url": "assets/DataTables/1.13.2/pt-PT.json", "select": { "cells": { "1":
- 1st Mar 2023Retrieve table data from oracle database into datatable using PHPfetch_data(); function fetch_data(){ $(document).ready(function() { $('#customer_table').DataTable({ "processing" : true, "serverside" : true, "ajax" : { url: "connect.php", type: "POST", data: {action: 'fetch'}, error: function(xhr, error, thrown) { console.log("AJAX error:", error, thrown); }, }, "columns": [ { data: 'FIRSTNAME' }, { data: 'LASTNAME' }, { data: 'NIC' } ], }); }); } please help
- 28th Feb 2023Server side processing with Next and Previous buttonspageSize "serverSide": true, "ajax": { "url": contextPath + "/metrics/getchartDataRows", "data": function