Hi,
I have the following Column:
The corresponding CSS class is:
Now I want to add a mouseover hint to those images using a "Title" attribute on the link that is rendered.
I need to use CSS sprites for performance reasons. How can I achieve this?
Regards,
Sebastian
I have the following Column:
protected static void CreateAndAddRadGridAuditViewCommandColumn(RadGrid grid) |
{ |
GridButtonColumn auditColumn = new GridButtonColumn() |
{ |
UniqueName = "AuditView", |
ButtonType = GridButtonColumnType.LinkButton, |
Text = " " // just make background image from css class visible (using CSS sprites) |
}; |
column.HeaderStyle.CssClass = "rgHeader " + "cms-column-auditview"; |
column.ItemStyle.CssClass = newCssClass; |
grid.Columns.Add(auditColumn); |
} |
The corresponding CSS class is:
.cms-column-auditview a { |
text-decoration: none !important; |
background: url(/Cms/Resources/Images/iconset.png) 0px -2032px no-repeat; |
} |
Now I want to add a mouseover hint to those images using a "Title" attribute on the link that is rendered.
I need to use CSS sprites for performance reasons. How can I achieve this?
Regards,
Sebastian