ki11en
ki11en

Reputation: 667

ExtJS 5 textfield bug (Chrome)

I create simple application with window and 3 field: Fiddle Link (Use Chrome)

When I enter a value in the field, it looks fine.

Normal

But when I change the focus,text in field moves down.

enter image description here

All fields work similarly.

enter image description here

After click on trigger (if field has it) text looks fine.

enter image description here

This bug only in Chrome. IE, Opera, Firefox and Vivaldi work right. How can I fix that?

Upvotes: 4

Views: 1696

Answers (2)

khmurach
khmurach

Reputation: 484

Css fix:

.x-form-text { display: inline; }

Demo here: http://ext4all.com/post/extjs-5-textfield-chrome-bug-fix.html

Upvotes: 1

Tyr
Tyr

Reputation: 2810

It's a known bug for chrome. Take a look here for the workaround:

https://www.sencha.com/forum/showthread.php?301227-Visual-combobox-bug-in-Chrome-43.0.2357.65-m&p=1101244&viewfull=1#post1101244

Upvotes: 3

Related Questions