I have an asp.net page that has
it will open a RadFileExplorer. I ahve the code set up to not open the file, but whn they double click the file I want it to select the file, close the radwindow and update the textbox on the parent page.
How can I do this?
| <telerik:RadWindow runat="server" Width="700px" Height="560px" VisibleStatusbar="false" |
| NavigateUrl="Explorer.aspx" ID="ExplorerWindow" Modal="true" Behaviors="Close,Move" > |
| </telerik:RadWindow> |
| function OpenFileExplorerDialog() |
| { |
| var wnd = $find("<%= ExplorerWindow.ClientID %>"); |
| wnd.show(); |
| } |
| <asp:TextBox ID="fileName" runat="server" Width="250px"></asp:TextBox> |
How can I do this?