| <form id="form1" runat="server"> |
| <div> |
| <asp:ScriptManager ID="sc" runat="server"> |
| </asp:ScriptManager> |
| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="true" OnNeedDataSource="uxShoppingCart_NeedDataSource"> |
| <AlternatingItemStyle BackColor="White" /> |
| </telerik:RadGrid> |
| </div> |
| </form> |
Hi,
I've been trying to programmatically change the upload path for the editor based on a project_ID field which I'm pulling from the querystring. For some reason, when I try to do this and try to use the Document Manager in the RadEditor, after an upload is completed, the document manager doesnt seem to refresh correctly and all I see is the folder path but no contents. I have to literally double click on the up arrow to go up one directory and then back into the original directory to see the refreshed file contents.
Below is my the vb.net code on the code behind for the page that holds the radEditor:
Dim
uploadDocuments As String() = New String() {"~\uploads\" & project_ID & "\docs"}
RadProjectDescription.DocumentManager.UploadPaths = uploadDocuments
RadProjectDescription.DocumentManager.ViewPaths = uploadDocuments
RadProjectDescription.DocumentManager.DeletePaths = uploadDocuments
uploadDocuments =
New String() {"~\uploads\" & project_ID & "\media"}
RadProjectDescription.MediaManager.UploadPaths = uploadDocuments
RadProjectDescription.MediaManager.ViewPaths = uploadDocuments
RadProjectDescription.MediaManager.DeletePaths = uploadDocuments
It seems to refresh fine when I use a static path for the uploads. It must be something I'm doing wrong. Any help would be appreciated.

| <asp:ScriptManager id="ScriptManager" runat="server"/> |
| <asp:UpdatePanel id="UpdatePanel1" runat="server"> |
| <ContentTemplate> |
| <div class="bigModule"> |
| <div class="bigModuleBottom"> |
| <table width="100%"> |
| <tr> |
| <td valign="top" class="text"> |
| Choose tools file: |
| <asp:radiobuttonlist repeatdirection="Horizontal" cellpadding="0" cellspacing="0" |
| OnSelectedIndexChanged="RadioButtonListDictionaryMode_SelectedIndexChanged" |
| cssclass="text" id="RadioButtonListDictionaryMode" |
| runat="server" autopostback="True"> |
| <asp:listitem value="SingleDictionary" selected="True">Single Dictionary</asp:listitem> |
| <asp:listitem value="MultipleDictionaries">Multiple Dictionaries</asp:listitem> |
| </asp:radiobuttonlist> |
| </td> |
| </tr> |
| </table> |
| </div></div> |
| <telerik:radeditor runat="server" ID="RadEditor1" SkinID="BasicSetOfTools" Height="400px"> |
| <Content> |
| <img alt="product logo" src="../../Img/productLogoLight.gif" />is the successor of the well known industry standard Editor for ASP.NET. The tight integration with ASP.NET AJAX and the powerful new capabilities make Telerik's WYSIWYG Editor a flexible and lightweight component, turning it into the fastest loading Web Editor. Among the hottest features are: |
| <ul> |
| <li><em>Single-file, drag-and-drop deployment</em></li> |
| <li><em>Built on top of ASP.NET AJAX</em></li> |
| <li><em>Unmatched loading speed with new semantic rendering </em></li> |
| <li><em>Full keyboard accessibility</em></li> |
| <li><em>Flexible Skinning mechanism</em></li> |
| <li><em>Simplified and intuitive toolbar configuration</em></li> |
| <li><em>Out-of-the-box XHTML-enabled output</em></li> |
| </ul> |
| </Content> |
| </telerik:radeditor> |
| </ContentTemplate> |
| </asp:UpdatePanel> |


Hi,
When im adding an image that is bigger then the editor's content frame and then clicking on the image,
the image boundaries are seen outside the editor's content frame.
Is there a fix for that or some workaround to avoid this?
Thanks in advanced

function
HideToolTip() {
var tooltip = Telerik.Web.UI.RadToolTip.getCurrent();
if (tooltip)
{
tooltip.hide();
}
}