I'm trying to change the color of the grid command button but the CSS is not taking effect. The CSS is being called because the font size is changing. The color is not for some reason. Any ideas.
CSS:
.editButtonChangeColor
{
background-color: Red;
color: Red;
border-color: Red;
font-size: 20px;
}
Databound function of grid:
$(".k-grid-edit").addClass("editButtonChangeColor");
CSS:
.editButtonChangeColor
{
background-color: Red;
color: Red;
border-color: Red;
font-size: 20px;
}
Databound function of grid:
$(".k-grid-edit").addClass("editButtonChangeColor");