Search
43645 results 2581-2590
Forum
- 7th Aug 2012New appended to data table header not getting hiddenYou can use iDraw ( http://datatables.net/docs/DataTables/1.9.2/DataTable.models.oSettings.html#iDraw ) to tell when a table is being draw for the first time. Allan
- 5th Aug 2012Themeroller not working on table created on serverclass to populate the table and this does not
- 1st Aug 2012fnServerParams blank value passed to server when table is loadedOkay, figured it out. Just needed to redraw the table before the form is opened. Silly me!!
- 31st Jul 2012fnAddData returning the index, but is not getting added to the tableloadExamRows: function(certArray){ if(($(clickedDiv).find('div[id ^= my_cert_div] table tbody tr').length) > 0){ var tableId= $(clickedDiv).find('div.my_cert table').attr('id'); $('#'+tableId).dataTable().fnAddData(certArray); $('#'+tableId).dataTable().fnDraw();
- 30th Jul 2012Do I have to call dataTable() on an enhanced table in order to run fnGetSelected()?call as I the table already is enhanced by
- 28th Jul 2012Table width to "auto" using column width, bAutoWidth, etc.?what is forcing the table width to be huge.
- 25th Jul 2012Having multiple initialisations to a single table. Possible?selectors and initialise the table as required. One way
- 25th Jul 2012dynamically size the table in larger monitors?this by adjusting the table height dynamically? West
- 24th Jul 2012How to copy filtered rows from one table to anotherTry this: [code] var data = oTable_1._('tr', {filter:'applied'}); oTable_2.fnClearTable(); oTable_2.fnAddData( data ); [/code] This uses the underscore function to get the data for the original original table, with the filtering applied, and then adds it to the second table. Allan
- 23rd Jul 2012error in data table if columns displayed is higher than 16 columnsUnderneath the "reply" box for this thread :-) http://debug.datatables.net . Its not really a debugger as such, but it will take a snapshot of your table state and show it visually. Also lets me see what is going on :-) Allan