Hello all,
I have been trying to figure this out and I can't seem to find any documentation on it, and any functions that might just do what I need to accomplish it client side.
scenario: I have a grid bound through a web service, works great!
in my grid I have a GridTemplateColumn
| <telerik:GridTemplateColumn HeaderText="Claiming" UniqueName="AmountToClaim"> |
| <ItemStyle CssClass="EclaimClaimAmount" /> |
| <HeaderStyle Width="75px" HorizontalAlign="center" /> |
| <ItemTemplate> |
| <asp:TextBox ID="Step3TitlesClaimAmountTextBox" EnableViewState="false" onKeyDown="return OnlyAllowNumbers(this);" |
| runat="Server" CssClass="standardTextBoxClaimedAmount" onfocus="CalculateTotals('standardTextBoxClaimedAmount', 'textBoxStandardClaimedFooter')" |
| onblur="CalculateTotals('standardTextBoxClaimedAmount', 'textBoxStandardClaimedFooter'); CheckBalance();"></asp:TextBox> |
| </ItemTemplate> |
| <FooterTemplate> |
| <span style="color: Yellow; font-weight: 600;">Total: </span> |
| <asp:TextBox ID="Step3TitlesClaimAmountFooterTextBox" EnableViewState="false" runat="server" |
| CssClass="textBoxStandardClaimedFooter" BorderStyle="none" BackColor="#0075BD" |
| ForeColor="white" Font-Bold="true"> |
| </asp:TextBox> |
| </FooterTemplate> |
| </telerik:GridTemplateColumn> |
this is the javascript function I've come up with so far
| function ValidateMoney() { |
| var grid = $find("<%=Step3TitlesRadGrid.ClientID%>"); |
| var tableView = grid.get_masterTableView(); |
| var items = tableView.get_dataItems(); |
| for(var i = 0; i<items.length; i++){ |
| var rowValues = items[i].get_dataItem(); |
| if(rowValues.ApprovedAmount < ??how to get the text vale?? ){ |
| } |
| } |
| } |
using javascript how would I loop through rows in this grid and get the value of each Step3TitlesClaimAmountTextBox
Any help or pointers would be greatly appreciated
Thank you,
Josh