Hello,
I have a telerik grid on my page that is populated using using textboxes in a template setup.
See code bleow:
<telerik:GridTemplateColumn HeaderText="Cash On Hand" UniqueName="cashonhand2">
<ItemTemplate>
<telerik:RadTextBox runat="server" ID ="txtTemplateCashOnHand" Text = ''></telerik:RadTextBox>
</ItemTemplate>
</telerik:GridTemplateColumn>
ISSUE:
From the code behind in the grid_ItemDataBound event handler, I want to access each textbox(there are 5 in a Row) and write data to the
txtTemplateCashOnHand control.
Any assistance will be highly appreciated.
Thank you.