or
I have this because when the tab's grid is sorted, I have to clear the target controls lest they maintain the wrong data. At least that is the solution I came up with.
So, now I may pose the question, is my solution above (maintain tooltip integrity on a grid sort) the right one? If not, I could remove it ( thus solving my current problem) and implement it the correct way.
Thanks for any info.
<asp:ObjectDataSource ID="DS" runat="server" EnablePaging="True" SelectCountMethod="GetListCount"<br> SelectMethod="GetList" SortParameterName="sortType" TypeName="...."><br></asp:ObjectDataSource><telerik:RadChart ID="RadChart1" runat="server" DataSourceID="edsTotalStakesForEachShop" IntelligentLabelsEnabled="true"> <Series> <telerik:ChartSeries Name="Series 2" DataXColumn="ShopId" DataYColumn="TotalStakes"> </telerik:ChartSeries> </Series> <PlotArea> <XAxis AutoScale="False" DataLabelsColumn="Name" MaxValue="7" MinValue="1" Step="1" > <AxisLabel> <Appearance> </Appearance> </AxisLabel> <Appearance> <LabelAppearance RotationAngle="90"> </LabelAppearance> </Appearance> </XAxis> </PlotArea></telerik:RadChart><telerik:RadChart ID="RadChart1" runat="server" DataSourceID="edsTotalStakesForEachShop" IntelligentLabelsEnabled="true"> <Series> <telerik:ChartSeries Name="Series 2" DataXColumn="ShopId" DataYColumn="TotalStakes"> </telerik:ChartSeries> </Series> <PlotArea> <%--<XAxis AutoScale="False" DataLabelsColumn="Name" MaxValue="7" MinValue="1" Step="1" > <AxisLabel> <Appearance> </Appearance> </AxisLabel> <Appearance> <LabelAppearance RotationAngle="90"> </LabelAppearance> </Appearance> </XAxis>--%> </PlotArea></telerik:RadChart><telerik:RadMaskedTextBox ID="sesTotalTime" Label="Total Time:" runat="server" Text="<%# Bind('sesTotalTimeFormatted') %>" ToolTip="Total Session Time (hh:mm:ss)" Mask="##:##:##"></telerik:RadMaskedTextBox>