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))); }
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))); }
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))); }