Search
11455 results 1901-1910
Forum
- 5th Aug 2019Export Excel Auto filter is not working.although there seems to be a 1.10.19 in Github but the downloader doesn't propose it .18 and .19 are code identical, which is why its not on the download page (new versions taken a frightening amount of disk space due to the build combinations - we are working on that!). Good to hear you've got it working now :). Allan
- 31st Jul 2019record disappear after key in words at filterThanks, Allan.
- 29th Jul 2019Filter Range Negative Numbermin -21 max -25 NOT WORK I wouldn't expect this to display any rows since -25 is less than -21. The min <= valcol && valcol <= max portion of the if statement affects this. There wouldn't be a condition where -21 <= valcol and -25 > valcol. If you want this for negative numbers you would need to change the if statement. But you wouldn't be able to have both min -21 max -25 and min -25 max -21 work. Kevin
- 31st May 2019Multi Search filter not working@kthorngren , I apologize. I didn't see it that answer before posting the question here.
- 30th May 2019Problem getting filter to work with fixedColumns.rightColumnsThank you @kthorngren, that is an interesting example. I'll break it down and let you know if it solves my issue or if I have any questions.
- 23rd May 2019Filter datatable base on button inputHi @Colin Sorry for the bad answering method, didn't realize i could provide a live demo, but your example live.datatables.net/butuwari/1/edit worked as intended. After a bit of modification it now works perfect, thank you once again :smile:
- 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
- 5th May 2019mysql + search and filterHi @danilodelconsole , For server side processing, enable serverSide. The protocol is discussed here. Cheers, Colin
- 12th Apr 2019how can filter age >=given valueYes, see this example. It requires a custom plug-in to be written for whatever search it is that you need. Allan
- 2nd Apr 2019Save and reload state for multi filter select?I think I got what I needed by adding stateSave: true and this line to the bottom (right under the column.data().unique().sort().each function) select.val(column.search().slice(1, -1).replace('\\', ''));