I know this is a very trivial solution however I can't seem to figure how to do this.
Here is my scenario.
I have a grid with some columns, one of them being the built in kendo command.Edit() button. Now this button has a standard icon associated with it from kendo.
What I am trying to do is change that icon to a custom icon that I have created.
The following allows me to do so with CSS however when I hover over it (right before I click) the icon is removed. I am looking for either the CSS to not remove the icon on hover or another viable solution. I do not want to change the command.Edit() to a custom command.
Here is the CSS
.k-grid .k-edit
{
background-position: 0 0 ;
background-image: url('...');
}
Thanks
Nav
Here is my scenario.
I have a grid with some columns, one of them being the built in kendo command.Edit() button. Now this button has a standard icon associated with it from kendo.
What I am trying to do is change that icon to a custom icon that I have created.
The following allows me to do so with CSS however when I hover over it (right before I click) the icon is removed. I am looking for either the CSS to not remove the icon on hover or another viable solution. I do not want to change the command.Edit() to a custom command.
Here is the CSS
.k-grid .k-edit
{
background-position: 0 0 ;
background-image: url('...');
}
Thanks
Nav