Hi,
I've created a tooltip for my radgrid in the ItemCreated Event as shown in the code below. However, I need to style the tooltip now and I don't know how to do it. Can someone help me with this?
Thanks,
Andy
I've created a tooltip for my radgrid in the ItemCreated Event as shown in the code below. However, I need to style the tooltip now and I don't know how to do it. Can someone help me with this?
Thanks,
Andy
protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { GridDataItem gridItem = e.Item as GridDataItem; foreach (GridColumn column in RadGrid1.MasterTableView.RenderColumns) { if (column is GridBoundColumn) { if (column.UniqueName == "SocSecNum") { CaseSearchDTO obj = (CaseSearchDTO)gridItem.DataItem; if (obj != null) gridItem[column.UniqueName].ToolTip = obj.SocialSecurityNumberFull; } } } }