nani1216
nani1216

Reputation: 324

extjs grid referesh icons not displaying

I'm using using Extjs 4.0.7 version. Html editor icon images, grid refresh and paging button images are not displaying.

I checked another working setup, there i found x-tbar-loading class for grid refresh icon but in the setup i'm using on my system, the above calss is not found. But the css and js files are same as the working setup.

enter image description here

enter image description here

Upvotes: 2

Views: 957

Answers (3)

Andrei Levanuik
Andrei Levanuik

Reputation: 1

You need add

Ext.tip.QuickTipManager.init();

Upvotes: 0

David
David

Reputation: 1674

I was having the same issue using Ext JS 4.2.1. My application skeleton was created using Sencha CMD. In order to get things working again, I need to rebuild the application using the following commands. It seemed to need both:

sencha app build
sencha app refresh

Not sure of the exact order, but after doing that, I was able to get things working properly.

Upvotes: 0

dbrin
dbrin

Reputation: 15673

Check to make sure you included the resources shipped with the distribution. Also there is really no need to hang back to 4.0.7 - lots of issues have been fixed in 4.1.1

Upvotes: 1

Related Questions