Karllebolla
Karllebolla

Reputation: 21

ExtJS 5 Combobox in a form

I have a question. When I open the combo box, the list is always transparent, that I see the elements behind it. What can one do against?

The form will be open in a new window, wenn a Button was klicked.

The code of the Combobox:

{
  xtype: 'combo',
  fieldLabel: 'Material',
  store: material,
  queryMode: 'local',
  displayField: 'name',
  valueField: 'abbr',
  editable: false,
  labelWidth: 150,
  width: 300
}

http://abload.de/img/extjs5obqid.jpg

Upvotes: 0

Views: 833

Answers (1)

Saki
Saki

Reputation: 5856

You need to run:

sencha app refresh

if it does not help:

sencha ant sass

if it does not help:

sencha app build

Upvotes: 3

Related Questions