0

单击基于 dojo 模板的自定义弹出窗口中的提交按钮后,需要更改父窗口中的标签。

creating widget from parent.
     new com.test.widget.testWidget({panel: this});
<label id="a">test</label>
--------------------------------

in the custom widget 

show:function(){
        // need to change the value of the parent label "a"
    },

我确定我解释正确......任何建议

4

1 回答 1

1

您可以将 data-dojo-attach-point 添加到父小部件中的标签,例如

<label id="a" data-dojo-attach-point="labelA">test</label>

然后在显示功能

show: function(){
    this.panel.labelA.innerHTML = "hello world"
}
于 2012-10-18T05:52:43.450 回答