Search
43647 results 6401-6410
Forum
- 7th May 2024How do i add multiple rows in a table using .createHere is the link to the site "https://stagingc.assettrack.cx/operations/dailyRunSheet.php". I guess you already have access to the site.
- 6th May 2024how can I add a button in each table row that downloads a different linked file?If you want to add button in each row you could simply use the render function to do that, something like this { data: "docStatus", className: 'text-center', render: function (data, type, row) { if (data==1 ) { return '<a href="../yourdestination=' + data + '" target="_blank"><button>Submit</button></a>'; } else { return 'Text'; } },
- 24th Apr 2024Hi, I'm using the following code in the data table with server side set to true.Link to test case: Debugger code (debug.datatables.net): Error messages shown: Description of problem:
- 21st Apr 2024Why am I having this issue while using data tableLooks like you are using Angular Datatables which is a third party developed library that uses Datatables. This is not provided by the developers of Datatables. You will need to use their support mechanisms. Maybe this SO thread will help. Kevin
- 10th Apr 2024Under options select (linked table), is it possible to have a search field for the select picker?Not with the built in select field type, since that just uses a simple select. However, there are a couple of options: Use a datatable field type with server-side processing to search records. Use a library such as Select2. We do have a plug-in for Select2 to work with Editor. Add a text input field and bind your own Ajax call to it, then use field().update() to update the list of options as they come in. Allan
- 6th Apr 2024Passing table data to a button's href when clickedOne option is to update the generated HTML link with the ID inside the click event handler. Another option, if you are selecting rows, is to create a button and a click handler for the button. In the event handler get the ID of the selected row and send it via jQuery ajax() to the server for deletion. Use the success and error functions to appropriately handle the response from the server. For example in success use row().remove() to remove the row from the client Datatable. Kevin
- 6th Apr 2024I react componenet i have 3 table i want to export all three in one excel Any solution for thatSee if this thread has what you want. Kevin
- 5th Apr 2024Table not getting jquery-ui classes with 1.13.11Thanks for letting us know. Documentation is a challenge everywhere :) Allan
- 22nd Mar 2024Sort bug when table has more than 9 columnsThat was good timing - 2.0.3 is available now :) Release notes here. The one of interest in this thread is the second point in the "fixes". Allan
- 13th Feb 2024Nested joins not on original tableCurrently no, with Editor's API abstraction that is no possible. However, you can use a VIEW with Editor which allows for any arbitrary SQL to be used as a data source. Allan