0

嗨,我正在寻找一个 Combobox 事件,它完成了填充项目。是 onSearch 事件吗?如果有例子将不胜感激。

在用项目填充组合框期间,它必须处于待机状态。完成后,将删除待机。

require(['dojox/widget/Standby',dijit/form/Button  'dojo/domReady!']
function(Standby, Button)
{
    var pause = new Standby({target:"main_bContainer"});
    document.body.appendChild(pause.domNode);
    pause.startup();

    var buttonX = new button
    ({
      .... button creation...
    });

    var combox1 = new comboBox
    ({
        .... combobox  creation...
        onSearch(results, query, options)???
        pause.hide();
    });

    on(buttonX, 'change'...)
    {
     ....pause.show();
     .... start querying from database and fill combobox with items here
    }

 });

查看 onSearch(results, query, options)??? 非常感谢您的帮助。克莱门特

4

0 回答 0