데이터grid에서 checkbox의 단일 선택을 어떻게 실현합니까

데이터grid를 초기화할 때
$('#bj_datagrid').datagrid({
			url : basePath+'/jxBjController/datagrid.do',
			fit : true,
			fitColumns : true,
			border : false,
			pagination : true,
			idField : 'id',
			pageSize : 10,
			pageList : [ 10, 20, 30, 40, 50 ],
			checkOnSelect : true,
			selectOnCheck : true,
			singleSelect : true,
			columns : [ [
			{
				field : 'id',
				title : '  ',
				width : 150,
				checkbox : true
			},
				   {field:'bh',title:'  ',align:'center',sortable:true,width : 150,
						formatter:function(value,row,index){
							return row.bh;
						}
					}	   {field:'bzxh',title:'    ',align:'center',sortable:true,width : 150,
						formatter:function(value,row,index){
							return row.bzxh;
						}
					}			] ]
					
		});

좋은 웹페이지 즐겨찾기