Exemplo n.º 1
0
 public static MvcHtmlString PagerForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, string controllerName, object routevalues, object htmlAttributes, string pagerCss, int totalInGroup, string prevText, string nextText)
 {
     return(HtmlHelperExtensions.PagerBuilder(source, index, list, actionName, controllerName, routevalues, htmlAttributes, pagerCss, totalInGroup, prevText, nextText));
 }
Exemplo n.º 2
0
 public static MvcHtmlString PagerForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, object routevalues, object htmlAttributes, string pagerCss)
 {
     return(HtmlHelperExtensions.PagerBuilder(source, index, list, actionName, string.Empty, routevalues, htmlAttributes, pagerCss, 15, "<<", ">>"));
 }
Exemplo n.º 3
0
 public static MvcHtmlString PagerForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, object routevalues, int totalInGroup, string prevText, string nextText)
 {
     return(HtmlHelperExtensions.PagerBuilder(source, index, list, actionName, string.Empty, routevalues, null, "", totalInGroup, prevText, nextText));
 }
Exemplo n.º 4
0
 public static MvcHtmlString PagerForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, string controllerName, object routevalues, string pagerCss)
 {
     return(HtmlHelperExtensions.PagerBuilder(source, index, list, actionName, controllerName, routevalues, null, pagerCss, 15, "<<", ">>"));
 }
Exemplo n.º 5
0
 public static MvcHtmlString PagerForPagedList(this HtmlHelper source, int index, IPagedList list, string actionName, string controllerName)
 {
     return(HtmlHelperExtensions.PagerBuilder(source, index, list, actionName, controllerName, null, null, "", 15, "<<", ">>"));
 }