Example #1
0
        public MvcHtmlString JQDropDownList(JQDropDownList dropDownList, string id)
        {
            JQDropDownListRenderer jQDropDownListRenderer = new JQDropDownListRenderer(dropDownList);

            dropDownList.ID = id;
            return(MvcHtmlString.Create(jQDropDownListRenderer.RenderHtml()));
        }
 public MvcHtmlString JQDropDownList(Trirand.Web.Mvc.JQDropDownList dropDownList, string id)
 {
     JQDropDownListRenderer renderer = new JQDropDownListRenderer(dropDownList);
     dropDownList.ID = id;
     return MvcHtmlString.Create(renderer.RenderHtml());
 }