Search
23531 results 2721-2730
Forum
- 1st Oct 2019Order Columns Salary problem 'display'Because if type is sort or type you are using return "";. It should return the un-rendered data. Allan
- 19th Sep 2019Merge columnsYou would use columns.render for this. Here is an example: https://datatables.net/examples/advanced_init/column_render.html Kevin
- 29th Aug 2019Hide and Show ColumnsHi @fmsthird , You can use columns().visible() for that. Cheers, Colin
- 21st Aug 2019Unique validation for multiple columnsThank you so much Allan! This solves my problem.
- 17th Jul 2019How to access current search values for columns?Thanks that worked perfectly :) http://live.datatables.net/vafopuri/4/edit
- 4th Jul 2019scrollY function disable 'autoWidth' and display hidden columnsYep, that's enabled as expected. You can tell by setting the value to false and then resizing the window, you'll notice that the header loses alignment with the body.
- 12th Jun 2019Fixed Columns are not scaling after window resizeHi @itguy9999 , We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 27th May 2019searching not working when merged two columns with serverside true.@colin its resolved thanks :)
- 17th May 2019sum filter columnsInstead of using Javascripts reduce() method you would need to iterate over the rows. You could use rows().every() then inside the loop if the Position column contains London increment your counter by the value in the age column. Soemthing like this: http://live.datatables.net/hoxinawa/1/edit Kevin
- 14th May 2019Translating server side php code to .net for checkboxes in columns exampleHi @"dhutton@creativeone.com" , The client side code will be the same. There's example of the formatters for the server-side on the .Net manual pages - see here. I suspect it'll just be SetFormatter((val, data) => (string)val == "" ? 0 : 1) In the .NET download page, there'll be similar examples of this. Hope that helps, shout if not, Cheers, Colin