Search
43827 results 6441-6450
Forum
- 31st Dec 2023Empty table html attributeThank you very much! Have a great New Year's Eve!
- 13th Dec 2023what is "DataTables warning: table id=role-list - Ajax error"? and what can I do?Did you follow the troubleshooting steps provided at the link in the error? https://datatables.net/manual/tech-notes/7 That is the place to start. Let us know what you find. Kevin
- 21st Nov 2023Combine Double Initialization of Table - Deep LinkingOops - thanks for flagging that Kevin. I've corrected it in source control now and will deploy the fix soon. Allan
- 8th Nov 2023How to add a button at the end of data table display?Sounds like you need to use page.info() to get the total number of pages. Then use page() to get the current page. When they match display the button. If not match then make sure the button is removed or hidden. Use these in the page event. Kevin
- 2nd Nov 2023Change button label in TableThank you very much for the tip, it worked
- 9th Oct 2023Is Modifying-fields on preCreate work with a compound key table, because a get error.Sorry a field was on set(false).
- 21st Sep 2023How do I get the correct identifier for an editing from that has fields from more than one table?Never mind, got it to work, simple as expected. editor.field('AirCell.Description').focus();
- 18th Sep 2023How To: Triggering multiple table data loads from a select dropdownI forgot to add to use ajax.reload() to reload the Datatables in your select event handler. Kevin
- 4th Sep 2023Joining Table with Multiple ColumnsThis is the bit of the manual you need. Basically you can do: ->leftJoin( 'GemPrice gp', 'gp.GemTypeId = jpd.GemId AND gp.GemCutId = jpd.GemCut AND gp.GemSizeId = jpd.GemSize') to get what you are looking for. Allan
- 30th Aug 2023s there an example of actually modifying the row value in the data table using editor?Let's continue your discussion in this thread since it is still related. Allan