RadFileExplorer in FieldControl

Posted by Community Admin on 04-Aug-2018 01:23

RadFileExplorer in FieldControl

All Replies

Posted by Community Admin on 08-Mar-2012 00:00

Hi all! I'm trying to create a custom module with a video uploader to my client's server for various formats (i.e. swf) that I don't want stored in the Document/Image libraries because I want to preserve the physical filename and I don't want to store it in the database (the flash player we're using needs a physical url to the file in .swf format, when using Sitefinity's filesystem storage instead of database storage the uploaded filename gets turned into a Guid with no extension), so I've derived a new FieldControl for my module video item creation. I'm having issues though on the module page with it trying to do a callback from my RadFileExplorer and coming back with an error that it can't find the target. I'm assuming the control is being added too late in the page's life cycle* and the control ID is lost in the process when the RadFileExplorer tries to do its postback. Any ideas on how I can get around this? (Error message is attached as image.)

*i.e. I'm guessing that the module pages add in their respective CompositeControls during the rendering phase of the life cycle after postback event handling so it can't find the target ID for my control when the RadFileExplorer does the Ajax callback. I've tried as well overriding the OnInit and loading in the template for the control to the page but it throws an exception that I'm not allowed to do that during Init/DataBind/Load.

From the definitions file:

var field2 = new TextFieldDefinitionElement(mainSection.Fields)
    ID = "field2",
    DataFieldName = "VideoFile",
    DisplayMode = displayMode,
    Title = "Video File",
    CssClass = "sfTitleField",
    WrapperTag = HtmlTextWriterTag.Li,
    FieldType = typeof(UploadSWFControl)
 
;
field2.ValidatorConfig = new ValidatorDefinitionElement(field2)
    Required = true,
    MessageCssClass = "sfError",
    RequiredViolationMessage = "Video File is required"
;
mainSection.Fields.Add(field2);

(VideoFile is a string to the path on the server selected from the RadFileExplorer)

My control file (I'm just including the highlights here):
namespace VideoModule.Controls
    public class UploadSWFControl : FieldControl
    
        public UploadSWFControl()
        
            this.LayoutTemplatePath = "~/VideoTemplates/VideoModule.Controls.UploadSWFControl.ascx";
        
...
protected internal virtual RadFileExplorer ExplorerControl
    get
    
        return this.Container.GetControl<RadFileExplorer>("uploadSWFExplorer", true);
    
...
public override IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors()
    List<ScriptDescriptor> list = new List<ScriptDescriptor>();
    ScriptControlDescriptor item = (ScriptControlDescriptor)base.GetScriptDescriptors().Last<ScriptDescriptor>();
    item.AddComponentProperty("uploadControl", this.ExplorerControl.ClientID);
    item.AddElementProperty("textControl", this.ValueTextBox.ClientID);
    list.Add(item);
    return list;
 
public override IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences()
    string fullName = typeof(VideoItemControl).Assembly.FullName;
    List<ScriptReference> list = new List<ScriptReference>(base.GetScriptReferences())
    
        new ScriptReference("VideoModule.Controls.UploadSWFControl.js", fullName),
        new ScriptReference("Telerik.Sitefinity.Resources.Scripts.jquery-ui-1.8.8.custom.min.js", typeof(DateField).Assembly.FullName)
    ;
    return list.ToArray();

(and so on...)

My template file:
<%@ Control Language="C#" %>
<%@ Register Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" TagPrefix="sf" %>
<%@ Register Namespace="Telerik.Sitefinity.Web.UI" Assembly="Telerik.Sitefinity" TagPrefix="sf2" %>
<%@ Register tagPrefix="sitefinity" namespace="Telerik.Sitefinity.Web.UI.Fields" assembly="Telerik.Sitefinity" %>
 
<sitefinity:FormManager ID="formManagerSWF" runat="server" />
<sf2:SitefinityLabel id="titleLabel" runat="server" WrapperTagName="div" HideIfNoText="false" CssClass="sfTxtLbl" AssoicatedControlID="valueTextBox" />
<sf:RadFileExplorer ID="uploadSWFExplorer" runat="server" InitialPath="/" EnableCopy="false" EnableOpenFile="false" Width="520px" RegisterWithScriptManager="true" EnableViewState="false" >
    <Configuration ViewPaths="/" DeletePaths="/" UploadPaths="/" SearchPatterns="*.swf"  MaxUploadFileSize="100000000" />
</sf:RadFileExplorer>
<asp:TextBox ID="valueTextBox" runat="server" style="width:520px; margin-top:10px; "></asp:TextBox>

This thread is closed