Hi guys,
That's the code, including the button wich start the action. Obviously the explorer.aspx exists, almost identical as in example.
Not possible this time, function only for editor(I think). I need to transmit back to my first rad window the data from file explorer.
This is my problem: i have a parent page, from whom I open an rad window, via an rad window manager( window.radopen("Something.aspx, "AdvancedForm");). All perfect until now! But, after that , from that radwindow I have to open an other rad window(modal or not) actually is an fileexplorer exactlly like in this example:http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/fileselectordialog/defaultvb.aspx. When I work in Chrome or Firefox...everything is peachy, but in IE I cannot see the rad window. It is opened, I see that in debugger, but it is not visible.
| <telerik:RadWindow runat="server" Width="800px" Height="600px" |
| NavigateUrl="Explorer.aspx" ID="ExplorerWindow" |
| Behaviors="Resize, Close, Move" AutoSize="True" ClientIDMode="AutoID" |
| Behavior="Resize, Close, Move" |
| style="POSITION: absolute; visibility: visible; overflow: visible; z-index: 10000000;" |
| InitialBehavior="None"> |
| </telerik:RadWindow> |
| function OpenFileExplorerDialog() { |
| var wnd = $find("<%= ExplorerWindow.ClientID %>"); |
| wnd.Show(); |
| } |
| <asp:Button ID="selectFile" OnClientClick="OpenFileExplorerDialog(); return false;" |
| Text="Open... " runat="server" type="submit" /> |
I had the same problem with the imagemanager from radeditor, but i solved with :
| function OnClientLoad(editor) { |
| editor.set_useClassicDialogs(true); |
| } |
Please help me, if you can!!
Best regards,
Moroianu George