Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82117

How to serialize selected checkbox value in every page?

$
0
0
Hi, I would like to ask how to serialize selected check box value in every page? Below is my configuration:

$('#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 :)

Viewing all articles
Browse latest Browse all 82117

Trending Articles