Reputation: 11
I want to implement the multiselect combo box in my program. Means If I will select multiple names through check box then all selected names will be fall in that combo with comma separated... I want a sample example... Could you please help me..
Upvotes: 1
Views: 7595
Reputation: 58
I have Implemented Checkcombo without using any extra plugin or file.
You just need to add image checkbox image in css
And CSS Reference
.chkbox {
height: 13px;
width: 13px;
background: transparent url(please see checkbox image) no-repeat 0px 0px;
float: left;
margin: 4px 5px 0 0;
}
.x-boundlist-selected .chkbox {
background-position: 0 -13px;
}
See the demo in JSFiddle
Upvotes: 0
Reputation: 11
you can use combobox plugin Ext.ux.Andrie.Select. For demo : http://www.andrei.neculau.home.ro/extjs2/ux.Andrie.Select/Select_test.htm
Upvotes: 1