Skip to content

Dropdown

Write Software Limited edited this page Jul 31, 2018 · 1 revision

Dropdown

var dd = new dropdown('dropdown',{
    dataStore:'data',
    text:'A Dropdown',
    className:"btn-sm",
    data:[
        { text:'Option 1' },
        { text:"Option 2" },
        { text:'Option 3' }
    ],
    methods:{
        onclick:function(ev)
        {

        }
    }
})

Clone this wiki locally