Child rows with editor
looking at the child row example: https://datatables.net/examples/api/row_details.html i want to build the same thing, but the child row would again be a datatable with an editor, so i can...
View ArticleUse htmlentities with editor
Hi, For reasons, I need all editor input to go through htmlentities($string,ENT_QUOTES,'UTF-8'); I know I can do it manually and edit each and every one of my fields set function callbacks but this...
View ArticleHello,
@using Resources; <style> table.dataTable td:nth-child(7) { width: 430px; max-width: 430px; word-break: break-all; white-space: nowrap; } </style> ID @Resource.Name...
View Articlecolumns.data documentation suggestion
Hi, I got a little confused by columns.data documentation when data is provided by a function. The description of type argument from signature data( row, type, set, meta ) is not very informative ("The...
View ArticleFilter the list in a combobox
Hi, I want to filter the list in a combobox, from a datatable editor. When I use the where condition, I do not have any errors, but it does not return any records. Editor::inst( $db, 'tb_diccionario' )...
View ArticleAdd filter button to column header (specific column)
Hey there, so I have been looking at adding a button to filter the groups in a column, much like this: https://datatables.net/examples/api/multi_filter_select.html However, I want to add the button to...
View ArticleCreating an attendance register report
I want to create an attendance register report that looks like this: The information above the dates is the lesson for that day. The JSON being returned to the jQuery is:...
View ArticleUnable to find DataTable count when i search records
I have used various filters on my data table and I an easily extract the number of rows now the table has using: var count = $('#myTable').DataTable().data().count(); or just by getting length of the...
View Articlehow to export csv in IE9
Hello everybody, This is my first post so thank you in advance for any help that you are able to provide me. My problem is simple, I need to export my data to .csv format in IE9. The following code...
View ArticleWhen using Button Collection and ScrollX: true, then dropdown menu is within...
Okay, so a bit related to: https://datatables.net/forums/discussion/53996/add-filter-button-to-column-header-specific-column#latest Tried to make a live datatables to display, but unsuccessful...
View ArticleInline edition event after editing
As the user change a field, I need another field to be updated. It works well using a listener in the edition form: $( 'input', editor.field( 'ds_pluv' ).node() ).on( 'change', function (e, d) { if ( !...
View ArticleMake sometimes hidden fields required
For the editor that I am using, only certain fields show if they are enabled in the setting page. I am unsure of how to make them required when they aren't hidden. I've tried on the editor have the...
View ArticleDate Search
Hi Everyone, I would like to know if there is a way we can search rendered dates, here is my code with Date column Hire Date. 'columns': [ { data: 'emp_no' }, { data: 'first_name' }, { data:...
View ArticleHow to change pagination HTML?
When I have multiple pages on pagination both ellipses have the same ID id="blabla-table_ellipsis" , Im trying to get rid of one of those IDs, or to remove both IDs, but im not sure which event or...
View ArticleAdding bootstrap tooltip to field label in editor
I've been trying to incorporate the bootstrap tooltip into the editor field's label for an upload field so that the users can know what type of file to use. However I'm running into the issue of...
View ArticleHow to search Row Details
I'm setting up a table and using the Row details to show a lot more information that is available in the visible columns. The row data and the details data are coming from REST calls and are available...
View ArticleSanitize value before running validation
As a general expected behavior in the application, user input needs to run through a conversion (common routine/fxn) to remove white-space (aka. trim) and convert to uppercase before running any...
View ArticleSlow loading of tables
I have a very large train timetable schedule and it is taking more than 5 seconds to load and process. Any tips on how to improve the speed on this? Does anyone have any tips on profiling and where to...
View ArticleEmail button pdf
I would like to add a button to to the datatable buttons called Email which when clicked would prompt for an email address and then call the pdf creation like the pdf button does and then do an ajax...
View ArticleHow To Delete Multiple Rows In DataTable
Hi, I am using DataTables Editor. When I select multiple checkboxes to delete, from frontend it's working fine but on the server side, I only get one value. Sample output : data[16][vehicle_number]
View Article