1

hey i am using the following code to make cascading dropdown in which , i made one function xyz() in which am ajax is called who call a servlet and set the value in result variable , the value in result is in separated by comma so i split it with comma and the store into second drop down .. now the problem is when i change the 1st dropdown 2nd dropdown is not populated but the ajax is called , and when i change the value second time then 2nd dropdwn is populate with wrong value which is i select previews .. please tell me whats wrong

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

    <link rel="stylesheet" href="js/dojo/dijit/themes/claro/document.css"/>
    <link rel="stylesheet" href="js/dojo/dijit/themes/claro/claro.css" />
    <script src='js/dojo/dojo/dojo.js' data-dojo-config=' parseOnLoad: true'></script>
    <script>
        dojo.require("dijit.form.ComboBox");
        dojo.require("dojo.data.ItemFileReadStore");
        dojo.require("dojo.ready");
        dojo.require("dojo.store.Memory");
        require(["dojo/parser", "dijit/form/ComboBox","dijit/form/TextBox","dojo/dom-construct"]);
     function xyz(){
      dojo.xhrPost({
            // The URL to request
            url: "populate",
            timeout :  3000 ,
            content: {
                username: document.getElementById("state").value

            },

            load: function(result) {                
         require(["dijit/form/ComboBox", "dojo/ready","dojo/store/Memory"], 
                function(ComboBox,ready,Memory){

                    ready(function() {

                        dojo.connect(dijit.byId('state'), 'onChange', function() {

                            var stateSelect = dijit.byId('stateSelect');

                            if (!stateSelect) {
                                stateSelect = new ComboBox({id: "stateSelect",name:"select",value: "Select",searchAttr:"name"},"stateSelect");

                            }

                            var str_array = result.split(',');

                            var data = [];
                            dojo.forEach(str_array, function(item, idx) {
                                data.push({
                                    id: idx,
                                    name: item                    
                                });
                                stateSelect.set('store', new Memory({data: data}));


                            });


                        }); // dojo.connect



                    }); // ready   



                }); // require  

        }



      });

    }


    </script>
</head>
<body class="claro">

    <select data-dojo-type="dijit.form.ComboBox" id="state" name="state" onchange="xyz()"  >

        <option selected>Andaman Nicobar</option>
        <option>Andhra Pradesh</option>
        <option>Arunachal Pradesh</option>


    </select>

    <select data-dojo-type="dijit.form.ComboBox" id="stateSelect" name="stateSelect">

    </select>


</body>

4

1 回答 1

0

在第二次尝试时填充 stateSelect 的原因是您使用 dojo.connect,它只是将 state 上的 onChange 事件绑定到完成填充 stateSelect 工作的回调。

删除 dojo.connect。你不需要那个。

要获得正确的值,您应该执行类似这样的操作,您应该使用 dijit 注册表并 goregistry.byId("state").get("value") 而不是document.getElementById("state").value

此外,您可能想在此处使用 FilteringSelect,请参阅差异:此处解释了差异http://kennethfranqueiro.com/2010/06/combobox-vs-filteringselect/

还有一些更多信息:

而不是xhrPost使用dojo.request模块

onchange=xyz()当 dom 准备好您的函数作为回调时,您可以添加事件处理程序,而不是添加事件处理程序

于 2012-12-01T14:27:33.240 回答