Shehzad Bilal
Shehzad Bilal

Reputation: 2523

EXTJS 4.0 Grid Filter Type Numeric Symbols not appearing

I have a problem in EXTJS 4.0 Grid Filter Type = numeric. Symbols of < > and = are not appearing. Screen shot attached.

Image EXTJS4.0

Upvotes: 2

Views: 1244

Answers (2)

sanket
sanket

Reputation: 21

Simply add this in your file ,

<link rel="stylesheet" type="text/css" href="../../extjs/examples/ux/grid/css/RangeMenu.css"/>

Upvotes: 2

Alexbridge
Alexbridge

Reputation: 86

Check source code (firebug), There is special css file RangeMenu Styles And images has background style

.ux-rangemenu-icon {
    margin-top: 0;
}
.ux-rangemenu-gt {
    background-image: url(../images/greater_than.png) !important;
}
.ux-rangemenu-lt {
    background-image: url(../images/less_than.png) !important;
}
.ux-rangemenu-eq {
    background-image: url(../images/equals.png) !important;
}

Check if You have them at images directory

Upvotes: 7

Related Questions