Hi,
I am using a telerik grid in which I have a NestedViewTemplate
In that I have a file upload control.
I just want to get the upload Control ID and the filename that is being uploaded once the "Upload" button is clicked.
How can I get it?
Under which event I can get it?
Here is my sample code:
<telerik:RadGrid ID="radgrdFiles" runat="server"....>
<MasterTableView>
<NestedViewTemplate>
<asp:ImageButton ID="imgbtnUpload" runat="server" CommandName="Upload"onclick="imgbtnUpload_Click">
</NestedViewTemplate>
</MasterTableView>
<Columns>
....
</Columns>
</telerik:RadGrid>
I m not able to get it in button_Click event.
Thanks in advance...
I am using a telerik grid in which I have a NestedViewTemplate
In that I have a file upload control.
I just want to get the upload Control ID and the filename that is being uploaded once the "Upload" button is clicked.
How can I get it?
Under which event I can get it?
Here is my sample code:
<telerik:RadGrid ID="radgrdFiles" runat="server"....>
<MasterTableView>
<NestedViewTemplate>
<asp:FileUpload ID="UploadFile" runat="server"> |
</NestedViewTemplate>
</MasterTableView>
<Columns>
....
</Columns>
</telerik:RadGrid>
I m not able to get it in button_Click event.
Thanks in advance...