Hi,
Please excuse the level I'm posting in these forums at, I'm rather new to asp.net let alone telerik controls.
Basically, I have created a radgrid, in this radgrid is the following column template:
[code]
<telerik:GridTemplateColumn UniqueName="completedDateTime" HeaderText="Completed Date & Time">
<ItemStyle HorizontalAlign="Center" />
<ItemTemplate>
<asp:Label ID="lblCompletedDateTime" runat="server"></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
[/code]
What I want to do basically is onrowselect - read the TEXT property of lblCompletedDateTime in javascript.
I usually refer to the clientid or the rendered id of the label (using $find) but I obviously need to identify it per row which is where I'm stuck.
Thanks a lot!!
Dan
p.s. Sorry about the code there!? Thought they were the code tags.
Please excuse the level I'm posting in these forums at, I'm rather new to asp.net let alone telerik controls.
Basically, I have created a radgrid, in this radgrid is the following column template:
[code]
<telerik:GridTemplateColumn UniqueName="completedDateTime" HeaderText="Completed Date & Time">
<ItemStyle HorizontalAlign="Center" />
<ItemTemplate>
<asp:Label ID="lblCompletedDateTime" runat="server"></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
[/code]
What I want to do basically is onrowselect - read the TEXT property of lblCompletedDateTime in javascript.
I usually refer to the clientid or the rendered id of the label (using $find) but I obviously need to identify it per row which is where I'm stuck.
Thanks a lot!!
Dan
p.s. Sorry about the code there!? Thought they were the code tags.