Skip to main content

Sitefinity - Custom Image selector - Azure Player Dynamic Image selector.

Well,

I am writing this post after a really long gap of time, I was away from my blog due to some personal reason and aggressive deadlines for my project, so today I thought of writing a blog about my experience with sitefinity, (http://www.sitefinity.com/) which is Content Management System aka CMS from a very famous IT firm Telerik.

The CMS is purely on HTML and has its own pros and cons, it doesn't have any custom widgets available and you have to design most of them.

So while developing my client website for it I found issues about the CMS shortcoming and lack of documentation, basically lack of documentation is the major problem with this CMS.

So we had a requirement, we need to show the AES encrypted adaptive bit rate video to the user, we were using azure services for this, but the major requirement is that we were using a CMS and we need to make everything dynamic i.e. Business User editable and a drag and drop widget, which includes:
  1. Video URL.
  2. Video Title.
  3. Video Description.
  4. Video Poster Image.
The top three are easily doable and we did it in a record week time including testing, but the last point  almost took our life away from us.

So below is a what we did, have a look at it and it may help you to create a custom image selector as well.
Enjoy.

Public properties in our .cs file:

              public string Title { get; set; }
              public string VideoURL { get; set; }
              public string Description { get; set; }
              public string ImageSelector { get; set; }


CS code in our Designer File for implementation:

/// <summary>
        /// Gets a collection of script descriptors that represent ECMAScript (JavaScript) client components.
        /// </summary>
        public override System.Collections.Generic.IEnumerable<System.Web.UI.ScriptDescriptor> GetScriptDescriptors()
        {
            var scriptDescriptors = new List<ScriptDescriptor>(base.GetScriptDescriptors());
            var descriptor = (ScriptControlDescriptor)scriptDescriptors.Last();
            descriptor.AddElementProperty("title", Title.ClientID);
            descriptor.AddElementProperty("description", Description.ClientID);
            descriptor.AddElementProperty("videoURL", VideoURL.ClientID);
            descriptor.AddComponentProperty("ImageSelector", ImageSelector.ClientID);
            return scriptDescriptors;
        }


ASCX Code for our Designer (widget) image selector:

        <li class="sfFormCtrl">
            <asp:Label runat="server" AssociatedControlID="ImageSelector" CssClass="sfTxtLbl">Poster</asp:Label>
            <sitefinity:ImageField ID="ImageSelector" runat="server" DisplayMode="Write" UploadMode="Dialog" DataFieldName="Image" />
            <div class="sfExample">Poster Image URL of video</div>
        </li>

JS Code for our Designer file:

Add this line of code in initialization block created in widget:
       this._ImageSelector = null;

Add this line of code in refresh UI block:
this.get_ImageSelector()._imageElement.src = controlData.ImageSelector;

Add this line of code in apply changes block:
              controlData.ImageSelector = this.get_ImageSelector()._selectedImageItem ? this.get_ImageSelector()._selectedImageItem.Url : controlData.ImageSelector;

And the following changes at last part of JS below changes.

       /*ImageSelector Properties*/
       get_ImageSelector: function () { return this._ImageSelector; },
       set_ImageSelector: function (value) { this._ImageSelector = value; },


Enjoy the dynamic Image selector like below:
























I will also write next about how to consume the URLS in it in front end using the JS and .Net capabilities.


Thanks
Harshit aka parshii


Comments

Popular posts from this blog

Convert your datatable into generic poco object in c# using linq, ado and reflections.

Follow @harshit_parshii The most common problem that we face these days is to create a common class and method that can be used across all the projects and codes. So today I will be sharing my code where you can see how to make and create a generic function without using entity framework for ado. net. The scenario is like you have an old software that uses stored procedure to return set of entities as a data-table, you do not want to re-write the back-end code as you are creating a web API in c# which needs to be delivered asap. You need to map these data tables to models as you might be using MV* pattern. So here we will be doing one to one mapping of model to data- table, and in similar fashion insert or update can also be done. So basically we are converting a data-table to list of strongly typed object model to do CRUD operations. So we have following things before hand. A helper class is referenced as the database(dbFactory) which executes ado. ne...

Send a Fax in windows using faxcomexlib and TAPI in VB code .Net

An application that provides sending fax from faxmodem, connected to the computer, will be explained in the following post.  We can use Telephony Application Programming Interface (TAPI) and the Fax Service Extended Component Object Model (COM) API to send fax. The fax service is a Telephony Application Programming Interface (TAPI)-compliant system service that allows users on a network to send and receive faxes from their desktop applications. The service is available on computers that are running Windows 2000 and later. The fax service provides the following features: Transmitting faxes Receiving faxes Flexible routing of inbound faxes Outbound routing Outgoing fax priorities Archiving sent and received faxes Server and device configuration management Client use of server devices for sending and receiving faxes Event logging Activity logging Delivery receipts Security permissions The following Microsoft Visual Basic code example sends a fax. Note that...

DTMF (Mobile) based speed control of AC motor.

Introduction: With the advancement of ages from prehistoric to present day scenario our life has become more sophisticated and busy, so to ease the schedule of this busy life, technology has play the vital role in it and for its proper running of machine the technology has gone further by providing digitization of analog machinery and its use is enhanced day by day. This project is based on the same concept by wireless controlling the machinery through mobile system anywhere from the world. This project aims at Speed Control of AC motor using DTMF method; DTMF stands for dual tone multiple frequencies . The main idea of this project is to control the speed of an AC motor by wireless communication using DTMF decoder technique aiming at the fine use of mobile technology in our day to day use of automated products. Mobile phones have different frequencies for each number printed on it. These numbers when pressed during call duration produces a tone of certain frequency. This frequ...