Example #1
0
		public static MvcDiv BeginBootstrapXsDiv(this HtmlHelper html, int columns)
		{
			return html.BeginDiv(ResourcesExtensions.BootstrapColumnClass(columns, ResourcesExtensions.BootstrapScreenSize.xs));
		}
 public static ContainerElement BeginPanelDefault(this HtmlHelper helper)
 {
     return helper.BeginDiv("panel panel-default");
 }
Example #3
0
		// Methods
		public static MvcDiv BeginDiv(this HtmlHelper html)
		{
			return html.BeginDiv(null);
		}
 public static ContainerElement BeginPanelBody(this HtmlHelper helper)
 {
     return helper.BeginDiv("panel-body");
 }