Hi, I would like to ask how to serialize selected check box value in every page? Below is my configuration:
Your help are really appreciated :)
$('#list-item').dataTable({ "sAjaxSource" : "${pageContext.request.contextPath}/parameter/item/list/json", "sServerMethod" : "GET", "bProcessing" : true, "sAjaxDataProp" : "", "aoColumns" : [ {"bSortable" : false, "sClass": "center", "fnRender": function ( oObj ){ var stringCheckbox = ""; if(oObj.aData[0]!="1"){ stringCheckbox = "<input type='checkbox' name='ids' value='" + oObj.aData[0] + "'/>"; } return stringCheckbox; } }, {"bSortable" : false, "sClass": "center"}, {"sClass": "text_align_left"}, {"sClass": "center"}, {"sClass": "center"}, ], "fnRowCallback" : function(nRow, aData, iDisplayIndex, iDisplayIndexFull) { var i = iDisplayIndexFull + 1; var yesNo = ""; var activeInactive = ""; if(aData[3]=="Y"){ yesNo = "${yes}"; }else{ yesNo = "${no}"; } if(aData[4]=="A"){ activeInactive = "${active}"; }else{ activeInactive = "${inactive}"; } $('td:eq(1)', nRow).html("<a href='${pageContext.request.contextPath}/parameter/item/edit/" + aData[1] + "'>" + i + "</a>"); $('td:eq(3)', nRow).html(yesNo); $('td:eq(4)', nRow).html(activeInactive); return nRow; }, "sPaginationType" : "full_numbers", });
Your help are really appreciated :)