I want to customize the raddock command icon by own custom image.
how it can be achieved, please suggest me.
DockCommand commandMaximize = new DockCommand();
commandMaximize.Text =
"Maximize";
commandMaximize.CssClass= "DeloittePartContainerMaximizeCommand"
;
commandMaximize.OnClientCommand =
"container_maximize";
I am doing by applying css class and in that css binding the image like
.DeloittePartContainerMaximizeCommand
{
background-position: -1px -95px;
background-image: url('<%=WebResource("Deloitte.Core.Controls.DeloittePart.Resources.Images.Maximize.gif")%>');
}
but I am unable to change the default icon by .Maximize.gif.