コード例 #1
0
ファイル: GridExtensions.cs プロジェクト: bisaga/Grid.Blazor
 public static HtmlGrid <T> Grid <T>(this IHtmlHelper helper, IEnumerable <T> items, string viewName, IViewEngine viewEngine)
 {
     return(Grid(helper, items, GridRenderOptions.Create(string.Empty, viewName), viewEngine));
 }
コード例 #2
0
 public static HtmlGrid <T> Grid <T>(this HtmlHelper helper, IEnumerable <T> items, string viewName)
     where T : class
 {
     return(Grid(helper, items, GridRenderOptions.Create(string.Empty, viewName)));
 }