I have column:
And I want to update each label in this column from JavaScript function.
For example, event onkeyup for some textbox outside the Grid.
After enter some value, all values in column Profit is changing.
How can I get this in Javascript and iterate through all cells in "Profit" column?
<telerik:GridTemplateColumn HeaderText="Profit"><ItemTemplate> |
<asp:Label ID="profit" runat="server"></asp:Label></ItemTemplate> |
</telerik:GridTemplateColumn> |
And I want to update each label in this column from JavaScript function.
For example, event onkeyup for some textbox outside the Grid.
After enter some value, all values in column Profit is changing.
How can I get this in Javascript and iterate through all cells in "Profit" column?