I have a gridtemplate column, like so:
During the course of my radGridTimeCard_ItemDataBound sub, I have logic that will select the proper value to be displayed in the label (which is now displaying "temp"). But I just can't seem to figure out how to access that label's text property programatically.
Help??
<telerik:GridTemplateColumn UniqueName="colClockInToShow" HeaderStyle-Width="45px"> |
<HeaderTemplate> |
<asp:Label ID="lblClockInHeader">Clock In</asp:Label> |
</HeaderTemplate> |
<ItemTemplate> |
<asp:Label ID="lblClockInData" Text="temp" /> |
</ItemTemplate> |
</telerik:GridTemplateColumn> |
During the course of my radGridTimeCard_ItemDataBound sub, I have logic that will select the proper value to be displayed in the label (which is now displaying "temp"). But I just can't seem to figure out how to access that label's text property programatically.
Help??