Intial
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Web.Mvc;
|
||||
using HtmlTags;
|
||||
|
||||
namespace InventoryTraker.Web.Helpers
|
||||
{
|
||||
public class AngularNgRepeatHelper<TModel> : AngularModelHelper<TModel>, IDisposable
|
||||
{
|
||||
public AngularNgRepeatHelper(HtmlHelper helper,
|
||||
string variableName, string propertyExpression)
|
||||
: base(helper, variableName)
|
||||
{
|
||||
var div = new HtmlTag("div");
|
||||
div.Attr("ng-repeat",
|
||||
string.Format("{0} in {1}", variableName, propertyExpression));
|
||||
div.NoClosingTag();
|
||||
|
||||
Helper.ViewContext.Writer.Write(div.ToString());
|
||||
}
|
||||
|
||||
void IDisposable.Dispose()
|
||||
{
|
||||
Helper.ViewContext.Writer.Write("</div>");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user