the config:
[code] { view:“richselect”, id:‘add_1’, label: ‘a’,labelWidth:45,css:“opt_add”,inputAlign:“center”,yCount:“1”,options:[]},
{ view:“richselect”, id:‘add_2’, label: ‘b’, labelWidth:45,css:“opt_add”,inputAlign:“center”,yCount:“2”,options:[]}
$$(“add_1”).attachEvent(“onchange”,opt_add);
function opt_add(v){
dhx.ajax().sync().post(“data/ajax.php”,“act=opt_address&parent=”+v,function(text, xml, XmlHttpRequest){
eval(text);//the text like “var opt=[{“id”:“1”,“value”:“a”}]”
$$(“add_2”).data.data=opt;
});
}
[/code]
the “add_2” the options is not update when i click the richselect “add_2”