12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web.Mvc;
- using Bowin.Web.Controls.Mvc;
- namespace System.Web.Mvc
- {
- public static class ToolbarExtensions
- {
- public static MvcHtmlString Toolbar(this HtmlHelper htmlHelper,
- ToolbarOptions toolbarOptions,
- System.Collections.Generic.IDictionary<string, string> htmlAttributes = null)
- {
- return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.Toolbar.CreateControl(toolbarOptions, htmlAttributes).Render());
- }
- }
- }
|