Search
10707 results 1431-1440
Forum
- 17th Oct 2009Using fnServerData if present with sAjaxSource to get remote datawrite something around the initialisation object: $.getJSON( 'whatever', null, function(json) { /* processing /; / init the table */ }; or something
- 26th Sep 2009Warning - added data does not match known number of columnsit just after the init, and then use a
- 26th Sep 2009User selectable rows (multiple rows) with Server side processingalert (selected); return false; } ); /* Init the table */ oTable = $("#example").dataTable({
- 15th Sep 2009Sorting on Parts of the datafirebug. This is my init js: [code] $(document).ready(function() { $('#products').dataTable({
- 11th Sep 2009Form, Checkbox, and MySQLTry something like this: [code] < script type="text/javascript" charset="utf-8"> var oTable; $(document).ready(function() { $("#main").submit( function() { for(i=0; i<oTable.fnGetNodes().length; i++) { var item = $("input", oTable.fnGetNodes()[i])[0]; if (item.checked && item.type=="checkbox") { var oField=document.createElement("input"); oField.setAttribute("type","hidden"); oField.setAttribute("name","h_"+item.name); oField.setAttribute("value",item.value); document.forms[0].appendChild(oField); } } } ); /* Init DataTables */ oTable = $('#example').dataTable( { "aaSorting": [ ], /*"sPaginationType": "full_numbers"*/ } ); /*oTable.fnFilter( '' );*/ } ); [/code]
- 9th Sep 2009How to use jeditable with mysql ?aPos[0], aPos[1] ); }, "height": "14px" } ); /* Init DataTables */ oTable = $('#example').dataTable(); } ); [/code]
- 18th Aug 2009jEditable updating MySQL database - PHP code?javascript: [code]var oTable; $(document).ready(function() { /* Init DataTables */ oTable = $('#dt').dataTable( { "bProcessing":
- 9th Jul 2009Sticky Rowplaced before the datatables init for #list var row0
- 30th Jun 2009OnClick - Send to another page - Helphandler - see the post init demo here: Regards, Allan
- 7th Jun 2009Multiple tables with different settingsoTable; var oTable2; $(document).ready(function() { /* Init the first Table / oTable