Search
-
Hide datatable label within editor form
by crcucb ·I am working on a form template for an editor that contains two datatables with child records. (using https://editor.datatables.net/examples/simple/template.html as guiding example). -
Local table editing & calling a sql stored proc to save
by allan ·Thank you. So it doesn't have server-side processing enabled. Currently when your Editor form submits it goes to php/Addresses_Address_DT.php and it expects back the data for the edited row, per the … -
Server does not receive current order/sort column
by dannerfr ·DataTables 2.3.2 -
Hide search on datatable that is on an editor form
by crcucb ·Below is my editor definition which includes a datatable to show residents under an address. Is it possible to hide the search field? you can set I've tried multiple things. -
Local table editing & calling a sql stored proc to save
by crcucb ·That's fine, It's client side, the js is below. -
libpq version 17.2 - 17.5 pdo errors
by kthorngren ·In the Editor server libraries you can add .Debug(true) before .Process() to see the generated query. Use the browser's network inspector to view the JSON response. See the debug() docs for more de… -
.Net Editor postgres primary keys quotes
by allan ·Yup, no question, that is an error in the library. Apologies! Specifically it is this line. It doesn't escape the identifier, which it should do, and that's a problem in postgres, since postgres fold… -
I am unable to add a excel export button
by kthorngren ·Based on your code snippet it doesn't look like you told Datatables where to place teh buttons using the layout option. See these docs for more details. Also see this example. -
I am unable to add a excel export button
by AgathopAlex ·i have added the code to add download button on my datatable but it is not showing what could i be missing. -
Addding a tags field to editor sourced from ajax
by crcucb ·I am trying to add a tags field to my editor that will only allow picking residents who are assigned under the address. -
DateTime Standalone - how to update minDate
by kthorngren ·What error are you getting? -
Remove ColumnControl on certain Columns
by dnettles10 ·This might pertain to Messaging versus DataTables so please correct me if I'm wrong. -
adjust font size at runtime
by kthorngren ·As I said you have scrolling features enabled so you need to use a selector that finds the duplicated table which has the header and footer. Looks like your test case is down. Go to this example an… -
How to send hidden value by row
by kthorngren ·But when I use visible: false, I'm not able to get the value. -
adjust font size at runtime
by kthorngren ·I see the issue. You have scrolling features enabled. In this case Datatables creates a duplicate table with the header and footer and hides the original to facilitate scrolling. The above selecto… -
adjust font size at runtime
by kthorngren ·Maybe you need to add something like this: -
adjust font size at runtime
by kthorngren ·The selector $('maintable.dataTable td') is incorrect. maintable is a Javascript variable which won't work as part of the jQuery selector. Your table has this id="Adresses" assigned as th… -
adjust font size at runtime
by crcucb ·https://jyorkejudge.org/A2.php -
SearchPanes stya empty with serverside skripting
by fwtag ·Due to oerformance issues relkatied to growing data bases, I am switching DataTables to serverside skripting. -
Example of using select2 library instead of select or autocomplete
by kthorngren ·For the tags field I don't see a way specify a CSS selector to apply styling. The only option I can think of is to programmatically apply the CSS when the for is open using the open event. For exam…