Search
23432 results 2891-2900
Forum
- 19th Dec 2012Enable/Disable Fixed columnsThanks Allan for the reply. Yes i am using fnOpen/fnClose to create the nested tables with fixedcolumn on the left. The nested datatable is getting expanded without any issue. I see a comment saying full redraw, do i need to destroy the datatable completely and redraw it? Thanks.
- 7th Dec 2012JSON Data loading with columnsHi Allan, Finally could get it on jsFiddle http://jsfiddle.net/UnaDU/ on jsFiddle with datatables plugin referring from http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.2/jquery.dataTables.js The table is rendered properly in the fiddle however it is throwing an error in my code at the location mentioned in my earlier comments . Its really strange that this works fine in fiddle but not in my code. Any pointers on what i might be missing or how you want me to debug the script?
- 30th Nov 2012Would this require to purchase support? Multi Filter Select with columns treated differentlyHi Erik, The column filter plug-in you linked to is a third party project, and not one that is maintained as part of the core DataTables project. I'd need to open an issue against that project if you are having issues specifically with it, as I don't know much about it and can't offer any support for it. Regards, Allan
- 28th Nov 2012issue with the scrollbars they make alignment issues with the fixed columns and lines.It appears to work okay in Chrome and Safari for me (Mac). What browser are you using that you are seeing the issue in? If you want vertical scrolling as well, you should enable the sScrollY option as well as sScrollX . Allan
- 19th Nov 2012Filter (Search) inside ColumnsI would send the link but it's stored locally ..
- 10th Nov 2012IE8 Fixed Columns throwing an exceptionWhat was the bug? If it is in FixedColumns then a patch or pull request with the changes would be warmly welcomed. Allan
- 14th Sep 2012IE9 - columns are shrunk, head is fine but body is not.Can you link to the page please so we can actually see what is happening. If you can't share a link then you can use http://live.datatables.net to construct an example that shows the problem. Allan
- 11th Sep 2012Changing row color and comparing two columns with datatablesFor #1 you can try something like this: [code]"fnCreatedRow": function( nRow, aData, iDataIndex ) { if ( aData[4] == "something" ) { $(nRow).addClass('green-row'); } }[/code]
- 4th Sep 2012Bug? Fixed Columns can't sort (happened on offical example)Please see our original discussion here: http://datatables.net/forums/discussion/11489/fixed-column-collide-with-bjqueryui-#Item_6 . Allan
- 17th Aug 2012How to search in the columns from one search box.Looks like you can use the fnFilter() API to search only a specific column. Otherwise the default sorting method DataTables uses is global. It will/should search each row/column. http://datatables.net/examples/api/multi_filter.html