Hello
I'm trying to create a RadGrid with nested tables and tooltips. I want to preserve the attached tooltip OnItemDataBound.
                                I'm trying to create a RadGrid with nested tables and tooltips. I want to preserve the attached tooltip OnItemDataBound.
protected
 void radGrid_ODS_JobRuns_OnItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item.OwnerTableView.DataSourceID == "ODS_JobRuns") <-- this is my main RadGrid
    {
    RadToolTipValidationInfo.TargetControls.Add(e.Item.Cells[15].ClientID, identifier, true);
    }
if
 (e.Item.OwnerTableView.DataSourceID == "OD_InstanceJob") <-- this is my detailsgrid
    {
    some formatting.....
    }
}  
The first isn't hit when dealing with the details table and therefore the RadToolTip isn't applied correctly :(
How do I solve that? Could I place a div inside the RadGrid.TableCell and use a Tooltipify along with a zone? or? and how?
Kind regards
Janus
