<
add assembly="Telerik.Web.UI, Version=2008.3.1314.35, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/>
i have a telerik radEditor, in radeditor in toolbox there is a tab "image manager" for upload images,
so problem is that , i want when i click on "image manager" then it upload imges like "file upload control" upload images from anywhere from system, currently it upload image from a fixed path.
any help please
urgent.

<CommandItemTemplate>
<div id="DivUA" runat="server" style="padding-top: 5px; padding-bottom: 5px">
<table>
<tr>
<td>
<asp:Button runat="server" ID="btnUA" Text="Save" ToolTip="Save all changes you've made to the data"
Width="70px" CommandName="UpdateAll" CssClass="CommandButton" />
</td>
</tr>
</table>
</div>
</CommandItemTemplate>
<
telerik:RadAjaxManager ID="ram1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="btnUA">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rgT" LoadingPanelID="loader1"></telerik:AjaxUpdatedControl>
<telerik:AjaxUpdatedControl ControlID="lblrgTLoad" LoadingPanelID="loader1"></telerik:AjaxUpdatedControl>
<telerik:AjaxUpdatedControl ControlID="lblUpdMsg"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>
</
telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="loader1" runat="server" Height="75px" radcontrolsdir="../RadControls/"
Width="75px">
<img alt="Processing..." src="../RadControls/Ajax/Skins/Default/loading6.gif" style="background-color: Transparent" />
</telerik:RadAjaxLoadingPanel>
All,
I am using the scheduler component which works fine in my development environment, but when I bring the project to the production environment the component will not render properly
Any thoughts
Scott
I just recently upgraded to Visual Studio 2008 Professional and installed the RadControls for ASP.NET AJAX product suite (RadControls_for_ASP.NET_AJAX_2008_3_1314_dev.exe). All is well except that when I create a new VS2008 ASP.NET website project, the toolbox has a tab labeled “RadControls for ASPNET AJAX Q3 2008” and lists all the individual controls. The problem is that all the controls on this tab are grayed-out and cannot be dragged to a aspx page to begin using the controls.
I have attempted several things to see if I could fix this issue without any success. Here is what I have tried.
1. I ran the “ToolBoxInstaller.exe” program that is included in the RadControls install…no change.
2. I added a reference to the “Telerik.Web.UI.dll” in the project references…no change.
3. I manually added the controls to the ToolBox by browsing to the “Telerik.Web.UI.dll” in the Bin35 folder…no change.
I am at a loss as to what is causing this issue. Any guidance would be appreciated.
| function ShowTab(tabText, tabId, tabType) |
| { |
| // See if the specified tab already exists. |
| var tab = GetTab(tabId); |
| if (!tab) |
| { |
| // Tab doesn't exist, create a new one. |
| tab = new Telerik.Web.UI.RadTab(); |
| tab.set_value(tabId); |
| // Add the new tab to the tab strip. |
| var tabstrip = Main_GetTabStrip(); |
| tabstrip.get_tabs().add(tab); |
| } |
| // Set the tab text (title). |
| tab.set_text(tabText); |
| // "refresh" determines whether the tab contents must be refreshed. |
| // (e.g. new contents for an existing tab) |
| var refresh = false; |
| // See if the page view already exists. |
| var page = GetPageView(tabId); |
| if (!page) |
| { |
| // Page view doesn't exist for this tab, create a new one. |
| page = new Telerik.Web.UI.RadPageView(); |
| page.set_id(tabId); |
| // Add the new page view to the multi-page. |
| var multipage = Main_GetMainMultiPage(); |
| multipage.get_pageViews().add(page); |
| // Create a hidden field inside the page view to hold the "TabType". |
| // Also, add an iframe to the page view. This iframe is where the |
| // tab contents will appear. |
| var dom = page.get_element(); |
| dom.innerHTML = '<input id="'+tabId+'_TabType" type="hidden" value="'+tabType+'" /><iframe id="'+tabId+'_iframe" src="#" style="border: 0; margin: 0; padding: 0; width: 100%; height: 100%;" frameborder="0" height="100%" width="100%" />'; |
| // Since this is a new page view, the contents should be refreshed. |
| refresh = true; |
| } |
| else |
| { |
| // Page already exists. See if we need to refresh the contents. |
| var x = document.getElementById(tabId+'_TabType'); |
| if (x.value != tabType) |
| { |
| // The TabType of the existing tab doesn't match the tabType |
| // passed in to this function. That means that the same tab |
| // is being used for different content, so we need to "refresh" |
| // the tab contents. |
| refresh = true; |
| x.value = tabType; |
| } |
| } |
| // Make this tab the "selected" tab. Since the page view Id matches the |
| // tab Id, this also makes the associated page view visible. |
| tab.select(); |
| if (refresh) |
| // Call a web service to get the tab contents. |
| IME.GetTabInformation(tabText, tabId, tabType, ShowTabComplete); |
| } |
| function ShowTabComplete(results) |
| { |
| // Find the tab based on the TabId. |
| var tab = GetTab(results.TabId); |
| // The web service results may want to change |
| // the tab text (title). |
| tab.set_text(results.TabText); |
| // Get the iframe for this tab. |
| var ifrm = document.getElementById(results.TabId+'_iframe'); |
| // The web service tells us the URL of the tab contents. |
| ifrm.src = results.Url; |
| } |