function setCheckedNodes() {
var tree = mini.get("tree2");
//tree.setValue("ajax,json,date,control,forms");
tree.setValue("forms");
}
=====================
"ajax,json,date,control,forms"
这个数据,我需要从别的页面如何传过来
我采用了
mini.open({
url: "fee.toPrdType.do?ids="+this.getValue(),
title: "多选业务类型",
width: 350,
height: 350,
onload: function () {
var iframe = this.getIFrameEl();
var data = { action: "toPrdType",ids:this.getValue()};
iframe.contentWindow.SetData(data);
}
===树的页面定义了====
function SetData(data){
if (data.action == "toPrdType") {
//显示行详细
//跨页面传递的数据对象,克隆后才可以安全使用
var o = mini.decode(data);
//tree.setValue("3003,3004");
//tree.setValue("forms");
}
}