javascript - Extjs Creating a tagfield without the list -
i know might not way intended used, i'm going ask anyway:
is there way create tagfield
without drop down list?
what have custom control combination of tagfield , itemselector. itemselector inside panel appears via toggle button. after have selected values, hide panel , values selected in tagfield. not using tagfield's combobox properties, want keep ability remove records pressing "x" beside records. there configuration or other way block tagfield showing drop down list when clicked?
imo easiest way override extend
method (it might empty) , set hidetrigger
true
:
{ xtype: 'tagfield', store: store, expand: ext.emptyfn, hidetrigger: true }
fiddle: http://jsfiddle.net/mmvg1bl2/
Comments
Post a Comment