I'm working on writing java code to handle the server side processing of my datable and I'm making pretty good progress on it. One thing I don't understand is why paging does not work. When the table displays I see "Showing 1 to 10 of 10 entries (filtered from 221 total entries)", even though there is no filtering being applied, as far as I can tell. When I change the number of entries to display, via the pull down, it works fine, the table adds or removes the rows as needed. But the paging icons are still disabled and the footer stills shows the "filtered" text.
Here's my table header
Here's the table definition
And here's what I have in java so far, please note I'm just getting started on this so there is a lot left to do:
Clearly I'm missing something, probably something obvious.
If anyone has some java code they would be willing to share that would be great. Java because I'm pretty clueless with php and that seems to be what the examples use.
Thanks a lot.
Here's my table header
<table id="firmtable" class="display" border="0" cellpadding="0" cellspacing="0"> <thead> <tr> <th> </th> <th>Firm ID</th> <th>Firm Name</th> <th> </th> </tr> </thead> <tbody> </tbody> </table>
Here's the table definition
$('#firmtable').dataTable({ bJQueryUI: true, "bProcessing": true, "bDeferRender": true, bAutoWidth: false, "aaSorting": [[ 1, "asc" ]], "aoColumns": [ {"mData": "column0", "bSearchable": false, "bVisible": true, "bSortable": false,"sWidth": "1%"}, {"mData": "firmid", "sWidth": "12%"}, {"mData": "firmname", "sWidth": "75%"}, {"mData": "column3", "bSearchable": false, "bVisible": true, "bSortable": false,"sWidth": "1%"} ], "oLanguage": { "sEmptyTable": "Firm table is loading, please wait. <img src=\"images/loading8.gif\" />" }, bServerSide: true, sAjaxSource: "./FirmServlet?action=alltest", sServerMethod: "POST" } );
And here's what I have in java so far, please note I'm just getting started on this so there is a lot left to do:
StringBuffer sql1 = new StringBuffer("select firm_id, firm_name from private_rates.firms order by firm_id"); PreparedStatement stmt = conn.prepareStatement(sql1.toString()); ResultSet result = stmt.executeQuery(); JSONObject returnObj = new JSONObject(); JSONArray array = new JSONArray(); int row = 0; int idisplaylength = Integer.parseInt(request.getParameter("iDisplayLength")); while (result.next()) { if(row <= idisplaylength) { JSONObject obj = new JSONObject(); int firmid=result.getInt("firm_id"); obj.put("column0","<input type='checkbox' id='cb"+row+"' onclick='selectFirm("+firmid+",this.checked,"+row+");'/>"); obj.put("firmid", firmid); obj.put("firmname", result.getString("firm_name")); obj.put("column3", "<img src='images/icon_edit_small.png' title='Edit Firm' style='cursor: pointer;' onclick='editFirm("+firmid+");'/>"); array.add(obj); } row++; } result.close(); stmt.close(); returnObj.put("iTotalRecords", row); returnObj.put("iTotalDisplayRecords", idisplaylength); returnObj.put("sEcho", Integer.parseInt(request.getParameter("sEcho"))); returnObj.put("aaData", array); out.print(returnObj.toJSONString()); out.flush();
Clearly I'm missing something, probably something obvious.
If anyone has some java code they would be willing to share that would be great. Java because I'm pretty clueless with php and that seems to be what the examples use.
Thanks a lot.