Search
23432 results 2801-2810
Forum
- 19th May 2016How to add a total row for some of the columns of data tablesjr42.gordon : my custom datatable js component , does not have i had modified the component and added tfoot , after adding that . same code snippet worked . do you have any idea about : https://datatables.net/forums/discussion/35099/how-to-add-custom-html-view-in-header-and-footer-in-printview If you know please revert . Thanks for your help
- 19th May 2016How to fix the columns for preventing it collapse when the browzer width not enoughFor more information, here is my original problem: http://stackoverflow.com/questions/37291654/datatables-makes-radio-button-not-working And i finally find that because datatables will generate a same radio button for me, so it have a problem for checked and submit form.
- 5th May 2016How to use datatables editor with rendered columns?OK, good to know!
- 21st Apr 2016How to get the row.index of the sorted columns?row().index() is how you get a row index. The row.add() method returns an API instance with the new row selected, so you could use: var row = table.row.add( ... ); var index = row.index(); Allan
- 7th Mar 2016Fixed Columns: Apply heightMatch of 'none' to thead and tfootThank you. Have bypassed it for now.
- 1st Mar 2016Datatables Responsive Inside Flexbox Doesn't Hide ColumnsThat seems to work. I'll follow up later on if it breaks, but that seems to have done the trick. Thanks Allan!!
- 1st Mar 2016How can I combine the data from two or more columns into a "select" dropdown box?you can easily do this if you use the php library that accompained with datables or you have to re-invent the wheel I'm going to take field with type select as an example basically you have to define your field with type select and pass an empty array first then use field api and invoke update method. e.g editor.field('test').update(loadJson("/your/api/url")); the response from the server should be something like below your server side script should prepare the concatenated field name from your DB { label: "John Doe",value:"1" } take note loadJson is a wrapper method/function of $.ajax function to get the JSON data from the server. I hope this make sense. Please read the example carefully from the site it has a very good documentation just to start to get your feet wet. Good luck
- 25th Feb 2016Responsive DataTable - Have "automatic column hiding" apply to all th columns in theadFinding it strange that column-visibility callback does not fire when the column is hidden as a result of the responsive behavior. I assume it does not use the column().visible() API? Should it not eat its own dog food?
- 10th Feb 2016Tab between Columns Server side true problemHi, This will be resolved in Editor 1.5.5 which will drop tomorrow. There is a timing / async error when server-side processing is used with inline editing in 1.5.4 I'm afraid. Regards, Allan
- 5th Feb 2016Make several columns hyperlink in a row where part of the hyperlink data coming form server in jsonSee also the rendering section of the manual. Allan