Search
10712 results 2521-2530
Forum
- 28th Nov 2011Ajax source and aaData initialisation parameter - width of columns different after second callAh... I had set an inline style on the tables, but it was getting destroyed on the second call and replaced with the attribute "style='width: 100px'". Putting the style in a stylesheet and marking !important clears it up. Thanks!
- 26th Sep 2011Initializing dataTables with no records to display at firsthttp://www.datatables.net/ref#iDeferLoading
- 5th Sep 2011Unexpected initialization return value when initialising inside an ObjectNevermind. This was because the selector name for the table is wrong.
- 17th Aug 2011All row displaying on initialisationHey allan, Ye, its 26. I understand what i need to do now, thanks. The processing of the rows needs to be done on initialization when using serverSide and ajaxSource and not just when filtering, sorting etc.
- 19th Jul 2011Row Details InitialShould I modify some details in source code?
- 9th Feb 2011bug on initial sort when using title-numeric plug-inSolved. Silly mistake, need to make sure the plug-in is defined before table initialization (duh).
- 22nd Nov 2010Manualy initialising datatableshttp://datatables.net/usage/callbacks#fnServerData - as shown you can construct your own Ajax call to the server. So all you need to do is add an if cndition in there to say that if it's the first draw just give the callback method an empty data set. Otherwise, do the Ajax call to the server. Allan
- 3rd Nov 2010Managing multiple data tables (initializing them separately)So I now have the second table showing and it works fine. However, once I create the second table, the first table's controls (sorting, paging, searching, etc.) stop functioning.
- 1st Sep 2010Initializing and Styling DataTablesThanks for your comments. I have solved my initialization problem--through FireBug reports, I found that I had th tags in the tbody, which I didn't know was a problem until FireBug told me it was.
- 15th Jul 2010initializing a table then empty it and then fill it agianTry removing the '0' in the fnClearTable call. That may stop the table redrawing. I just checked the documentation and saw this error in there, which has now been corrected :-) Allan