1

所以看起来dojo.addOnLoaddojo.ready功能不适用于对话框。

我正在寻找替代品。问题是我的对话框 HTML 是动态创建的,并且包含许多不同的脚本块,每个脚本块都使用一个dojo.connect函数来添加功能。例如,我有:

<input type='checkbox' name='value(liquid40011252)'  value='1' dojoType='dijit.form.CheckBox' id='liquid4001125249' />
 <script type='text/javascript'>dojo.addOnLoad(function() {
    dialogConnect4001125249();});
    function dialogConnect4001125249() { 
        dojo.connect(dijit.byId('liquid4001125249'), 'onChange', 
         function(){
           // my code for toggling checkboxes ets
         });
    }
  </script>

这在普通网页中工作正常,但对话框addOnLoad不受尊重且未dijit.byId('liquid4001125249')定义。ready没有帮助。

我实例化对话框

searchDlg = dojox.widget.DialogSimple();
searchDlg.set("title", title);
searchDlg.set("style", "width: " + width + "px; max-height: "+height+"px; overflow:auto;");
searchDlg.set("content", content);
searchDlg.show();

并考虑调用dialogConnect之后,show但有很多dialogConnectxxxxx,我没有列表。

也许另一种选择是以某种方式在dialogConnect某处添加 s 列表 - 也许在对话框本身上。没有把握。

关于如何解决这个复杂问题的任何想法?

4

1 回答 1

0

在您的情况下,对话框仅在searchDlg...代码执行后才存在。在例程dijit.byId中找不到它们是正常的。addOnLoad

我真的不知道您想在connectDialog函数中做什么,但我认为您将通过子类化 Dialog 并使用该postCreate方法连接到对话框来获得可读性。

dojo.declare("mynamespace.MyCustomDialog", [dijit.Dialog], {

    templateString: dojo.cache("mynamespace", "templates/MyCustomDialog.html"),
    widgetsInTemplate: true,

    postCreate: function()
        {
        // do whatever dojo.connect you need
        },

    });
于 2012-08-30T09:02:29.993 回答