I'm working with the MVC Grid and adding command buttons to my grid. However, I can't seem to find a way to add my own image to the button. I tried to use the CssClass property on the ButtonOpions, but it is not work. See code snippet below.
CSS
.users_Icon{
background-image: url("../Content/icons/icon_user_16px.gif")
}
Command Button
cmd.Type("Users").ButtonOptions(new Syncfusion.JavaScript.Models.ButtonProperties() { ContentType = ContentType.ImageOnly, Width = "25px", ShowRoundedCorner = true, CssClass = "users_Icon", HtmlAttributes = new Dictionary<string, object>() { { "title", "Manage Users" } } }).Add();
Is there a way to add my own image to the button?
Thanks
Eric Outley