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

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -