Hi,
I am new to telerik controls
scenario
I am using formtemplate under editformsetting to generate the fields for insert and updating the records in grid. Alongside the textbox I have customized browse button in which end user select his choice of product and when he hits on complete button of popup, the item selected from the pop up grid should be displayed in the textbox.
I am unable to assign the value to textbox on close of the window(using AJAX update) as I am not able to get the ID of the same.
Thanks
I am new to telerik controls
scenario
I am using formtemplate under editformsetting to generate the fields for insert and updating the records in grid. Alongside the textbox I have customized browse button in which end user select his choice of product and when he hits on complete button of popup, the item selected from the pop up grid should be displayed in the textbox.
I am unable to assign the value to textbox on close of the window(using AJAX update) as I am not able to get the ID of the same.
<
td
width
=
"10%"
>
<
asp:TextBox
ID
=
"ProductID"
MaxLength
=
"7"
Width
=
"200 px"
Visible='<% # (Container as GridItem).OwnerTableView.IsItemInserted %>' runat="server">
</
asp:TextBox
>
</
td
>
<
td
width
=
"75%"
>
<
asp:Button
ID
=
"btnBrowse"
runat
=
"server"
Text
=
"..."
OnClientClick
=
"popUp('SelectProduct');return false;"
/>
</
td
>
Thanks