Search
18461 results 18131-18140
Forum
- 30th Apr 2015Possible to access previous field values when editingThanks Allan - we are using the second option proposed (initEdit event handler and passing to the server via ajax.data) so we can avoid hitting the database repeatedly during inline editing. Regards, Tom
- 28th Apr 2015Implementing server-side datatable - Security concernsyou can do using ajax.data - assuming your Javascript has
- 24th Apr 2015Editor: Is there a way to send additional data when creating a record?Excellent! I remembered it having something like ajax.data from a couple months ago, but I couldn't find it this morning. I really like the hidden field type. Thanks again for a great tool!
- 24th Apr 2015Supporting HATEOASIf so then use ajax.dataSrc and set it to
- 22nd Apr 2015Data table -server side processingsend customer parameters use ajax.data. I dont understand how
- 25th Mar 2015how to save data to a hidden extra fieldSure - two options: Use ajax.data as a function to
- 24th Mar 2015Long URL causing 400 bad requestYou can use ajax.data to modify the data submitted to the server. For example you could loop over columns and remove the orderable option which would save some space. Allan
- 2nd Mar 2015Serverside deletion validationthe data sent using ajax.data or preSubmit. However, a
- 2nd Mar 2015How popular a datatable to jsonUse ajax.dataSrc and set it to be an empty string. Then use columns.data to tell each column what property to use for that column. See the data section of the manual for more information. Allan
- 26th Jan 2015Custom JSON attribute for Total Records?You can use the ajax.dataSrc option as a function to be able to manipulate the JSON object returned from the server before DataTables uses it. That provides the opportunity to map between parameters however you need. Allan