■objWrapper.jsの修正
①ObjWrapper.prototype.isSingleDataObjの修正(50行目辺り)
以下の1行を追記
switch (this.obj.type){ // [RialtoAPI依存]
case "label":
case "text":
case "combo":
case "checkbox":
case "radioGroup":
case "codelib":
case "divHtml": // ←追加
return true;
default:
return false;
}
②ObjWrapper.prototype.setSingleValueの修正(146行目あたり)
以下を追記
case "divHtml":
this.obj.setElement(val);
break;
ズを指定したり、
値(htmlソース)を変えたり出来るようにしていただけませ
んでしょうか?