Example #1
0
 public static BootstrapRow Row(this HtmlHelper htmlHelper, object htmlAttributes, IEnumerable <object> columnSizes, IEnumerable <object> columnOffsets = null)
 {
     return(RowHelper(htmlHelper, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes), BootstrapColumnSizes.Convert(columnSizes), BootstrapColumnOffsets.Convert(columnOffsets)));
 }
Example #2
0
 public static BootstrapRow Row(this HtmlHelper htmlHelper, IDictionary <string, object> htmlAttributes, IEnumerable <object> columnSizes, IEnumerable <object> columnOffsets = null)
 {
     return(RowHelper(htmlHelper, htmlAttributes, BootstrapColumnSizes.Convert(columnSizes), BootstrapColumnOffsets.Convert(columnOffsets)));
 }
Example #3
0
 public static BootstrapRow Row(this HtmlHelper htmlHelper, IEnumerable <object> columnSizes, IEnumerable <object> columnOffsets = null)
 {
     return(RowHelper(htmlHelper, new RouteValueDictionary(), BootstrapColumnSizes.Convert(columnSizes), BootstrapColumnOffsets.Convert(columnOffsets)));
 }