Reputation: 2523
I have a problem in EXTJS 4.0 Grid Filter Type = numeric. Symbols of < > and = are not appearing. Screen shot attached.
Upvotes: 2
Views: 1244
Reputation: 21
Simply add this in your file ,
<link rel="stylesheet" type="text/css" href="../../extjs/examples/ux/grid/css/RangeMenu.css"/>
Upvotes: 2
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