|
发表于 2013-4-17 10:09:15
|
显示全部楼层
本帖最后由 吉他爱天涯 于 2013-4-17 10:12 编辑
bizData上添加计算关系 grid中添加为一列 设置其树形为HTML 在onRender事件中HTML生成单选按钮
mainActivity.grid1_fOwnerIDRender = function(event){
var fid = event.rowId;
var html = "<input type='radio' value='0' name='"+fid+"' "+ifChecked("0",event.value)+" onclick=\"saveRadio('"+fid+"',0)\">芒果</input>"
+"<input type='radio' value='1' name='"+fid+"' "+ifChecked("1",event.value)+" onclick=\"saveRadio('"+fid+"',1)\">苹果</input>";
return html;
}
function ifChecked(value,colValue){
if(value==colValue)
return "checked"
else
return "";
}
function saveRadio(rowID,value){
justep.xbl("bizData1").setValue("fOwnerID", value, rowID);
}
|
|