Themes Leave a comment
x
 
1
jui.ready([ "ui.dropdown" ], function(dropdown) {
2
    dd_4 = dropdown("#dd_4", {
3
        nodes: [
4
            { value: 1, text: "text1" },
5
            { value: 2, text: "text2" },
6
            { value: 3, text: "text3" }
7
        ],
8
        event: {
9
            change: function(data) {
10
                alert(data.value + ", " + data.text);
11
            }
12
        }
13
    });
14
15
    dd_4_update = function() {
16
        dd_4.update([
17
            { value: 4, text: "text4" },
18
            { value: 5, text: "text5" },
19
            { value: 6, text: "text6" }
20
        ]);
21
    }
22
});

Result
API