Search
18880 results 541-550
Forum
- 1st Sep 2021Hello, I'm new in system platea2021. How I create database in my server.Yep, not a DataTables issue, maybe try posting on StackOverflow. Colin
- 25th Jun 2021Hello, I try to use the column.render to create an ellipsis for long content, but nothing happenYep, I need to apply some logic. As in http://live.datatables.net/qoviziju/5/edit?html,js,output I've got a third column for issue. If the column is not empty (row[x].lenth > 1) then I need to render in red (and with a glyphicon ;) ). (I keep in mind the columns.className for other styling I've got in mind !)
- 17th Jun 2021how create pagination automatic with animation fadeindowsThere is no option to do an fade / animation page change in DataTables I’m afraid. Allan
- 27th Apr 2021Order of an alphanumeric dropdown list in "create" modalFound the answer myself. added the following option to the Editor code: ->order('CAST(optionitem AS UNSIGNED) DESC')
- 6th Apr 2021How to create CSV export client-side rows?See this example for using row-selector options to choose the rows to export. If all your data is client side then you don't want to use the solutions presented. If one the row-selector options doesn't meet your needs then please provide details of how you want to choose the rows to export. Kevin
- 22nd Mar 2021render function in create or edit formThis example here demonstrates masks for dates and ages - hopefully that'll help, Colin
- 12th Mar 2021Use of whole row + inline createThanks Allan! I will try to run direct on my server.
- 21st Feb 2021Resize panel and input fields for create & editoh, that´s great. Very good idea :-)
- 13th Feb 2021how to create JSON data format for the file upload functionality?There isn’t a JSON data format that Editor uses for the file upload - as you note it sends it as a multi-part form via Ajax. The full information for the client / server upload interchange is available here. Generally multi-part form is much easier to work with on the server-side for file upload than JSON (and likewise the client-side). Are you using a library on the server-side that is having problems with the upload? Allan
- 1st Feb 2021How would you create a custom access method to edit files?Good question - yes it is possible, but it requires a little thinking outside the box. Probably the most technically correct (but not easiest) way is to use a standalone Editor which gets populated with values when you select an item from the dropdown. An easier solution, might be to have a hidden DataTable which contains all of the data that can be edited, and as you select an item in the dropdown list, it would trigger editing on that row. That said, this method wouldn't be all that different from using DataTables / Editor as normal - the only difference if that you'd be selecting the item to edit from a <li> list rather than a DataTable. Allan