16 lines
468 B
C#
16 lines
468 B
C#
using System.Text;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Kreta.Web.Helpers
|
|
{
|
|
public static class EmptyExtensions
|
|
{
|
|
public static MvcHtmlString KretaEmpty(this HtmlHelper helper, int width = 6)
|
|
{
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.AppendFormat("<div class=\"searchInputRowHeight emptyRow {0} \"></div>", BootsrapHelper.GetSizeClasses(width));
|
|
|
|
return new MvcHtmlString(sb.ToString());
|
|
}
|
|
}
|
|
}
|