Search
43854 results 22191-22200
Forum
- 4th Jan 2013Creating custom add/edit/remove functionidSrc option, in my table theres an 'ID' row
- 4th Jan 2013sDom not working to suppress page info textI still get the same error I'm afraid. Load the link Click on the 'Everything' button Alert saying "init table" JS error Click on "Kids Corner" Alert saying "init table" DataTables re-init warning
- 3rd Jan 2013Whats the best way to set height of datatables dynamically on window.resize?I figured out a way to increase the height using scrollY parameter... $(window).resize(function() { var table = $.fn.dataTable.fnTables(true); if ( table.length > 0 ) { for(var i=0;i<table.length;i++){ $(table[i]).dataTable().fnSettings().oScroll.sY =$(window).height()<650?calcDataTableHeight(40):calcDataTableHeight(54); $(table[i]).dataTable().fnAdjustColumnSizing(); } } } }); Not sure if this is the best way to resize the datatable ....
- 3rd Jan 2013Datatable layout getting changed on setting visibility to hidden/visiblediv which contains the table or the table itself?
- 3rd Jan 2013Property GridInitializing the local Columns, table width and sort fields.
- 3rd Jan 2013not scalablemy test case. The table with id table_id is showing the problem.
- 2nd Jan 2013Datatables pagination using server sideto just redraw the table without calling server side
- 2nd Jan 2013Column Type from JSONCurrently no - you'd need to load that information first and the initialise the table with the column information. A weakness in DataTables that needs to be addressed in future! Allan
- 2nd Jan 2013Datatable not working for morethan 500 rowshi allan not working in the sense no values displaying in table
- 1st Jan 2013Issue with % width on parent when using sScrollY = "XXXpx"the "width=...%" attribute for the < table> tag is no longer supported as of HTML 5.0. So I don't see that as a solution for the current version of DataTables? Regardless, awesome product! And thanks for this fix johnwc723.