ExtJs GridPanel column Text Color
CSS:
.x-column-header-text-inner{
color:red;
}
JS:
$('.x-column-header-text-inner').filter(function(){
return (/启用/i).test($(this).text())
}).css('color', 'red');
CSS:
.x-column-header-text-inner{
color:red;
}
JS:
$('.x-column-header-text-inner').filter(function(){
return (/启用/i).test($(this).text())
}).css('color', 'red');