c# - RadGrid Countdown Clock in Template Column -
i have telerik radgrid bound sqldatasource (items databound), in 1 of data bound columns there value of type datetime format h:mm:ss {0:h:mm:ss} . added template column shows "time left" so: start time - = time left i wanted ajaxified added timer , label inside updatepanel in template column - every tick (1000ms) recalculate time left . this seems work first row in radgrid here code snippets asp <telerik:gridtemplatecolumn filtercontrolalttext="filter templatecolumn column" uniquename="templatecolumn" headertext="starting in"> <itemtemplate> <contenttemplate> <asp:updatepanel id="updatepanel1" runat="server"> <contenttemplate> <asp:label id="lbltime" runat="server" text="00:00:00"></asp:label> <asp:timer id="timer1" runat="server" interval="1000...