javascript - Up Down arrow is not coming for firefox of tagfield component -


i found 1 weird bug in extjs tag field. after using tagfild not able see up-down arrow of field see selected componet in tagfield.

i created fiddler, please open fiddler in chrome , firefox , see difference.

here link fiddle. fiddle red circle in image asking in firefox. enter image description here

can give me idea.

change growmax property from 5 35 , should fixed.

  ext.create('ext.form.panel', {   renderto: ext.getbody(),   title: 'sci-fi television',   height: 200,   width: 300,    items: [{       xtype: 'tagfield',       fieldlabel: 'select show',       store: shows,       displayfield: 'show',       valuefield: 'id',       growmax  : 35,       querymode: 'local',       filterpicklist: true,    }] 

});

it not possible firefox draw scrollbars when size of element height smaller 34 pixels.

i've tried safari , chrome macos , don't show scrollbar in example posted.

you can see scrollbars in screenshot height of element changes value equal or greater 34 pixels, once drops below value (33px in picture #2) not longer being shown. enter image description here

enter image description here

i hope helps solve problem.


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -