Search
23432 results 2711-2720
Forum
- 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
- 13th May 2019Click on a cell, get value from other columnsFound a solution: var rowindex = mainTable.row(this).index(); var ownertype = mainTable.cell(rowindex, 0).data(); $('#drilldown2').val('Company'); if (ownertype == '<u>Franchise</u>') { $('#drilldown2').val('Franchise'); }
- 6th May 2019Filter clear not working on IE11 with individual search columnsCommitted here and will be deployed to the site soon. Allan
- 14th Apr 2019Datatable many columns problem in mobileI try to use responsive but is not helpfull What exactly happens? Do you get any alert messages or errors in the browser's console? Are you loading the responsive JS and CSS files? Kevin
- 12th Apr 2019Column's width doesn't change when I use scroll-verticalMost likely you are running into the issue described here. It might not be Bootstrap tabs you are using (impossible to say without a test case, which is required in the forum rules btw) but if the table is initialised hidden, then you will run into that problem. Allan