Click here to Skip to main content
15,897,891 members
Articles / Web Development / ASP.NET

Improving ASP.NET MVC MUSIC STORE more usability with DotNetAge in 30 minutes

Rate me:
Please Sign up or sign in to vote.
4.87/5 (12 votes)
23 Nov 2010GPL38 min read 83.4K   5.5K   32  
Using the DotNetAge to upgrade the ASP.NET Mvc Music Store add widgets and security features just in minutes.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>DNA.Mvc.jQuery</name>
    </assembly>
    <members>
        <member name="T:DNA.Mvc.jQuery.ToolbarIconButton">
            <summary>
            Define the toolbar button that just display as icon
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ToolbarItem">
            <summary>
            The base class of the toolbar items
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarItem.Parent">
            <summary>
            Gets/Sets the parent toolpane that contains this ToolbarItem
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarItem.Name">
            <summary>
            Gets/Sets the name of the ToolbarItem
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.jQueryExtensions">
            <summary>
            Represents support for rendering html controls,jQuery scripts for jQuery or jQuery CSS Framework in view
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.jQuery(System.Web.Mvc.AjaxHelper,System.String,System.String)">
            <summary>
            Register the jquery plugin scripts to start up script event.
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="selector">Specified the jQuery object selector</param>
            <param name="pluginName">Specified the jQuery pluginName name.</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.jQuery(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object)">
            <summary>
            Add the jQuery scripts to start up script event
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="selector">Specified the jQuery object selector</param>
            <param name="pluginName">Specified the jQuery pluginName name.</param>
            <param name="options">Specified the initial options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.RegisterStartupScript(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Register the jQuery script to client page load event.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="script">The client script to register.</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Tabs(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Register the jQuery UI Tabs plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Tabs(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.TabsOptions)">
            <summary>
            Register the jQuery UI Tabs plugin script
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options"></param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Accordion(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
             Register the jQuery UI Accordion plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Accordion(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.AccordionOptions)">
            <summary>
             Register the jQuery UI Accordion plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options">The accordion options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Dialog(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Boolean)">
            <summary>
            Show the simple dialog when the trigger element click.
            </summary>
            <param name="helpler">The ajax helper object</param>
            <param name="triggerID">The trigger element id.</param>
            <param name="title">Specified the title of the dialog.</param>
            <param name="message">Specified the message shows on the dialog.</param>
            <returns>The dialog html result.</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Dialog(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.DomEvents,System.String,System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
            Create the dialog Html element and register the jQuery dialog scripts.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="triggerID">Specified which element should show the dialog.</param>
            <param name="triggerEvent">Specified which event of the element should trigger the dialog</param>
            <param name="title">Specified the title of the dialog.</param>
            <param name="body">Specified the dialog body text or html</param>
            <param name="okText">Specified the dialog OK button text.</param>
            <param name="cancelText">Specified the dialog Cancel button text.</param>
            <param name="okScript">Scpified the client scripts when the OK button click.</param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Dialog(System.Web.Mvc.AjaxHelper,System.String,System.String,DNA.Mvc.DomEvents,DNA.Mvc.jQuery.DialogOptions)">
            <summary>
            Register the jQuery UI Dialog plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="dialogElementID">Specified the dialog body element id</param>
            <param name="triggerID">Specified the element to trigger the dialog.</param>
            <param name="triggerEvent">Specified which event of the element should trigger the dialog</param>
            <param name="options">The dialog options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.DatePicker(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Returns the jQuery UI datePicker tag
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">The name of the datepicker</param>
            <returns>The html tag of the datepicker</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.DatePicker(System.Web.Mvc.AjaxHelper,System.String,System.DateTime)">
            <summary>
            Returns the jQuery UI DatePicker tag and register the jQuery script.
            </summary>
            <param name="helper">The ajax helper objec.t</param>
            <param name="name">The name of the datepicker</param>
            <param name="value">The init value of the datepicker.</param>
            <returns>The html tag of the datepicker</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Sortable(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.SortableOptions)">
            <summary>
            Register the jQuery UI Sortable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options">The sortable options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Sortable(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
             Register the jQuery UI Sortable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Draggable(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Register the jQuery UI Draggable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Draggable(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.DraggableOptions)">
            <summary>
            Register the jQuery UI Draggable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options">The draggable options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Droppable(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.DroppableOptions)">
            <summary>
            Register the jQuery UI Droppable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options">The draggable options object</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Droppable(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Register the jQuery UI Droppable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Resizable(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
             Register the jQuery UI Resizable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.Resizable(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.ResizableOptions)">
            <summary>
            Register the jQuery UI Resizable plugin script.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="targetSelector">The jQuery selector</param>
            <param name="options">The resizable options object.</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.GeneratejQueryAjaxScripts(System.Web.Mvc.AjaxHelper,DNA.Mvc.jQuery.jQueryAjaxOptions)">
            <summary>
            Returns the low level ajax scripts for jQuery
            </summary>
            <param name="helper"></param>
            <param name="options"></param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.jQueryAjax(System.Web.Mvc.AjaxHelper,DNA.Mvc.jQuery.jQueryAjaxOptions)">
            <summary>
            The low level ajax method to load a remote url using an HTTP request.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="options"></param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.GetJson(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.DomEvents,System.String,System.Object,System.String)">
            <summary>
            Load JSON data using an HTTP GET request.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="triggerID">Specified the element id to trigger the getJson method</param>
            <param name="triggerEvent">Specified the trigger event type of the element to invoke the getJson method</param>
            <param name="url">Specified the url to get.</param>
            <param name="routeData">Specified the data that will be send to the server.</param>
            <param name="clientCallback">Attach the function when the GetJson method callback</param>
            <remarks> you can load JSON data located on another domain.</remarks>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.GetScript(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.DomEvents,System.String,System.String)">
            <summary>
            Loads and executes a JavaScript file using an HTTP GET request.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="triggerID">Specified the element id to trigger the getScript method</param>
            <param name="triggerEvent">Specified the trigger event type of the element to invoke the getScript method</param>
            <param name="url">Sepcified the url to load the javascript file.</param>
            <param name="clientCallback">Attach the function when the GetScript method callback</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxComplete(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed whenever an AJAX request completes.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
            <remarks>the client callback function has 3 params
            <list>
            <item>event - the javascript event object</item>
            <item>XMLHttpRequest - The XMLHttpRequest and settings used for that request are passed as arguments to the callback</item>
            <item>ajaxOptions</item>
            </list>
            You can write the function body directily ,this methods will genernate the funcation scripts automatic.
            </remarks>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxError(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed whenever an AJAX request fails
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
            <remarks>the client callback function has 4 params
            <list>
            <item>event - the javascript event object</item>
            <item>XMLHttpRequest - The XMLHttpRequest and settings used for that request are passed as arguments to the callback</item>
            <item>ajaxOptions</item>
            <item>thrownError-an exception object, is passed if an exception occured while processing the request</item>
            </list>
            You can write the function body directily ,this methods will genernate the funcation scripts automatic.
            </remarks>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxSend(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed before an AJAX request is sent.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
            <remarks>the client callback function has 3 params
            <list>
            <item>event - the javascript event object</item>
            <item>XMLHttpRequest - The XMLHttpRequest and settings used for that request are passed as arguments to the callback</item>
            <item>ajaxOptions</item>
            </list>
            You can write the function body directily ,this methods will genernate the funcation scripts automatic.
            </remarks>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxStart(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed whenever an AJAX request begins and there is none already active.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxStop(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed whenever all AJAX requests have ended.
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.jQueryExtensions.OnAjaxSuccess(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Attach a function to be executed whenever an AJAX request completes successfully
            </summary>
            <param name="helper">The ajax helper object.</param>
            <param name="clientCallback">The client call back function to be attached.</param>
            <remarks>the client callback function has 3 params
            <list>
            <item>event - the javascript event object</item>
            <item>XMLHttpRequest - The XMLHttpRequest and settings used for that request are passed as arguments to the callback</item>
            <item>ajaxOptions</item>
            </list>
            You can write the function body directily ,this methods will genernate the funcation scripts automatic.
            </remarks>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Click">
            <summary>
            Fires when the user clicks the left mouse button on the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Abort">
            <summary>
            Fires when the user aborts the download of an image.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Active">
            <summary>
            Fires when the object is set as the active element.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.AfterPrint">
            <summary>
            Fires on the object immediately after its associated document prints or previews for printing.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.AfterUpdate">
            <summary>
            Fires on a databound object after successfully updating the associated data in the data source object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeActive">
            <summary>
            Fires immediately before the object is set as the active element.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeCopy">
            <summary>
            Fires on the source object before the selection is copied to the system clipboard.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeCut">
            <summary>
            Fires on the source object before the selection is deleted from the document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeDeactivate">
            <summary>
            Fires immediately before the activeElement is changed from the current object to another object in the parent document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeEditFocus">
            <summary>
            Fires before an object contained in an editable element enters a UI-activated state or when an editable container object is control selected.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforePaste">
            <summary>
            Fires on the target object before the selection is pasted from the system clipboard to the document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforePrint">
            <summary>
            Fires on the object before its associated document prints or previews for printing.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeUnload">
            <summary>
            Fires prior to a page being unloaded.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.BeforeUpdate">
            <summary>
            Fires on a databound object before updating the associated data in the data source object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Blur">
            <summary>
            Fires when the object loses the input focus.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Bounce">
            <summary>
            Fires when the behavior property of the marquee object is set to "alternate" and the contents of the marquee reach one side of the window.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.CellChange">
            <summary>
            Fires when data changes in the data provider.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ContextMenu">
            <summary>
            Fires when the user clicks the right mouse button in the client area, opening the context menu.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ContorlSelect">
            <summary>
            Fires when the user is about to make a control selection of the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Copy">
            <summary>
            Fires on the source element when the user copies the object or selection, adding it to the system clipboard.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Cut">
            <summary>
            Fires on the source element when the object or selection is removed from the document and added to the system clipboard.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Change">
            <summary>
            Fires when the contents of the object or selection have changed.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DblClick">
            <summary>
            Fires when the user double-clicks the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DataAvailable">
            <summary>
            Fires periodically as data arrives from data source objects that asynchronously transmit their data.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DateSetChanged">
            <summary>
            Fires when the data set exposed by a data source object changes.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Deactivate">
            <summary>
            Fires when the activeElement is changed from the current object to another object in the parent document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Drag">
            <summary>
            Fires on the source object continuously during a drag operation.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DragEnd">
            <summary>
            Fires on the source object when the user releases the mouse at the close of a drag operation.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DragEnter">
            <summary>
            Fires on the target element when the user drags the object to a valid drop target.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DragLeave">
            <summary>
            Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DragOver">
            <summary>
            Fires on the target element continuously while the user drags the object over a valid drop target.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.DragStart">
            <summary>
            Fires on the source object when the user starts to drag a text selection or selected object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Drop">
            <summary>
            Fires on the target object when the mouse button is released during a drag-and-drop operation.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ErrorUpdate">
            <summary>
            Fires on a databound object when an error occurs while updating the associated data in the data source object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Error">
            <summary>
            Raised when there is an error that prevents the completion of the cross-domain request.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.FilterChange">
            <summary>
            Fires when a visual filter changes state or completes a transition.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Finish">
            <summary>
            Fires when marquee looping is complete.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Focus">
            <summary>
            Fires when the object receives focus.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.FocusIn">
            <summary>
            Fires for an element just prior to setting focus on that element.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.FocusOut">
            <summary>
            Fires for the current element with focus immediately after moving focus to another element.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.HashChange">
            <summary>
            Raised when there are changes to the portion of a URL that follows the number sign (#).
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Help">
            <summary>
            Fires when the user presses the F1 key while the browser is the active window.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.KeyDown">
            <summary>
            Fires when the user presses a key.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.KeyPress">
            <summary>
            Fires when the user presses an alphanumeric key.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.KeyUp">
            <summary>
            Fires when the user releases a key.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Load">
            <summary>
            Raised when the object has been completely received from the server.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.LayoutComplete">
            <summary>
            Fires when the print or print preview layout process finishes filling the current LayoutRect object with content from the source document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.LoseCapture">
            <summary>
            Fires when the object loses the mouse capture.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Message">
            <summary>
            Fires when the user sends a cross-document message with postMessage.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseDown">
            <summary>
            Fires when the user clicks the object with either mouse button.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseUp">
            <summary>
            Fires when the user releases a mouse button while the mouse is over the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseOver">
            <summary>
            Fires when the user moves the mouse pointer into the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseMove">
            <summary>
            Fires when the user moves the mouse over the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseOut">
            <summary>
            Fires when the user moves the mouse pointer outside the boundaries of the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseLeave">
            <summary>
            Fires when the user moves the mouse pointer outside the boundaries of the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MouseWheel">
            <summary>
            Fires when the wheel button is rotated.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Move">
            <summary>
            Fires when the object moves.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MoveEnd">
            <summary>
            Fires when the object stops moving.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.MoveStart">
            <summary>
            Fires when the object starts to move.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Offline">
            <summary>
            Raised when Windows Internet Explorer is working offline.(IE Only)
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Online">
            <summary>
            Raised when Internet Explorer is working online.(IE Only)
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Paste">
            <summary>
            Fires on the target object when the user pastes data, transferring the data from the system clipboard to the document.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Progress">
            <summary>
            Raised when the browser starts receiving data from the server.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ProgressChange">
            <summary>
            Fires when a property changes on the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ReadStateChange">
            <summary>
            Sets or retrieves the event handler for asynchronous requests.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Reset">
            <summary>
            Fires when the user resets a form.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Resize">
            <summary>
            Fires when the size of the object is about to change.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ResizeEnd">
            <summary>
            Fires when the user finishes changing the dimensions of the object in a control selection.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.ResizeStart">
            <summary>
            Fires when the user begins to change the dimensions of the object in a control selection.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.RowEnter">
            <summary>
            Fires to indicate that the current row has changed in the data source and new data values are available on the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.RowExit">
            <summary>
            Fires just before the data source control changes the current row in the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.RowsDelete">
            <summary>
            Fires when rows are about to be deleted from the recordset.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.RowsInstered">
            <summary>
            Fires just after new rows are inserted in the current recordset.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Scroll">
            <summary>
            Fires when the user repositions the scroll box in the scroll bar on the object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Select">
            <summary>
            Fires when the current selection changes.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.SelectionChange">
            <summary>
            Fires when the selection state of a document changes.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.SelectStart">
            <summary>
            Fires when the object is being selected.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Start">
            <summary>
            Fires at the beginning of every loop of the marquee object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Stop">
            <summary>
            Fires when the user clicks the Stop button or leaves the Web page.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Storage">
            <summary>
            Fires when a DOM Storage area is updated.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.StorageCommit">
            <summary>
            Fires when a local DOM Storage area is written to disk.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Submit">
            <summary>
            Fires when a FORM is about to be submitted.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.Unload">
            <summary>
            Fires immediately before the object is unloaded.
            </summary>
        </member>
        <member name="F:DNA.Mvc.DomEvents.TimeOut">
            <summary>
            Raised when there is an error that prevents the completion of the request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.CssClass">
            <summary>
            Gets/Sets the link css class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.StyleText">
            <summary>
            Gets/Sets the style text of the 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.ImageCssClass">
            <summary>
            Gets/Sets the image css class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.ImageStyleText">
            <summary>
            Gets/Sets the image style text.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.ImageUrl">
            <summary>
            Gets/Sets the image url.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.Text">
            <summary>
            Gets/Sets the text of the button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.OnClientClick">
            <summary>
            Gets/Sets the first client click scripts
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.ToggleImageUrl">
            <summary>
            Gets/Sets the toggle image url.after the OnClientClick execute this image will be display.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.ToggleText">
            <summary>
            Gets/Sets the toggle text of the button.After the OnClientClick executed this text will be display.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageToggleButtonOptions.OnClientToggleClick">
            <summary>
            Gets/Sets the toggle client click scripts.
            </summary>
        </member>
        <member name="T:DNA.Mvc.SelectableNode">
            <summary>
            Represents a node in the hierarchical structure such as "ul","li"
            </summary>
        </member>
        <member name="P:DNA.Mvc.SelectableNode.Properties">
            <summary>
            Gets/Sets the addition properties.
            </summary>
        </member>
        <member name="P:DNA.Mvc.SelectableNode.Target">
            <summary>
            Gets/Sets the open window target
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.RichTextBoxOptions">
            <summary>
            Defines the properties map to the richtextbox's options
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.Height">
            <summary>
            Gets/Sets the heigh of the RTB
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.Width">
            <summary>
            Gets/Sets the width of the RTB
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.Mode">
            <summary>
            Gets/Sets the init mode of the RTB
            </summary>
            <remarks>
            It can accept two options 
               "editor" - show the editor mode
               "source"  -show as the source code mode.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.BackgroundColor">
            <summary>
            Gets/Sets the RTB's background color
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.ImageBaseUrl">
            <summary>
            Gets/Sets the image base url
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.FontSize">
            <summary>
            Gets/Sets the font size in editor
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RichTextBoxOptions.FontFamily">
            <summary>
            Gets/Sets the font name of the editor
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.String)">
            <summary>
            Append the name and string value to option string
            </summary>
            <remarks>
            the value will be convert to 'value' format
            </remarks>
            <param name="name">option name</param>
            <param name="value">option value of string</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Int32)">
            <summary>
             Append the name and int value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of integer</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Single)">
            <summary>
             Append the name and float value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of float</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Double)">
            <summary>
             Append the name and double value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of double</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Decimal)">
            <summary>
             Append the name and decimal value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of decimal</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Boolean)">
            <summary>
             Append the name and bool value to option string
            </summary>
            <remarks>
             the value will be convert to low case string.
            </remarks>
            <param name="name">option name</param>
            <param name="value">option value of bool</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.String[])">
            <summary>
             Append the name and string array value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of string array</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Int32[])">
            <summary>
             Append the name and int array value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of int array</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Single[])">
            <summary>
             Append the name and float array value to option string
            </summary>
            <param name="name">option name</param>
            <param name="value">option value of float array</param>
        </member>
        <member name="M:DNA.Mvc.jQuery.OptionBuilder.AddOption(System.String,System.Enum)">
            <summary>
            Append the name and Enum object value to option string
            </summary>
            <remarks>
            the Enum object will be convert to low case string.
            </remarks>
            <param name="name">option name</param>
            <param name="value">option value of Enum object</param>
        </member>
        <member name="T:DNA.Mvc.JavaScriptTypes">
            <summary>
            Enumerates the base types of javascript
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarTextButton.Text">
            <summary>
            Gets/Sets the text of the button.
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.CheckBoxExtensions.CheckBox(System.Web.Mvc.AjaxHelper,System.String,System.String)">
            <summary>Render the checkbox html element and checkbox jQuery scripts</summary>
            <param name="name">Specified the name of the checkbox</param>
            <param name="text">Specified the checkbox display text</param>
            <returns>checkbox plugin requires elements.</returns>
            <example>
            <code>
            <![CDATA[ Ajax.CheckBox("myCheckbox"); ]]>
            </code>
            </example>
        </member>
        <member name="M:DNA.Mvc.jQuery.CheckBoxExtensions.CheckBox(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Boolean)">
            <summary>Render the checkbox html element and checkbox jQuery scripts</summary>
            <param name="name">Specified the name of the checkbox</param>
            <param name="text">Specified the checkbox display text</param>
            <param name="value">Specified the checkbox's value.</param>
            <returns>checkbox plugin requires elements.</returns>
            <example>
            <code>
            <![CDATA[ Ajax.CheckBox("myCheckbox",true); ]]>
            </code>
            </example>
        </member>
        <member name="T:DNA.Mvc.jQuery.AjaxDataTypes">
            <summary>
            The type of data that you're expecting back from the server. 
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Html">
            <summary>
            Returns HTML as plain text; included script tags are evaluated when inserted in the DOM. 
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Xml">
            <summary>
            Returns a XML document that can be processed via jQuery
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Script">
            <summary>
            Evaluates the response as JavaScript and returns it as plain text. Disables caching unless option "cache" is used. Note: This will turn POSTs into GETs for remote-domain requests.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Json">
            <summary>
             Evaluates the response as JSON and returns a JavaScript Object.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Jsonp">
            <summary>
            Loads in a JSON block using JSONP. Will add an extra "?callback=?" to the end of your URL to specify the callback. (Added in jQuery 1.2) 
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.AjaxDataTypes.Text">
            <summary>
            A plain text string
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.jQueryActionLinkOptions">
            <summary>
            Defines the jQueryActionLinkOptons for jQuery plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryActionLinkOptions.Text">
            <summary>
            Gets/Sets the jQueryActionLink Text
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryActionLinkOptions.IconCssClass">
            <summary>
            Gets/Sets the icon css class name display on the left of the actionlink
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryActionLinkOptions.OnClick">
            <summary>
            Gets/Sets the client click scripts
            </summary>
            <remarks>
            if this property sets the jQueryActionLink will ignore the link behavior 
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryActionLinkOptions.CssClass">
            <summary>
            Gets/Sets the css class name of the actionlink
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryActionLinkOptions.HoverCssClass">
            <summary>
            Gets/Sets the hover css class name of actionlink
            </summary>
        </member>
        <member name="T:DNA.Mvc.HierarchicalNodeUIBuilder">
            <summary>
            Provides helper methods to build the html elments for hierarchical ui
            </summary>
        </member>
        <member name="T:DNA.Mvc.NodeUIBuilder">
            <summary>
            Provides the helper methods to build the unorder list elements for the INavigatabe object.
            </summary>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.#ctor">
            <summary>
            Construct the NodeUIBuilder
            </summary>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteBeginLink(DNA.Mvc.INavigable)">
            <summary>
            Write the a tag for specified node to result
            </summary>
            <param name="node">Specified the node instance to write</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteBeginLink(DNA.Mvc.INavigable,System.Object)">
            <summary>
            Write the a tag and html attributes to result.
            </summary>
            <param name="node">Specified the node instance to write</param>
            <param name="htmlAttributes">The html attributs of the a tag.</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteAttributes(System.Object)">
            <summary>
            Write the object as attributes to result.
            </summary>
            <param name="htmlAttributes">The html attributes object.</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteHidden(System.String)">
            <summary>
            Write the hidden tag to result.
            </summary>
            <param name="value">Specified the value of the hidden input.</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteImage(DNA.Mvc.INavigable)">
            <summary>
            Write the img tag for specified node to result.
            </summary>
            <param name="node">Specified the node object to write.</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteImage(DNA.Mvc.INavigable,System.Object)">
            <summary>
            Write the img tag for specified node to result.
            </summary>
            <param name="node">Specified the node object to write.</param>
            <param name="htmlAttributes">The html attributes object for img tag</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WirteTitle(DNA.Mvc.INavigable)">
            <summary>
            Write the node title to span tag.
            </summary>
            <param name="node">Specified the node object to write.</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteTitle(DNA.Mvc.INavigable,System.Object)">
            <summary>
            Write the node title to span tag.
            </summary>
            <param name="node">Specified the node object to write.</param>
            <param name="htmlAttributes">The html attributs of the span tag</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteTagRightChar">
            <summary>
            Write ">" to result.
            </summary>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteBeginTag(System.String,System.Object)">
            <summary>
            Write the begin tag to result
            </summary>
            <param name="tagName">Specified the tag name.</param>
            <param name="htmlAttributes">Specified the attributes of the element</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteEndTag(System.String)">
            <summary>
            Write the end tag to result.
            </summary>
            <param name="tagName">Specified the tag name</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteIconNode(System.String)">
            <summary>
            Write the node just have icon output element
            </summary>
            <param name="iconClass">The css class of the icon</param>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteIconNode(System.String,System.Object)">
            <summary>
            Write the node just have icon output element
            </summary>
            <param name="iconClass">The css class of the icon</param>
            <param name="htmlAttribute">The html attributes of the icon element</param>
        </member>
        <!-- 对于成员“M:DNA.Mvc.NodeUIBuilder.WriteNodeContent(DNA.Mvc.INavigable,System.Object)”忽略有格式错误的 XML 注释 -->
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteNode(DNA.Mvc.INavigable)">
            <summary>
            Write the node instance into html render result.
            </summary>
            <param name="node">Sepcified the node object</param>
            <param name="htmlAttribute">Specified the node html attribute object</param>
            <remarks>
            The result is in this format: <![CDATA[> 
                   <li>
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
                   </li>
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.WriteNodes(System.Collections.Generic.IEnumerable{DNA.Mvc.INavigable},System.Object)">
            <summary>
            Write the nodes into html render result.
            </summary>
            <remarks>
            The result is in this format: <![CDATA[> 
                <ul>
                   <li>
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
                   </li>
                   .
                   .
                   .
                 </ul> 
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.ToString">
            <summary>
            Get the result string.
            </summary>
            <returns>The string of the result</returns>
        </member>
        <member name="M:DNA.Mvc.NodeUIBuilder.Dispose">
            <summary>
            Resolve the resource.
            </summary>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteSiblingNodes(DNA.Mvc.HierarchicalNode)">
            <summary>
            Write the sibling nodes to result.
            </summary>
            <param name="node">Specified the node object</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNode(DNA.Mvc.HierarchicalNode)">
            <summary>
            Write the node instance into html render result.
            </summary>
            <param name="node">Sepcified the node object</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNode(DNA.Mvc.HierarchicalNode,System.Object)">
            <summary>
            Write the node instance into html render result.
            </summary>
            <param name="node">Sepcified the node object</param>
            <param name="htmlAttributes">Specified the node html attribute object</param>
            <remarks>
            The result is in this format: <![CDATA[> 
                   <li>
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
                   </li>
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodes(System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode})">
            <summary>
            Write the nodes into html render result.
            </summary>
            <remarks>
            The result is in this format: <![CDATA[> 
                <ul>
                   <li>
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
                   </li>
                   .
                   .
                   .
                 </ul> 
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
            <param name="nodes">Specified the node collection to write.</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodesWithAllAttributes(System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode})">
            <summary>
            Write the nodes into html render result.This method will write the node.Attributes property as 
            li element's html attributes
            </summary>
            <param name="nodes">Specified the node collection to write.</param>
            <remarks>
            The result is in this format: <![CDATA[> 
                <ul>
                   <li node.Attributes.Key=node.Attributes[key] ..... >
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
                   </li>
                   .
                   .
                   .
                 </ul> 
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
            <returns>The builder object</returns>       
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodeRecursive(DNA.Mvc.HierarchicalNode,System.Object,System.Object)">
            <summary>
            Write the li html element to the HtmlTextWriter.
            </summary>
            <param name="node">The HtmlTextWriter</param>
            <param name="htmlAttributes">The html attributes of the li element</param>
            <param name="containerAttributes">The html attributes of the ul element</param>
            <returns>The builder object</returns>    
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodeRecursive(DNA.Mvc.HierarchicalNode)">
            <summary>
            Write the node and it's descendant nodes
            </summary>
            <param name="node">Specified the node to write</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodesRecursive(System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode})">
            <summary>
            Write the nodes and it's descendant nodes
            </summary>
            <param name="nodes">Specified the node collection to write to result.</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodesRecursive(System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode},System.Object,System.Object)">
            <summary>
            Write the node collection to result recursive.
            </summary>
            <param name="nodes">Specified node collection to write to result.</param>
            <param name="htmlAttributes">Specified  the html attributes of the ul element</param>
            <param name="nodeAttributes">Specified  the html attributes of the li element</param>
            <returns>The builder object</returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNodeUIBuilder.WriteNodeContent(DNA.Mvc.INavigable)">
            <summary>
            Write the html in li element
            </summary>
            <param name="node">Specified the node object</param>
            <remarks>
            The result is in this format: 
            <![CDATA[> 
                         <a href=[node.NavigateUrl] target='[node.Target]'>
                               <input type='hidden' value='[node.Key]'>
                               <img src='[node.ImageUrl]'>
                               <span>[node.Title]</span>
                          </a>     
            ]]>
            a,hidden,img element is optional. if the node property is null or empty the elements will not render.
            </remarks>
            <returns>The builder object</returns>
        </member>
        <member name="T:DNA.Mvc.jQuery.ToolbarSpliter">
            <summary>
            The spliter toolbar item
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.TextBoxExtensions.TextBox(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Render the textbox plugin element and textbox plugin init scripts.
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="name">The name of the textbox</param>
            <example>
            <code>
            Ajax.TextBox("MyText");
            </code>
            </example>
            <returns>The textbox plugin elements html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TextBoxExtensions.TextBox(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Int32)">
             <summary>
             Render the textbox plugin element and textbox plugin init scripts.
             </summary>
             <param name="helper">The Ajax helper</param>
             <param name="name">The name of the textbox</param>
             <param name="iconClass">Specified the icon css class of the textbox this icon will display on the left side in the textbox.</param>
             <param name="width">Specified the width of the textbox</param>
             <example>
            <code><![CDATA[ Ajax.TextBox("UserName","ui-icon ui-icon-person",200);]]></code>
            </example>
             <returns>The textbox plugin elements html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TextBoxExtensions.TextBox(System.Web.Mvc.AjaxHelper,System.String,System.String)">
             <summary>
             Render the textbox plugin element and textbox plugin init scripts.
             </summary>
             <param name="helper">The Ajax helper</param>
             <param name="name">The name of the textbox</param>
             <param name="value">Specified the init text value of the textbox</param>
             <example>
            <code><![CDATA[ Ajax.TextBox("Title","Portal");]]></code>
            </example>
             <returns>The textbox plugin elements html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TextBoxExtensions.TextBox(System.Web.Mvc.AjaxHelper,System.String,System.String,DNA.Mvc.jQuery.TextBoxOptions)">
             <summary>
             Render the textbox plugin element and textbox plugin init scripts.
             </summary>
             <param name="helper">The Ajax helper</param>
             <param name="name">The name of the textbox</param>
             <param name="value">Specified the init text value of the textbox</param>
             <param name="tooltip">Specified the tooltip text of textbox</param>
             <param name="options">Specified the TextBoxObject class to set the parameters of the textbox plugin.</param>
            <example>
            <code lang="csharp"><![CDATA[ Ajax.TextBox("Title","Portal","Input the title of the Portal",
            new TextBoxOptions(){
            Clearable=true,
            TextCssClass="ui-textbox"
            });]]></code>
            </example>
             <returns>The textbox plugin elements html</returns>
        </member>
        <member name="P:DNA.Mvc.jQuery.InputFilterOptions.FilterMode">
            <summary>
            Gets/Sets a the filter mode to apply, either ValidChars (default) or InvalidChars. 
            If set to InvalidChars, FilterType must be set to Custom;
            if set to ValidChars, FilterType must contain Custom.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.InputFilterOptions.FilterType">
            <summary>
            Gets/Sets a the type of filter to apply, as a comma-separated combination of Numbers, 
            LowercaseLetters, UppercaseLetters, and Custom. 
            If Custom is specified, the ValidChars field will be used in addition to other settings such as Numbers.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.InputFilterOptions.DecimalDigits">
            <summary>
            Gets/Sets the digits of the decimal value.This option only avalidable when FilterModes set to 
            Numbers
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.InputFilterOptions.ValidChars">
            <summary>
            Gets/Sets  a string consisting of all characters considered valid for the text field 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.InputFilterOptions.InvalidChars">
            <summary>
            Gets/Sets a string consisting of all characters considered invalid for the text field 
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.MenuStyles">
            <summary>
            Defines the menu type styles
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.MenuStyles.Horizontal">
            <summary>
            Specified the menu plugin to build as Horizontal Main menu.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.MenuStyles.Vertical">
            <summary>
            Specified the menu plugin to build as Vertical menu.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.MenuStyles.Dropdown">
            <summary>
            Specified the menu plugin to build the dropdown menu to the target element.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.MenuStyles.Context">
            <summary>
            Specified the menu plugin as the context menu to target element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.EditableOptions.ActiveCssClass">
            <summary>
            Gets/Sets the css class name when the editable is active
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.EditableOptions.OnSubmit">
            <summary>
            Gets/Sets the client event handler scripts when the editable is completed this event will be trigger. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.EditableOptions.OnCancel">
            <summary>
            Gets/Sets the client event handler scripts when the editable has been cancel by user this event will be trigger. 
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ActionLinkExtensions">
            <summary>
            Define the jQueryActionLink extension methods
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.DroppableOptions">
            <summary>
            Defines the jQuery UI droppable options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.Accept">
            <summary>
            Gets/Sets all draggables that match the selector will be accepted. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.ActiveCssClass">
            <summary>
            Gets/Sets the class will be added to the droppable while an acceptable draggable is being dragged.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.AllowAddClasses">
            <summary>
            Gets/Sets whether prevent the ui-droppable class from being added. 
            </summary>
            <remarks>
            This may be desired as a performance optimization when calling .droppable() init on many hundreds of elements.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.Greedy">
            <summary>
            Gets/Sets whether prevent event propagation on nested droppables.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.HoverCssClass">
            <summary>
            Gets/Sets the class will be added to the droppable while an acceptable draggable is being hovered.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.GroupName">
            <summary>
            Gets/Sets the group sets of draggable and droppable items, in addition to droppable's Accept Property. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.Tolerance">
            <summary>
            Gets/Sets which mode to use for testing whether a draggable is 'over' a droppable. Possible values: 'fit', 'intersect', 'pointer', 'touch'.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.OnDragActive">
            <summary>
            This event is triggered any time an accepted draggable starts dragging. This can be useful if you want to make the droppable 'light up' when it can be dropped on
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.OnDragDeactive">
            <summary>
            This event is triggered any time an accepted draggable stops dragging
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.OnDragOver">
            <summary>
            This event is triggered as an accepted draggable is dragged 'over' (within the tolerance of) this droppable
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.OnDragOut">
            <summary>
            This event is triggered when an accepted draggable is dragged out (within the tolerance of) this droppable
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DroppableOptions.OnDrop">
            <summary>
            This event is triggered when an accepted draggable is dropped 'over'
            (within the tolerance of) this droppable. In the callback, $(this) represents 
            the droppable the draggable is dropped on. ui.draggable represents the draggable
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ResizableOptions">
            <summary>
            Defines the resizable plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.AlsoResize">
            <summary>
            Gets/Sets the resize these elements synchronous when resizing.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.EnabledAnimation">
            <summary>
            Gets/Sets whether enable animates to the final size after resizing.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.AnimateDuration">
            <summary>
            Gets/Sets duration time for animating, in milliseconds.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.AnimateEasing">
            <summary>
            Gets/Sets the easing effect for animating.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.AspectRatio">
            <summary>
            Gets/Sets resizing is constrained by the original aspect ratio. Otherwise a custom aspect ratio
            can be specified, such as 9 / 16, or 0.5.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.AutoHide">
            <summary>
            Get/Sets whether automatically hides the handles except when the mouse hovers over the element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.DisableResizableElements">
            <summary>
            Gets/Sets prevents resizing if you start on elements matching the selector.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.Containment">
            <summary>
            Gets/Sets the Control/Element constrains dragging to within the bounds of the specified Control/Element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.StartDelay">
            <summary>
            Tolerance, in milliseconds, for when resizing should start. If specified, resizing will not start until 
            after mouse is moved beyond duration. This can help prevent unintended resizing when clicking on an element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.StartDistance">
            <summary>
            Tolerance, in pixels, for when resizing should start. If specified, resizing will not start until after mouse is
            moved beyond distance. This can help prevent unintended resizing when clicking on an element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.ShowSemiTransparentHelper">
            <summary>
            Gets/Sets a semi-transparent helper element is shown for resizing.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.Handles">
            <summary>
            If specified as a string, should be a comma-split list of any of the following: 'n, e, s, w, ne, se, sw, nw, all'. 
            The necessary handles will be auto-generated by the plugin.
            If specified as an object, the following keys are supported: { n, e, s, w, ne, se, sw, nw }. 
            The value of any specified should be a jQuery selector matching the child element of the resizable to use
            as that handle. If the handle is not a child of the resizable, you can pass in the DOMElement or a valid jQuery 
            object directly.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.HelperCssClass">
            <summary>
            Gets/Sets the css class that will be added to a proxy element to outline the resize 
            during the drag of the resize handle. Once the resize is complete, the original element is sized.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.MaxHeight">
            <summary>
            Gets/Sets the maximum height the resizable should be allowed to resize to.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.MaxWidth">
            <summary>
            Gets/Sets the maximum width the resizable should be allowed to resize to.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.MinHeight">
            <summary>
            Gets/Sets  the minimum height the resizable should be allowed to resize to.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.MinWidth">
            <summary>
            Gets/Sets  the minimum width the resizable should be allowed to resize to.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.OnResizeStart">
            <summary>
            This event is triggered at the start of a resize operation
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.OnResize">
            <summary>
            This event is triggered during the resize, on the drag of the resize handler
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ResizableOptions.OnResizeStop">
            <summary>
            This event is triggered at the end of a resize operation
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.RatingOptions">
            <summary>
            Defines the Rating plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.Value">
            <summary>
            Gets/Sets the initialize value of the rating.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.MaxRating">
            <summary>
            Gets/Sets how many stars shows in rating plugin.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.ReadOnly">
            <summary>
            Gets/Sets whether allows the users post the rating value to server.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.StarIconCssClass">
            <summary>
            Gets/Sets the star icon css class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.CssClass">
            <summary>
            Gets/Sets the rating element css class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.HoverCssClass">
            <summary>
            Gets/Sets the css class when the mouse hove the star.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.RatingOptions.OnChanged">
            <summary>
            Gets/Sets the client event scripts when the rating value is changed.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.MarkupTextBoxOptions">
            <summary>
            Defines the properties map to the markupable plugin's options
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MarkupTextBoxOptions.Height">
            <summary>
            Gets/Sets the heigh of the MTB
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MarkupTextBoxOptions.Width">
            <summary>
            Gets/Sets the width of the MTB
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MarkupTextBoxOptions.BackgroundColor">
            <summary>
            Gets/Sets the MTB's background color
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MarkupTextBoxOptions.ParserUrl">
            <summary>
            Gets/Sets the parser json file url
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MarkupTextBoxOptions.ImageBaseUrl">
            <summary>
            Gets/Sets the image base url
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ButtonOptions">
            <summary>
            Define the button options
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.ShowText">
            <summary>
            Gets/Sets whether to show any text - 
            when set to false (display no text), icons (see icons option) must be enabled, otherwise it'll be ignored.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.Icons">
            <summary>
            Gets/Sets disables (true) or enables (false) the button. Can be set when initialising (first creating) the button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.Disabled">
            <summary>
            Gets/Sets the css class of the button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.Text">
            <summary>
            Gets/Sets the the text to show on the button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.OnClick">
            <summary>
            Gets/Sets the click event handle scripts.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ButtonOptions.ButtonIcons">
            <summary>
            Define the button icon styles
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.ButtonIcons.PrimaryIconCssClass">
            <summary>
            Gets/Sets the primary icon class name that show on the left of the button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ButtonOptions.ButtonIcons.SecondaryIconCssClass">
            <summary>
            Gets/Sets the secondary icon class name that show on the right of the button
            </summary>
        </member>
        <member name="T:DNA.Mvc.HierarchicalNodeProviderBase">
            <summary>
            The base class of the IHierarchicalNodeProvider
            </summary>
        </member>
        <member name="T:DNA.Mvc.IHierarchicalNodeProvider">
            <summary>
            Defines the hierarchical data node provider methods
            </summary>
        </member>
        <member name="T:DNA.Mvc.IHierarchicalNodeProvider`1">
            <summary>
            Defines the hierarchical data node provider methods
            </summary>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.GetNodeRoles(`0)">
            <summary>
            Gets the assessable user roles for the specified node.
            </summary>
            <param name="node">The NavigatableNode instance.</param>
            <returns>Role string array</returns>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.AddChildren(`0,`0)">
            <summary>
            Add the children node to the parent.
            </summary>
            <param name="parentNode">Specified the target node add to.</param>
            <param name="node">Specified the node to add.</param>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.RemoveNode(`0)">
            <summary>
            Remove the specified node from provider.
            </summary>
            <param name="node">Specified the node to remove.</param>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.GetChildNodes(`0)">
            <summary>
            Get the childnodes of specified node.
            </summary>
            <param name="node">The NavigatableNode object</param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.GetParentNode(`0)">
            <summary>
            Gets the parent node of specified node.
            </summary>
            <param name="node">The NavigatableNode object</param>
            <returns>Return the parent node instance</returns>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.IsAccessibleToUser(System.Web.HttpContext,`0)">
            <summary>
            Test the user can access the specified node.
            </summary>
            <param name="context">The httpcontext</param>
            <param name="node">Specified th NavigatableNode</param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.IHierarchicalNodeProvider`1.FindNodeFormKey(System.String)">
            <summary>
            Find the Navigatable for specified key.
            </summary>
            <param name="key">The key for seach</param>
            <returns>The node instance found.</returns>
        </member>
        <member name="P:DNA.Mvc.IHierarchicalNodeProvider`1.RootNode">
            <summary>
            Gets the root node.
            </summary>
        </member>
        <member name="P:DNA.Mvc.IHierarchicalNodeProvider`1.CurrentNode">
            <summary>
            Sets the current node 
            </summary>
        </member>
        <member name="P:DNA.Mvc.IHierarchicalNodeProvider`1.EnableLocalization">
            <summary>
            Enable the node localization.
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.Toolbar.ToolPane(System.Action{DNA.Mvc.jQuery.ToolPane})">
            <summary>
            The helper method to allows user add the toolpane and items though lamda expression
            </summary>
            <param name="expr">The lamda expression that add toolpane and toolbar items to toolbar</param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.Toolbar.Render">
            <summary>
            Output the toolbar html and register the toolbar scripts.
            </summary>
            <returns>The html reparents the toolbar.</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.Toolbar.Render(System.Object)">
            <summary>
            Output the toolbar html and register the toolbar scripts.
            </summary>
            <param name="htmlAttributes">The html attributes of the toolbar container element.</param>
            <returns>The html reparents the toolbar.</returns>
        </member>
        <member name="P:DNA.Mvc.jQuery.Toolbar.Name">
            <summary>
            Gets/Sets the toolbar name
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.Toolbar.ToolPanes">
            <summary>
            Gets the ToolPane collection of the toolbar
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.TagsOptions">
            <summary>
            Defines the tags plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.SelectedIndex">
            <summary>
            Gets/Sets Zero-based index of the tag to be selected on initialization. To set all tags to unselected pass -1 as value. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.Layout">
            <summary>
            Gets/Sets the tags layout position.properby value"left","right" 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.TriggerEvent">
            <summary>
            Gets/Sets the tags selected event.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.OnSelect">
            <summary>
            Gets/Sets the scripts when clicking a tag. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.OnShow">
            <summary>
            Gets/Sets the scripts when the tag shown
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TagsOptions.IsSortable">
            <summary>
            Gets/Sets whether the tags can be sortable.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.DraggableOptions">
            <summary>
            Defines the jQuery UI Draggable plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.ConnectToSortable">
            <summary>
            Allows the draggable to be dropped onto the specified sortables
            </summary>
            <remarks>
            If this propety is used (helper must be set to 'Clone' in order to work flawlessly), 
            a draggable can be dropped onto a sortable list and then becomes part of it. 
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.AllowAddClasses">
            <summary>
             Gets/Sets whether prevent the ui-draggable class from being added. 
             </summary>
            <remarks>
            This may be desired as a performance optimization when using Draggable on many hundreds of elements.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.PreventiFrameCapturing">
            <summary>
            Gets/Sets whether prevent iframes from capturing the mousemove events during a drag. 
            </summary>
            <remarks>
            Useful in combination with cursorAt, or in any case, if the mouse cursor is not over the helper.
            If set to true, transparent overlays will be placed over all iframes on the page. If a selector is supplied, 
            the matched iframes will have an overlay placed over them.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.RefreshPositions">
            <summary>
            Gets/Sets whether droppable positions are calculated on every mousemove. 
            </summary>
            <remarks>
            Caution: This solves issues on highly dynamic pages, but dramatically decreases performance.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.RevertMode">
            <summary>
             Gets/Sets whether the element will return to its start position when dragging stops. 
             </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.RevertDuration">
            <summary>
            Gets/Sets the duration of the revert animation, in milliseconds. Ignored if Revert is NotSet.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.GroupName">
            <summary>
            Gets/Sets the group sets of draggable and droppable items, in addition to droppable's Accept Property. 
            </summary>
            <remarks>
            A draggable with the same scope value as a droppable will be accepted by the droppable.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.AllowSnap">
            <summary>
             Get/Sets whether draggable can snap to the edges of the selected elements when near an edge of the element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.SnapMode">
            <summary>
            Get/Sets determines which edges of snap elements the draggable will snap to. Ignored if AllowSnap is false. 
            Possible values: 'Inner', 'Outer', 'Both','NotSet'
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.SnapTo">
            <summary>
            Gets/Sets the selector that the draggable will snap to the edges of the selected elements when near 
            an edge of the element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.SnapOffset">
            <summary>
            Gets/Sets the offset in pixels from the snap element edges at which snapping should occur. 
            Ignored if AllowSnap is false.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DisableDraggingElements">
            <summary>
            Gets/Sets prevents dragging from starting on specified Controls/Elements.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragOrientation">
            <summary>
            Gets/Sets the litimation of the draggable element's dragging orientation.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragHandler">
            <summary>
             Gets/Sets restricts drag start click to the specified elements
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragHelper">
            <summary>
            Gets/Sets a helper element to be used for dragging display.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.CustomHelper">
            <summary>
            Gets/Sets the custom helper html
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.AppendTo">
            <summary>
            Constrains dragging to within the bounds of the specified element.
            Possible string values: 'parent', 'document', 'window'
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.ContainmentBounds">
            <summary>
            Constrains dragging to within the bounds of the specified element or region. Possible string values: 'parent', 'document', 'window', [x1, y1, x2, y2].
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.Container">
            <summary>
            Gets/Sets the id of  the container.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.AutoScroll">
            <summary>
            Gets/Sets whether container auto-scrolls while dragging.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.ScrollSensitivity">
            <summary>
            Gets/Sets distance in pixels from the edge of the viewport after which the viewport should scroll. 
            Distance is relative to pointer, not the draggable.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragStartDelay">
            <summary>
            Gets/Sets time in milliseconds after mousedown until dragging should start.
            </summary>
            <remarks>
            This Property can be used to prevent unwanted drags when clicking on an element.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragStartDistance">
             <summary>
             Gets/Sets DragDistance in pixels after mousedown the mouse must move before dragging should start. 
             </summary>
            <remarks>
             This Property can be used to prevent unwanted drags when clicking on an element.
             </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.Cursor">
            <summary>
            The css cursor during the drag operation.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.CursorPosition">
            <summary>
            Moves the dragging helper so the cursor always appears to drag from the same position. 
            Coordinates can be given as a hash using a combination of one or two keys: { Top, Left, Right, Bottom }.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.ScrollSpeed">
            <summary>
            Gets/Sets the speed at which the window should scroll once the mouse pointer gets within the 
            scrollSensitivity distance.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.DragHelperOpacity">
            <summary>
            Gets/Sets opacity for the helper while being dragged.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.ZIndex">
            <summary>
            Gets/Sets z-index for the helper while being dragged.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.GroupMinZIndex">
            <summary>
            Gets/Sets  the z-Index of the defined group automatically, 
            always brings to front the dragged item. Very useful in things like window managers. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.OnDragStart">
            <summary>
            This event is triggered when dragging starts
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.OnDrag">
            <summary>
            This event is triggered when the mouse is moved during the dragging
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DraggableOptions.OnDragStop">
            <summary>
            This event is triggered when dragging stops
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.DnaUIExtensions">
            <summary>
            Represents support for Ajax UI  in an application.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ToolbarLabel">
            <summary>
            Define the toolbar label class, add a label item to the toolbar.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarLabel.Text">
            <summary>
            Gets/Sets the text of the label that display on toolbar.
            </summary>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNode.GetImplicitResourceString(System.String)">
            <summary>
            Get the resource string form the resource files
            </summary>
            <param name="attributeName">the resource name</param>
            <returns></returns>
        </member>
        <member name="M:DNA.Mvc.HierarchicalNode.GetAllChildren">
            <summary>
            Get all childrens in a collection
            </summary>
            <returns></returns>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.NavigateUrl">
            <summary>
            Gets/Sets navigate url of the node.
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.Provider">
            <summary>
            Gets the node provider instance
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.Title">
            <summary>
            Gets/Sets the node title
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.ParentNode">
            <summary>
            Gets/Sets the parent node
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.Description">
            <summary>
            Gets/Sets the description of the node.
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.ChildNodes">
            <summary>
            Gets the Children nodes 
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.Roles">
            <summary>
            Gets the roles who can access this node
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.RootNode">
            <summary>
            Gets the root node
            </summary>
        </member>
        <member name="P:DNA.Mvc.HierarchicalNode.HasChildNodes">
            <summary>
            Identity this node has any childnodes
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.RadioBoxExtensions.RadioBox(System.Web.Mvc.AjaxHelper,System.String,System.String)">
            <summary>
            Render the radio html element and radio plugin init scripts
            </summary>
            <param name="name">Specified the name of the checkbox</param>
            <param name="text">Specified the radio display text</param>
            <returns>radio plugin requires elements.</returns>
            <example>
            <code lang="csharp">
            <![CDATA[ Ajax.RadioBox("myRadio"); ]]>
            </code>
            </example>
        </member>
        <member name="M:DNA.Mvc.jQuery.RadioBoxExtensions.RadioBox(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Boolean)">
            <summary>Render the radio plugin html element and radio init scripts</summary>
            <param name="name">Specified the name of the radio</param>
            <param name="text">Specified the radio display text</param>
            <param name="value">Specified the radio's value.</param>
            <returns>radio plugin requires elements.</returns>
            <example>
            <code lang="csharp">
            <![CDATA[ Ajax.RadioBox("myRadio",true); ]]>
            </code>
            </example>
        </member>
        <member name="T:DNA.Mvc.jQuery.DropDownOptions">
            <summary>
            Represents the options of the jQuery dropdown plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.ItemCssClass">
            <summary>
            Gets/Sets the dropdown item's class
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.ItemHoverCssClass">
            <summary>
            Gets/Sets the dropdown item's hover class
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.DropDownIconCssClass">
            <summary>
            Gets/Sets the dropdown icon class which display on the right of the dropdown
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.CssClass">
            <summary>
            Gets/Sets the dropdown 's class 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.ItemSelectedCssClass">
            <summary>
            Gets/Sets the class which item is selected 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.DropDownHoverCssClass">
            <summary>
            Gets/Sets the hover class of the dropdown
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.PrefixText">
            <summary>
            Gets/Sets the append text of the dropdown.If this property set when item is selected the dropdown
            will display the PrefixText and item text inline.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.EmptyText">
            <summary>
            Gets/Sets the text that when dropdown does not select any item.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.Height">
            <summary>
            Gets/Sets the dropdown 's height  in pixel
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.Width">
            <summary>
            Gets/Sets the dropdown's width in pixel
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.MinListHeight">
            <summary>
            Gets/Sets the dropdown container's min height.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.TextFieldSelector">
            <summary>
            Gets/Sets the jQuery selector used to select the text element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.ValueFieldSelector">
            <summary>
            Gets/Sets the jQuery selector used to select the value element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.DropDownContainerSelector">
            <summary>
            Gets/Sets the jQuery selector that used to select the dropdown items container element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.ItemSelector">
            <summary>
            Gets/Sets the jQuery selector that used to select the dropdown items.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.SelectedIndex">
            <summary>
            Gets/Sets the index which item should be select.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.SelectedValue">
            <summary>
            Gets/Sets the value which item should be select.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.Resizable">
            <summary>
            Gets/Sets whether the dropdown container can be resize.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.Editable">
            <summary>
            Gets/Sets whether the dropdown can accept use input.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DropDownOptions.OnClientSelectedChanged">
            <summary>
            Gets/Sets the client event handler script to handle dropdown 's selectedChanged event.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ImageLinkList.ImageLinkOptions">
            <summary>
            The ImageLinkList Optons.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageLinkList.ImageLinkOptions.CssClass">
            <summary>
            Gets/Sets the class attribute of the ImageLinkList.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ImageLinkList.ImageLinkOptions.CssStyleText">
            <summary>
            Gets/Sets the style attribute oft the ImageLinkList
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.AutoRefresh">
            <summary>
            This determines whether to refresh (recalculate) the position and size of each selectee at the beginning 
            of each select operation. If you have many many items, you may want to set this to false and call the
            refresh method manually.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.DisableElements">
            <summary>
            Prevents selecting if you start on elements matching the selector.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.Delay">
            <summary>
            Time in milliseconds to define when the selecting should start. It helps preventing unwanted selections
            when clicking on an element.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.Distance">
            <summary>
            Tolerance, in pixels, for when selecting should start. If specified, selecting will not start until after mouse is dragged beyond distance.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.Filter">
            <summary>
            The matching child elements will be made selectees (able to be selected).
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.Tolerance">
            <summary>
            Possible values: 'touch', 'fit'.
             * fit: draggable overlaps the droppable entirely
             * touch: draggable overlaps the droppable any amount
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnSelected">
            <summary>
            This event is triggered at the end of the select operation, on each element added to the selection.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnSelecting">
             <summary>
            This event is triggered during the select operation, on each element added to the selection.
             </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnStart">
            <summary>
             This event is triggered at the beginning of the select operation
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnStop">
             <summary>
            This event is triggered at the end of the select operation.
             </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnUnselected">
            <summary>
             This event is triggered at the end of the select operation, on each element removed from the selection.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SelectableOptions.OnUnselecting">
            <summary>
            This event is triggered during the select operation, on each element removed from the selection.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.DialogOptions">
            <summary>
            Defines the jQuery UI Dialog plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.AutoOpen">
            <summary>
            Gets/Sets whether  the dialog will open automatically.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.bgiFrame">
            <summary>
            When true, the bgiframe plugin will be used, 
            to fix the issue in IE6 where select boxes show on top of other elements, regardless of zIndex. 
            </summary>
            <remarks>
            When dialog detect the current browser is IE6 this property will be set to true.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.CloseOnEscape">
            <summary>
            Gets/Sets whether the dialog should close when it has focus and the user presses the esacpe (ESC) key.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.CssClass">
            <summary>
            Gets/Sets the dialog style sheet class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.IsDraggable">
            <summary>
             Gets/Sets whether the dialog can be draggable and set to true it will be draggable by the titlebar.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.Height">
            <summary>
            Gets/Sets the Dialog's Height
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.HideEffect">
            <summary>
            Gets/Sets the effect to be used when the dialog is closed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.MaxHeight">
            <summary>
            Gets/Sets the dialog's maximum height to which the dialog can be resized, in pixels.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.MaxWidth">
            <summary>
            Gets/Sets the maximum width to which the dialog can be resized, in pixels.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.MinHeight">
            <summary>
            Gets/Sets the minimum height to which the dialog can be resized, in pixels.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.MinWidth">
            <summary>
            Gets/Sets the minimum width to which the dialog can be resized, in pixels.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.Title">
            <summary>
             Gets/Sets the title of dialog
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.ShowModal">
            <summary>
            Gets/Sets the dialog modal behavior; other items on the page will be disabled (i.e. cannot be interacted with). 
            Modal dialogs create an overlay below the dialog but above other page elements.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.IsResizable">
            <summary>
            Gets/Sets whether the dialog can be resizable
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.ShowEffect">
            <summary>
            Gets/Sets the effect to be used when the dialog is opened.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.IsStack">
            <summary>
            Gets/Sets whether the dialog will stack on top of other dialogs. 
            This will cause the dialog to move to the front of other dialogs when it gains focus.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.Width">
            <summary>
            Gets/Sets the dialog width
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.ZIndex">
            <summary>
            Gets/sets the starting z-index for the dialog.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnBeforeClose">
            <summary>
            Gets/Sets the dialog beforeclose event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnClientBeforeClose=" $(this).dialog('option','autoOpen',true);"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnOpen">
            <summary>
            Gets/Sets the dialog open event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnClientOpen=" $(this).dialog('option','title','Simaple');"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnFocus">
            <summary>
            Gets/Sets the dialog focus event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnFocus=" $(this).dialog('option','title','Editing');"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnDragStart">
            <summary>
            Gets/Sets the dialog dragStart event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnDragStart="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnDragStop">
            <summary>
            Gets/Sets the dialog dragStop event client event handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnDragStop="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnDrag">
            <summary>
            Gets/Sets the dialog drag event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnDrag="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnResizeStart">
            <summary>
            Gets/Sets the dialog resizeStart event client event handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnResizeStart="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnResize">
            <summary>
            Gets/Sets the dialog resize event client event handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnResize="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnResizeStop">
            <summary>
            Gets/Sets the dialog resizeStop event client event handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
            <example>
             OnResizeStop="var x=event.screenX;"
            </example>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.OnClose">
            <summary>
            Gets/Sets the dialog close event client handler
            </summary>
            <remarks>
            you can write the javascript in jQuery in this property directly if "function" declare not found this property will
            generate the function keyword automatic.
            this event have two params "event","ui"
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DialogOptions.Buttons">
            <summary>
            Specifies the collection which buttons should be displayed on the dialog. 
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ButtonExtensions">
            <summary>
            Represents support for jQuery  button plugin controls in an application.
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.ButtonExtensions.Button(System.Web.Mvc.AjaxHelper,System.String,System.String)">
            <summary>
            Render the button Html and register the button plugin script
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="text">Specifity the button text</param>
            <param name="onClick">Specifity the client script to handle the button click event.</param>
            <returns>Retuns the button html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.ButtonExtensions.Button(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String)">
            <summary>
             Render the button Html and register the button plugin script
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="text">Specifity the button text</param>
            <param name="iconCssClass">the icon css class name display on the left of the button</param>
            <param name="onClick">Specifity the client script to handle the button click event.</param>
            <returns>Retuns the button html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.ButtonExtensions.Button(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.jQuery.ButtonOptions,System.Object)">
            <summary>
            Render the button Html and register the button plugin script
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="name">specified the name of the button</param>
            <param name="options">The ButtonOptions instance</param>
            <param name="htmlAttributes"></param>
            <returns>Retuns the button html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.ButtonExtensions.Submit(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object)">
            <summary>
            Render the submit button Html and register the button plugin script
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="text">Specifity the button text</param>
            <param name="iconCssClass">the icon css class name display on the left of the button</param>
            <param name="htmlAttributes"></param>
            <returns>Retuns the submit html</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.ButtonExtensions.Submit(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            Render the submit button Html and register the button plugin script
            </summary>
            <param name="helper">The Ajax helper</param>
            <param name="text">Specifity the button text</param>
            <returns>Retuns the submit html</returns>
        </member>
        <member name="T:DNA.Mvc.jQuery.TreeViewOptions">
            <summary>
            Represents the options of the jQuery treeview plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.OnNodeSelected">
            <summary>
            Gets/Sets the script that handling the event when the treenode is selected.
            </summary>
            <remarks>
            The node paramter is a treenode() plugin object.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.OnNodeDropped">
            <summary>
            Gets/Sets the script that handling the event when the treenode is dropped.
            </summary>
            <remarks>
            In order to trigger this event the EnableDragAndDrop must be set to ture.
            The ui object has two object property
             ui.node :the node that dropped.
             ui.parentNode : the new parent node.
             ui.position:The new position of the node.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.EnableDragAndDrop">
            <summary>
            Gets/Sets the bool value that enabling the node drag and drop.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.DisableNodeLinks">
            <summary>
            Gets/Sets the disable the node linke to prevent the link defualt behavior.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.DataSourceUrl">
            <summary>
            Gets/Sets the tree node data source url
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.BaseImageUrl">
            <summary>
            Gets/Sets the treeview node images folder url
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.SelectedNodeCssClass">
            <summary>
            Gets/sets the css class name of the selected node.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.ApplyCssClassTo">
            <summary>
            Gets/Sets the jQuery selector for selected node content.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TreeViewOptions.SelectedKey">
            <summary>
            Gets/Sets the key value of the node to be selected on init.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.MenuExtensions">
            <summary>
            Provides the helper methods to build menu elements and register the menu jQuery plugin scripts.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.jQueryAjaxOptions">
            <summary>
            Defines the jQuery Ajax options object.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.AutoHandlingError">
            <summary>
            Gets/Sets whether the system will handing erro when progress Http Request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.AutoBlocking">
            <summary>
            Gets/Sets whether shows the default loader when progress Http Request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.TriggerEvent">
            <summary>
            Gets/Sets the trigger event type of the element to invoke the Http Request
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.TriggerID">
            <summary>
            Gets/Sets the element id to trigger the Http Request
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.UpdateTargetID">
            <summary>
            Gets/Sets the element id to display the Http Response
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.LoadingElementID">
            <summary>
            Gets or sets the loading element id.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.InsertionMode">
            <summary>
            Gets or sets the insertion mode.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.AutoBindingParameterElement">
            <summary>
            Gets/Sets whether auto binding the element's value as parameters to send to the specified url.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.Confirm">
            <summary>
            Gets or sets the junction to call for a confirmation.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.OnError">
            <summary>
            A function to be called if the request fails. 
            </summary>
            <remarks>
            he function is passed three arguments: The XMLHttpRequest object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "notmodified" and "parsererror". 
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.OnBeforeSend">
            <summary>
            A pre-callback to modify the XMLHttpRequest object before it is sent. 
            Use this to set custom headers etc. The XMLHttpRequest is passed as the only argument. 
            This is an Ajax Event. You may return false in function to cancel the request. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.OnComplete">
            <summary>
            A function to be called when the request finishes (after success and error callbacks are executed). 
            The function gets passed two arguments: The XMLHttpRequest object and a string describing the type of success of the request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.OnSuccess">
            <summary>
            A function to be called if the request success. T
            </summary>
            <remarks>he function gets passed two arguments: The data returned from the server, formatted according to the 'dataType' parameter, and a string describing the status.</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.HttpMethod">
            <summary>
            Gets or sets the HTTP method.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.Url">
            <summary>
            The URL to request. This *must* be a string (e.g., document.location.href) 
            and not a Location object (e.g., document.location)
            </summary>
        </member>
        <!-- 对于成员“P:DNA.Mvc.jQuery.jQueryAjaxOptions.Data”忽略有格式错误的 XML 注释 -->
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.DataType">
            <summary>
            The type of data that you're expecting back from the server. If none is specified, jQuery will intelligently pass either responseXML or responseText to your success callback, based on the MIME type of the response. The available types (and the result passed as the first argument to your success callback) are: 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.AsyncMode">
            <summary>
            By default, all requests are sent asynchronous (i.e. this is set to true by default).
            If you need synchronous requests, set this option to false. 
            Note that synchronous requests may temporarily lock the browser,
            disabling any actions while the request is active.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.EnableCache">
            <summary>
            Added in jQuery 1.2, if set to false it will force the pages that you request to not be cached by the browser.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.ContentType">
            <summary>
            When sending data to the server, use this content-type. Default is "application/x-www-form-urlencoded", which is fine for most cases.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.TriggerGlobalAjaxEvent">
            <summary>
            Whether to trigger global AJAX event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered. This can be used to control various Ajax Events.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.IfModified">
            <summary>
            Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.Jsonp">
            <summary>
            Override the callback function name in a jsonp request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url for a GET or the data for a POST. So {jsonp:'onJsonPLoad'} would result in 'onJsonPLoad=?' passed to the server.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.Username">
            <summary>
            A username to be used in response to an HTTP access authentication request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.Password">
            <summary>
            A password to be used in response to an HTTP access authentication request.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.ProcessData">
            <summary>
            By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send DOMDocuments, or other non-processed data, set this option to false.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.ScriptCharset">
            <summary>
            Only for requests with 'jsonp' or 'script' dataType and GET type. Forces the request to be interpreted as a certain charset. Only needed for charset differences between the remote and local content.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.RequestTimeout">
            <summary>
            Set a local timeout (in milliseconds) for the request. This will override the global timeout, if one is set via $.ajaxSetup. For example, you could use this property to give a single request a longer timeout than all other requests that you've set to time out in one second. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.jQueryAjaxOptions.DataFilter">
            <summary>
            A function to be used to handle the raw responsed data of XMLHttpRequest.This is a pre-filtering function to sanitize the response.You should return the sanitized data.The function gets passed two arguments: The raw data returned from the server, and the 'dataType' parameter. 
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.SortableOptions">
            <summary>
            Defines the sortable option object.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.AppendTo">
            <summary>
            Defines where the helper that moves with the mouse is being appended to during the
            drag (for example, to resolve overlap/zIndex issues).
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.DragStartDelay">
            <summary>
            Gets/Sets time in milliseconds after mousedown until dragging should start.
            </summary>
            <remarks>
            This Property can be used to prevent unwanted drags when clicking on an element.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.DragStartDistance">
             <summary>
             Gets/Sets DragDistance in pixels after mousedown the mouse must move before dragging should start. 
             </summary>
            <remarks>
             This Property can be used to prevent unwanted drags when clicking on an element.
             </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.SortableItems">
            <summary>
            Specifies which items inside the element should be sortable.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.ConnectWith">
            <summary>
            Takes a jQuery selector with items that also have sortables applied. 
            If used, the sortable is now connected to the other one-way, so you can drag from 
            this sortable to the other.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.AllowDropOnEmpty">
            <summary>
            Gets/Sets whether empty allows for an item to be dropped from a linked selectable.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.ForceHelperSize">
            <summary>
            Gets/Sets whether forces the helper to have a size.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.ForcePlaceholderSize">
            <summary>
            Gets/Sets forces the placeholder to have a size.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.PlaceHolderCssClass">
            <summary>
            Gets/Sets css class that gets applied to the otherwise white space.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.Cursor">
            <summary>
            The css cursor during the drag operation.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.CursorPosition">
            <summary>
            Moves the dragging helper so the cursor always appears to drag from the same position. 
            Coordinates can be given as a hash using a combination of one or two keys: { Top, Left, Right, Bottom }.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.Revert">
            <summary>
            Gets/Sets whether the item will be reverted to its new DOM position with a smooth animation.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.Container">
            <summary>
            Gets/Sets the id of  the container.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.DragHandler">
            <summary>
             Gets/Sets restricts drag start click to the specified Controls/Elements
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.Tolerance">
            <summary>
            This is the way the reordering behaves during drag. Possible values: 'Intersect', 'Pointer'. 
            In some setups, 'Pointer' is more natural.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.CustomHelper">
            <summary>
            Gets/Sets the custom helper html
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.DragHelperOpacity">
            <summary>
            Gets/Sets opacity for the helper while being dragged.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.AutoScroll">
            <summary>
            Gets/Sets whether container auto-scrolls while dragging.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.ScrollSensitivity">
            <summary>
            Gets/Sets distance in pixels from the edge of the viewport after which the viewport should scroll. 
            Distance is relative to pointer, not the draggable.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.ScrollSpeed">
            <summary>
            Gets/Sets the speed at which the window should scroll once the mouse pointer gets within the 
            scrollSensitivity distance.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortStart">
            <summary>
            This event is triggered when sorting starts.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSort">
            <summary>
            This event is triggered during sorting.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortChange">
            <summary>
            This event is triggered during sorting, but only when the DOM position has changed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortBeforeStop">
            <summary>
            This event is triggered when sorting stops, but when the placeholder/helper is still available.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortStop">
            <summary>
            This event is triggered when sorting has stopped.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortUpdate">
            <summary>
            This event is triggered when the user stopped sorting and the DOM position has changed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortReceive">
            <summary>
            This event is triggered when a connected sortable list has received an item from another list
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortRemove">
            <summary>
            This event is triggered when a sortable item has been dragged out from the list and into another
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortOver">
            <summary>
            This event is triggered when a sortable item is moved into a connected list
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortOut">
            <summary>
            This event is triggered when a sortable item is moved away from a connected list
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortActivate">
            <summary>
            This event is triggered when using connected lists, every connected list on drag start receives it
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SortableOptions.OnSortDeactivate">
            <summary>
            This event is triggered when sorting was stopped, is propagated to all possible connected lists
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.ToolbarExtensions">
            <summary>
            The extension methods to create the toolbar
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.ToolbarExtensions.Toolbar(System.Web.Mvc.AjaxHelper,System.String)">
            <summary>
            The extension method to create the toolbar
            </summary>
            <param name="helper">The helper object</param>
            <param name="name">Specified the name for the toolbar</param>
            <returns>The toolbar instance</returns>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.EnabledAnimate">
            <summary>
             Gets/Sets whether to slide handle smoothly when user click outside handle on the bar.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Maximum">
            <summary>
            Gets/Sets the maximum value of the slider.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Minimum">
            <summary>
            Gets/Sets the minimum value of the slider.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Orientation">
            <summary>
            Gets/Sets the Silder's Orientaion
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Step">
            <summary>
            Gets/Sets the size or amount of each interval or step the slider takes between min and max. 
            </summary>
            <remarks>
            The full specified value range of the slider (max - min) needs to be evenly divisible by the step.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Range">
            <summary>
             Gets/Sets the slider's range,if this property set the slider will detect if you have two handles and 
             create a stylable  range element between these two. Two other possible values are 'Min' and 'Max'.
             A Min range goes from the slider Min to one handle. A max range goes from one handle to the 
             slider max.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.FillValueTo">
            <summary>
            Gets/Sets the input element id that fill the value to.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.FillTextTo">
            <summary>
            Gets/Sets the element id that fill the value to element as text.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.Value">
            <summary>
            Gets/Sets the value of the slider, if there's only one handle. 
            If there is more than one handle, determines the value of the first handle.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.OnStartSliding">
            <summary>
            Gets/Sets the start client event handler.
            </summary>
            <remarks>This event is triggered when the user starts sliding</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.OnSliding">
            <summary>
            Gets/Sets the slide client event handler.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.OnValueChanged">
            <summary>
            Gets/Sets the change client event handler.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.SliderOptions.OnStopSliding">
            <summary>
            Gets/Sets the stop client event handler.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.DatePickerOptions">
            <summary>
            Defines the jQuery UI DatePicker options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AppendText">
            <summary>
             Gets/Sets the text to display after each date field, e.g. to show the required format.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ButtonImageUrl">
            <summary>
            Gets/Sets the URL for the popup button image. If set, button text becomes the alt value and is not directly displayed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowButtonImageOnly">
            <summary>
            Set to true to place an image after the field to use as the trigger without it appearing on a button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AnotherFormatString">
            <summary>
            Gets/Sets the dateFormat to be used for the altField option. This allows one date format to be shown to the user for selection purposes, while a different format is actually sent behind the scenes. For a full list of the possible formats see the formatDate function
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AnotherField">
            <summary>
            Gets/Sets the jQuery server side selector for another field that is to be updated with the selected date from the datepicker. Use the altFormat setting below to change the format of the date within this field. Leave as blank for no alternate field.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ButtonText">
            <summary>
            Gets/Sets the text to display on the trigger button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AllowChangeMonth">
            <summary>
            Gets/Sets whether the DatePicker allows you to change the month by selecting from a drop-down list. You can enable this feature by setting the property to true.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AllowChangeYear">
            <summary>
            Gets/Sets whether the DatePicker allows you to change the year by selecting from a drop-down list. You can enable this feature by setting the attribute to true.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.CloseButtonText">
            <summary>
            Gets/Sets The text to display for the close link. This attribute is one of the regionalisation attributes. Use the ShowButtonPanel to display this button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ConstrainInput">
            <summary>
            True if the input field is constrained to the current date format.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.TextForToday">
            <summary>
            Gets/Sets the text to display for the current day link. This attribute is one of the regionalisation attributes. Use the ShowButtonPanel to display this button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.LocID">
            <summary>
            Gets/Sets the region id for the datepicker
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.DateFormatString">
            <summary>
            Gets/Sets the format for parsed and displayed dates. 
            </summary>
            <remarks>
             DatePicker Web Control not use jQuery's dateFormat,you can using the DateFormat in .Net.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.DayNames">
            <summary>
            Gets the collection of long day names, starting from Sunday, for use as requested via the dateFormat setting. 
            They also appear as popup hints when hovering over the corresponding column headings. 
            This attribute is one of the regionalisation attributes.
            </summary>
            <remarks>
            	<para>The DayNames default value is below</para>
            	<para>'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday',
                'Saturday'</para>
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShortDayNames">
            <summary>
            Gets the colleciton of abbreviated day names, starting from Sunday, for use as requested via the 
            dateFormat setting. This attribute is one of the regionalisation attributes.
            </summary>
            <remarks><para>default value:'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'</para></remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MinDayNames">
             <summary>
            Gets the collection of minimised day names, starting from Sunday, for use as column headers within the datepicker. 
            This attribute is one of the regionalisation attributes.
             </summary>
             <remarks>
             Default value:'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'
             </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.DefaultDateString">
            <summary>
            Gets/Sets the date to highlight on first opening if the field is blank. 
            </summary>
            <remarks>
            Specify either an actual date via a Date object, or a number of days from today 
            (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, 
            e.g. '+1m +7d'), or null for today.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.Duration">
            <summary>
            Control the speed at which the datepicker appears, it may be a time in milliseconds
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.FirstDayOfWeek">
            <summary>
            Gets/Sets the first day of the week: 
            </summary>
            <remarks>
            Sunday is 0, Monday is 1, ... This property is one of the regionalisation properties.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MoveToSelectedDate">
            <summary>
            Gets/Sets whether the current day link moves to the currently selected date instead of today.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.HideIfNoPrevNext">
            <summary>
            Gets/Sets normally the previous and next links are disabled when not applicable (see minDate/maxDate). 
            You can hide them altogether by setting this attribute to true.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MaxDateFormat">
             <summary>
            Gets/Sets a maximum selectable date via a Date object, or a number of days from today (e.g. +7) or a string
            of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +1w'), or null 
            for no limit.
             </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MinDateFormat">
            <summary>
            Gets/Sets a minimum selectable date via a Date object, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '-1y -1m'), or null for no limit.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MonthNames">
            <summary>
            Gets the collection of full month names, as used in the month header on each datepicker and as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
            </summary>
            <remarks>
            Default value:'January', 'February', 'March', 'April', 'May', 'June', 'July',
            'August', 'September', 'October', 'November', 'December'
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.MonthShortNames">
            <summary>
            Gets the collection of abbreviated month names, for use as requested via the dateFormat setting. This attribute is one of the regionalisation attributes.
            </summary>
            <remarks>
            Default value:'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.NavigationAsDateFormat">
            <summary>
            Gets/sets the formatDate function is applied to the prevText, nextText, 
            and currentText values before display, allowing them to display the target month names for example.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.NextMonthText">
            <summary>
             Gets/Sets the text to display for the next month link. This attribute is one of the regionalisation attributes.
             With the standard ThemeRoller styling, this value is replaced by an icon.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.NumberOfMonths">
            <summary>
            Gets/Sets how many months to show at once. The value can be a straight integer, or can be 
            a two-element array to define the number of rows and columns to display.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.PrevMonthText">
            <summary>
            Gets/Sets the text to display for the previous month link. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShortYearCutOff">
            <summary>
            Gets/Sets the cutoff year for determining the century for a date (used in conjunction with dateFormat 'y').
            If a numeric value (0-99) is provided then this value is used directly. If a string value is provided then 
            it is converted to a number and added to the current year. Once the cutoff year is calculated, any dates
            entered with a year value less than or equal to it are considered to be in the current century, while those
            greater than it are deemed to be in the previous century.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.AnimationOnShow">
            <summary>
            Gets/Sets the name of the animation used to show/hide the datepicker.
            </summary>
            <remarks>
             Use 'show' (the default), 'slideDown', 'fadeIn', or any of the show/hide jQuery UI effects.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowButtonPanel">
            <summary>
            Gets/Sets whether to show the button panel.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowCurrentAtPos">
            <summary>
            Gets/Sets where in a multi-month display the current month shows, starting from 0 at the top/left.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowMonthAfterYear">
            <summary>
            Gets/Sets whether to show the month after the year in the header.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowIconMode">
            <summary>
            Gets/Sets the datepicker appear automatically when the field receives focus ('focus'), appear only when a button is clicked ('button'), or appear when either event takes place ('both').
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowOptions">
            <summary>
            Gets/Sets  if using one of the jQuery UI effects for AnimationOnShow, you can provide additional settings for that animation via this option.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.ShowOtherMonths">
            <summary>
            Gets/Sets display dates in other months (non-selectable) at the start or end of the current month.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.StepMonths">
            <summary>
            Gets/Sets how many months to move when clicking the Previous/Next links.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.YearRange">
            <summary>
            Gets/Sets control the range of years displayed in the year drop-down: either relative to current year (-nn:+nn) or absolute (nnnn:nnnn).
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.DisplayMode">
            <summary>
            Gets/Sets the DatePicker's DisplayMode
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.IsRightToLeft">
            <summary>
            Gets/Sets whether the current language is drawn from right to left. 
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.Value">
            <summary>
            Gets/Sets the DatePicker 's select value
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.OnBeforeShow">
            <summary>
            Can be a function that takes an input field and current datepicker instance and returns an 
            options object to update the datepicker with. It is called just before the datepicker is displayed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.OnBeforeShowDay">
            <summary>
            The function takes a date as a parameter and must return an array with [0] equal to 
            true/false indicating whether or not this date is selectable, [1] equal to a CSS class name(s) or 
            '' for the default presentation and [2] an optional popup tooltip for this date. It is called for each 
            day in the datepicker before is it displayed.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.OnChangeMonthYear">
            <summary>
            Allows you to define your own event when the datepicker moves to a new month and/or year. 
            The function receives the selected year, month and the datepicker instance as parameters. this refers
            to the associated input field.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.OnClose">
            <summary>
            Allows you to define your own event when the datepicker is closed, whether or not a date is selected.
            The function receives the selected date as a Date and the datepicker instance as parameters. 
            this refers to the associated input field.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.DatePickerOptions.OnSelect">
            <summary>
            Allows you to define your own event when the datepicker is selected. 
            The function receives the selected date(s) as text and the datepicker instance as parameters. 
            this refers to the associated input field.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.AccordionOptions">
            <summary>
            Defines the jQuery UI Accordion plugin options.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.CollapseAnimation">
            <summary>
            Gets/Sets your favorite animation of accrodion In addition to the default,
            'BounceSlide' and 'EaseSlide' are supported
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.IsClearStyle">
            <summary>
            Gets/Sets the clears height and overflow styles after finishing animations. 
            This enables accordions to work with dynamic content. Won't work together with AutoHeight.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.AllowCollapseAllSections">
            <summary>
            Gets/Sets whether all the sections can be closed at once. Allows collapsing the active section by the triggering event (click is the default).
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.OpenSectionEvent">
            <summary>
            Gets/Sets the client event on which to trigger the accordion.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.Navigation">
            <summary>
            Gets/Sets Accordion looks for the anchor that matches location.href and activates it. 
            Great for href-based state-saving. Use navigationFilter to implement your own matcher.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.NavigationFilter">
            <summary>
            Gets/Sets the client function that overwrite the default location.href-matching with your own matcher.(from jquery).
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.OnClientViewChange">
            <summary>
            Gets/Sets the client event handler for accordion's changes event
            </summary>
            <remarks>
              This event's has two params for client function.
              event: jquery object
              ui:jquery object
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.AccordionOptions.SelectedIndex">
            <summary>
            Gets/Sets the active view control's index
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.EnabledContentCache">
            <summary>
            Gets/Sets Whether or not to cache remote tabs content.
            </summary>
            <remarks>
            e.g. load only once or with every click. 
            Cached content is being lazy loaded, e.g once and only once for the first click. 
            Note that to prevent the actual Ajax requests from being cached by the browser you need 
            to provide an extra cache: false flag to ajaxOptions.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.Collapsible">
            <summary>
            Gets/Sets whether tabs allow an already selected tab to become unselected again upon reselection.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.Deselectable">
            <summary>
            Gets/Sets whether the tabs can be select
            </summary>
            <remarks>deprecated in jQuery UI 1.7, use collapsible.</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.SelectedIndex">
            <summary>
             Gets/Sets the current selected tab's index
            </summary>
            <remarks>Zero-based index of the tab to be selected on initialization. To set all tabs to nselected pass -1 as value.</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.Spinner">
            <summary>
            Gets/Sets the HTML content of this string is shown in a tab title while remote content is loading. 
            </summary>
            <remarks>
            Pass in empty string to deactivate that behavior.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabLoad">
             <summary>
            Gets/Sets the tabs client load event handler.
             </summary>
             <remarks>This event is triggered after the content of a remote tab has been loaded.</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabShow">
            <summary>
            Gets/Sets the tabs client show event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is shown.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabAdd">
            <summary>
            Gets/Sets the tabs add event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is added
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabRemove">
            <summary>
            Gets/Sets the tab remove event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is removed.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabSelected">
            <summary>
            Gets/Sets the tabs client tab selected event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is selected.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabEnabled">
            <summary>
            Gets/Sets the tabs client enabled event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is enabled.
            </remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.TabsOptions.OnTabDisabled">
            <summary>
            Gets/Sets the tabs client disabled event handler.
            </summary>
            <remarks>
            This event is triggered when a tab is disable.
            </remarks>
        </member>
        <member name="T:DNA.Mvc.jQuery.Orientation">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Orientation.Notset">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Orientation.Vertical">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Orientation.Horizontal">
            <summary>
            
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.RevertModes">
            <summary>
            Enumerates  the revert modes
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.RevertModes.NotSet">
            <summary>
            Specified not using revert mode
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.RevertModes.Original">
            <summary>
            Specified using the original revert mode.
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.RevertModes.Valid">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.RevertModes.Invalid">
            <summary>
            
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.Helpers">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Helpers.Clone">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Helpers.Original">
            <summary>
            
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.SnapModes">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.SnapModes.Both">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.SnapModes.Inner">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.SnapModes.Outer">
            <summary>
            
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.Containers">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Containers.NotSet">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Containers.Parent">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Containers.Document">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Containers.Window">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Containers.Customize">
            <summary>
            
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.Tolerances">
            <summary>
            
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Tolerances.Intersect">
            <summary>
            draggable overlaps the droppable at least 50%
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Tolerances.Pointer">
            <summary>
            mouse pointer overlaps the droppable
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Tolerances.Fit">
            <summary>
            draggable overlaps the droppable entirely
            </summary>
        </member>
        <member name="F:DNA.Mvc.jQuery.Tolerances.Touch">
            <summary>
            draggable overlaps the droppable any amount
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.TextBoxOptions">
            <summary>
            Represents the options of the jQuery textbox plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.Value">
            <summary>
            Gets/Sets the TextBox's value.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.Clearable">
            <summary>
            Gets/Sets whether the TextBox can be show the clear text button.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.Width">
            <summary>
            Gets/Sets the TextBox's width in pixel.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.Height">
            <summary>
            Gets/Sets the TextBox's height in pixel
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.ClearButtonToolTipText">
            <summary>
            Gets/Sets the clear text botton's tool tip,if the Clearable property set to false this property will be ignored.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.IconCssClass">
            <summary>
            Gets/Sets the icon css class of the TextBox.If this property sets the icon will show on the left of the TextBox.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.TextCssClass">
            <summary>
            Gets/Sets the TextBox's text class name.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.ActiveCssClass">
            <summary>
            Gets/Sets the active css class name of the TextBox this class will be toggle when the TextBox has the focus.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.CssClass">
            <summary>
            Gets/Sets the TextBox container class name.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.HoverCssClass">
            <summary>
            Gets/Sets the hover class name of the TextBox
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.WaterMarkText">
            <summary>
            Gets/Sets the water mark text shows when the textbox is empty
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.WaterMarkCssClass">
            <summary>
            Gets/Sets the water mark text's style class.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.TextBoxOptions.OnChanged">
            <summary>
            Getes/Sets the scripts trigger when the text is changed. 
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.MenuOptions">
            <summary>
            Represents the options of the jQuery menu plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.MenuType">
            <summary>
            Idendifiy the menu type.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.TargetID">
            <summary>
            Specify the target element id for dropdown/context menu.
            </summary>
            <remarks>Initialize the menu with the target option specified.</remarks>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.DropdownEvent">
            <summary>
            Specified the the target element open menu's event.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.TopMenuCssClass">
             <summary>
            Specify the top menu css class of the menu.
             </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.TopItemCssClass">
            <summary>
            Specify the top menu item css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.TopItemHoverCssClass">
            <summary>
            Specify the top menu item hover css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.TopItemSelectedCssClass">
            <summary>
            Specify the top menu item selected css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.SubMenuCssClass">
            <summary>
            Specify the sub menu css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.SubMenuItemCssClass">
            <summary>
            Specify the sub item css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.SubMenuItemHoverCssClass">
            <summary>
            Specify the sub item hover css class of the menu.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.ShowSpliter">
            <summary>
             Gets/Sets whether the spliter show between the top menu items.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.SpliterIconCssClass">
            <summary>
            Gets/Sets the spliter icon css class of the top menu items.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.OnBeforeMenuOpen">
            <summary>
            This event is raise before the menu open
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.OnMenuOpen">
            <summary>
            This event is raise after the menu open.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.OnBeforeMenuClose">
            <summary>
            This event is raise before the menu close
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.MenuOptions.OnMenuClose">
            <summary>
            This event is raise after the menu is closed.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.CheckBoxOptions">
            <summary>
            Represents the options of the checkbox plugin
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.CheckBoxOptions.Value">
            <summary>
            Gets/Sets the checkbox value.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.CheckBoxOptions.Text">
            <summary>
            Gets/Sets the text shows on the rightside of the checkbox.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.CheckBoxOptions.CssClass">
            <summary>
            Gets/Sets the css class name of the checkbox
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.CheckBoxOptions.CheckedCssClass">
            <summary>
            Gets/Sets the css class name of the checkbox when the value is true.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.CheckBoxOptions.UncheckCssClass">
            <summary>
            Gets/Sets the css class name of the checkbox when the value is set to false.
            </summary>
        </member>
        <member name="T:DNA.Mvc.jQuery.AjaxFormExtensions">
            <summary>
            Represents support for jQuery ajax form in an application.
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.AjaxFormExtensions.AjaxFormHelper(System.Web.Mvc.AjaxHelper,DNA.Mvc.jQuery.jQueryAjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            
            </summary>
            <param name="ajaxHelper"></param>
            <param name="options"></param>
            <param name="htmlAttributes"></param>
            <returns></returns>
        </member>
        <member name="T:DNA.Mvc.jQuery.TreeViewExtensions">
            <summary>
            Provides the helper methods to build the html elements and treeview jQuery script.
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode})">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="nodes">Specified the treeivew root nodes</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode},DNA.Mvc.jQuery.TreeViewOptions)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="nodes">Specified the treeivew root nodes</param>
            <param name="options">The options for treeivew</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.IEnumerable{DNA.Mvc.HierarchicalNode},DNA.Mvc.jQuery.TreeViewOptions,System.Object)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="nodes">Specified the treeivew root nodes</param>
            <param name="options">The options for treeivew</param>
            <param name="htmlAttributes"></param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.HierarchicalNode,DNA.Mvc.jQuery.TreeViewOptions)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="root">Specified the treeivew root node which the treeview build from</param>
            <param name="options">The options for treeivew</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.HierarchicalNode)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="root">Specified the treeivew root node which the treeview build from</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.HierarchicalNode,DNA.Mvc.jQuery.TreeViewOptions,System.Object)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="root">Specified the treeivew root node which the treeview build from</param>
            <param name="options">The options for treeivew</param>
            <param name="htmlAttributes"></param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.IHierarchicalNodeProvider,DNA.Mvc.jQuery.TreeViewOptions)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="provider">The provider use to get the node data that impletement the IHierarchicalNodeProvider</param>
            <param name="options">The options for treeivew</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.IHierarchicalNodeProvider)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="provider">The provider use to get the node data that impletement the IHierarchicalNodeProvider</param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.TreeViewExtensions.TreeView(System.Web.Mvc.AjaxHelper,System.String,DNA.Mvc.IHierarchicalNodeProvider,DNA.Mvc.jQuery.TreeViewOptions,System.Object)">
            <summary>
            Genernate the html elemens and jQuery script for treeview plugin
            </summary>
            <param name="helper">The ajax helper object</param>
            <param name="name">Specified the name of treeview</param>
            <param name="provider">The provider use to get the node data that impletement the IHierarchicalNodeProvider</param>
            <param name="options">The options for treeivew</param>
            <param name="htmlAttributes"></param>
            <returns>the html elements for treeivew</returns>
        </member>
        <member name="T:DNA.Mvc.jQuery.ToolbarDropdown">
            <summary>
            Define a ToolbarItem that contains a dropdown list
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarDropdown.OnSelected">
            <summary>
            Gets/Sets the script when an item selected.
            </summary>
        </member>
        <member name="P:DNA.Mvc.jQuery.ToolbarDropdown.Items">
            <summary>
            Gets/Sets the dropdown list items
            </summary>
        </member>
        <member name="M:DNA.Mvc.jQuery.DropDownExtensions.DropDown(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.List{DNA.Mvc.SelectableNode})">
             <summary>
              Render the jQuery dropdown plugin Html elements and dropdown init script
             </summary>
             <param name="helper">The Ajax Helper</param>
             <param name="name">The name of the dropdown.</param>
             <param name="nodes">The SelectableNode list that render as dropdown items.</param>
             <example>
             <code lang="csharp">
            <![CDATA[List<SelectableNode> nodes=new List<SelectableNode>();
            nodes.Add(new Selectable("Item1"));
            nodes.Add(new Selectable("Item2"));
            nodes.Add(new Selectable("Item3"));
            Ajax.DropDown("myDropDown",nodes); ]]>
             </code>
            </example>
             <returns>The dropdown plugin required html elements.</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.DropDownExtensions.DropDown(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.List{DNA.Mvc.SelectableNode},DNA.Mvc.jQuery.DropDownOptions)">
             <summary>
             Render the jQuery dropdown plugin Html elements and dropdown init script
             </summary>
             <param name="helper">The Ajax Helper</param>
             <param name="name">The name of the dropdown.</param>
             <param name="nodes">The SelectableNode list that render as dropdown items.</param>
             <param name="options">The dropdown plugin option class.</param>
              <example>
            <code>
            <![CDATA[List<SelectableNode> nodes=new List<SelectableNode>();
            nodes.Add(new Selectable("Item1"));
            nodes.Add(new Selectable("Item2"));
            nodes.Add(new Selectable("Item3"));
            Ajax.DropDown<MyUIBuilder>("myDropDown",nodes,
                 new DropDownOptions(){
                                                        Editable=true
                                                      }
            ); ]]>
             </code>
             </example>
             <returns>The dropdown plugin required html elements.</returns>
        </member>
        <member name="M:DNA.Mvc.jQuery.DropDownExtensions.DropDown``1(System.Web.Mvc.AjaxHelper,System.String,System.Collections.Generic.List{DNA.Mvc.SelectableNode},DNA.Mvc.jQuery.DropDownOptions)">
            <summary>
            Render the jQuery dropdown plugin Html elements and dropdown init script
            </summary>
            <typeparam name="UIBuilder">The NodeUIBuilder class which controls the SelectableNodes rendering as html elements. </typeparam>
            <param name="helper">The Ajax Helper</param>
            <param name="name">The name of the dropdown.</param>
            <param name="nodes">The SelectableNode list that render as dropdown items.</param>
            <param name="options">The dropdown plugin option class.</param>
            <returns>The dropdown plugin required html elements.</returns>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect DotNetAge
China China
In 1999, I started programming using Delphi, VB, VJ.From 2002 I started with .NET using C#.Since 2005 when i had became an EIP product manager I was focus on EIP and CMS technique. In 2008 i established dotnetage.com and started to shared my ideas and projects online. I believe "No shared no grow"

www.dotnetage.com

Comments and Discussions