123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web.Mvc;
- namespace Bowin.Web.Controls.Mvc
- {
- public static class DroppableContainerExtensions
- {
- public static MvcHtmlString DroppableContainer(this HtmlHelper htmlHelper,
- DroppableContainerOptions droppableContainerOptions,
- System.Collections.Generic.IDictionary<string, string> htmlAttributes = null)
- {
- return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.DroppableContainer.CreateControl(droppableContainerOptions, htmlAttributes).Render());
- }
- }
- }
|