Search
-
Inserting new row on edit
by allan ·I was actually meaning on the client-side, but yes, that should work. That said, I'm not familiar with the PHP syntax used there. render should just return a string. I'm not sure what it is returning… -
Datatables Search Onclick button
by kthorngren ·You will need to remove this part of the code: -
Buttons and column headings alignment problem
by kthorngren ·One issue is you are loading jquery.js multiple times in lines 48-53 and 1344. You should load it only once. This isn't causing the buttons alignment issue but could cause other issues. -
Datatables Search Onclick button
by Noodles12 ·I am trying to add an onclick event button "Filter Results" next to "Clear Filters" button. The behavior should be - -
Inserting new row on edit
by allan ·Is there a way to order the options in the select by value, instead of label? -
table.column(col, { search: 'applied' } ) takes all (not only visible) table rows
by mahuss ·Hello, -
pagination not working properly
by maniya ·Here i9s the code i am using for my server side pagination -
How to export all rows to excel file
by meny ·Hi this is my code and I get [object Object] in csv file -
How to export all rows to excel file
by kthorngren ·If you are using the select extension then see this example of how to export all rows when there are selected rows. -
Inserting new row on edit
by allan ·In that case, the data coming back from the server should contain that number - e.g.: -
DataTables Editor add inline value change to JavaScript variable.
by bbrindza ·Given the table below, I would like to total each month into a variables to be used in the Totals span of the table as the user key out of the inline input. -
Update row, only some cells
by poisons ·I'm updating a table with 3 columns, by row id, using the method data() and with an array of the new values for all the 3 columns -
When I export to excel, I just get the first row of the query
by Rick33 ·$con = mysqli_connect($host,$user,$password,$database); if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } $sql = "SELECT `Fecha… -
Inserting new row on edit
by globalplane ·To confirm my understanding of the issue - you don't want to actually update the main table - you just want to insert that an insert / update / delete was requested into another table, and then presu… -
PHP Error in custom upload function after updating to latest version
by wouter ·Hey all, -
Field type plugins integration with Vue Js
by allan ·We use v-once in the plug-in for exactly this reason. For inline editing, like you are using, I would expect that to work. -
DataTable Editor onBlur: 'submit' odd behavior
by bbrindza ·Here is the solution.. -
Inserting new row on edit
by allan ·I'll create a new thread for this. -
editor 2.1.2 upgrade, field plugin select2 error.
by wouter ·I think this could be the same problem i addressed here: -
Checking if user is logged in before inserting into database
by allan ·Are they allowed to read the data if not logged in? If not, then you could to header('Location: ...'); if they aren't logged in, effectively never allowing them to interact with this script.