Search
13035 results 4701-4710
Forum
- 3rd Dec 2013Scroller Plug-In - Issue with scroll bar when server side processing and large number of rows.That's great, thanks for the update Allan! I will be sure to order more support as things progress to assist in your development efforts! Thanks again! Curt
- 2nd Dec 2013The value of iDisplayLength not increasing with Server-side processingrecords to display. In order to find out what
- 29th Nov 2013Show columns matching table headersindex by one in order to avoid deleting the
- 27th Nov 2013PDO version of the server side php example?intval( $_GET['iDisplayStart'] ).", ".intval( $_GET['iDisplayLength'] ); } // Ordering $sOrder = ""; if ( isset( $_GET['iSortCol_0'] ) ) { $sOrder = "ORDER BY "; for ( $i=0 ; $i<intval(
- 26th Nov 2013Getting the field values from a table rowleast one field in order to copy this row.',
- 25th Nov 2013Adding span to TD really slow things down in DOM creating tableneeds C# service in order to work. Please let
- 22nd Nov 2013search resultmysql_real_escape_string( $_GET['iDisplayStart'] ).", ". mysql_real_escape_string( $_GET['iDisplayLength'] ); } /* * Ordering */ if ( isset( $_GET['iSortCol_0'] ) ) { $sOrder = "ORDER BY "; for ( $i=0 ; $i<intval(
- 21st Nov 2013ColReorder overrides aoColumnDefs?processing where the column order can change: https://github.com/DataTables/DataTables/blob/master/examples/server_side/scripts/objects.php . Note
- 21st Nov 2013Suppressing column attributes in GET requestThree options: Use POST :-) Use fnServerParams and delete the parameters you don't want to send from the array Use fnServerData (basically the same as 2, but perhaps a little more flexible). I'd approach them in that order myself. Allan
- 18th Nov 2013large databaseAllan I did just this in the php file...there is no error but the data do not show in datatable $out = $db ->query ('select') ->table ('factprove') ->get ('fecha, numero' ) ->order ('fecha desc') ->exec() ->fetchAll(); echo json_encode( $out );