如果name相同,radio就只有最後一行能默認選中,把name去掉,radio就可以被默認選中,但是不能實現單選
<th data-options="field:'orgtype',width:80,formatter:formatProgress">類型</th>
function formatProgress(value,row){
if(value=='1'){
var s = '<input type="radio" value="1" checked="true">分行'+
'<input type="radio" value="2">支行'+
'<input type="radio" value="3">網點';
}
else if(value=='2'){
var s = '<input type="radio" value="1" >分行'+
'<input type="radio" value="2" checked="true">支行'+
'<input type="radio" value="3">網點';
}
else if(value=='3'){
var s = '<input type="radio" value="1" >分行'+
'<input type="radio" value="2" >支行'+
'<input type="radio" value="3" checked="true">網點';
}
else{
var s = '<input type="radio" value="1" >分行'+
'<input type="radio" value="2" >支行'+
'<input type="radio" value="3" >網點';
}
return s;
}
問題表述不清晰,只能說根據我理解的,你可以把他們放到不同function 或者加上不同的標識符