Biren
Biren

Reputation: 11

How to implement the multiselect combo box in EXT JS

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

Answers (3)

Neel Patel
Neel Patel

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

yagi
yagi

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

Brian Moeskau
Brian Moeskau

Reputation: 20431

Use this user extension. Examples page.

Upvotes: 1

Related Questions