I am using the following code from this example to dynamically pull products based on quote number.
protected void Review_RadToolTipManager_AjaxUpdate(object sender, ToolTipUpdateEventArgs e) |
{ |
Control ctrl = Page.LoadControl("Quote_Detail.ascx"); |
e.UpdatePanel.ContentTemplateContainer.Controls.Add(ctrl); |
((Label)ctrl.FindControl("lblQuoteID")).Text = e.Value; |
} |
protected void Review_RadGrid_ItemDataBound(object sender, GridItemEventArgs e) |
{ |
if (e.Item is GridDataItem) |
{ |
Review_RadToolTipManager.TargetControls.Add(e.Item.ClientID, ((DataRowView)e.Item.DataItem)["QuoteID"].ToString(), true); |
} |
} |
However, when I filter the grid or group it the values won't update on the rows. Do I need to rebind the grid on any function that would change row order of quote ids?