public DefaultServerGridProcessor(TagHelperContext context, TagHelperOutput output, GridTagHelper tag, GridOptions options, ContextualizedHelpers helpers)
 {
     this.context = context; this.output = output; this.tag = tag;
     this.options = options; this.helpers = helpers;
     basePrefix   = tag.For.Name;
     AdjustColumns();
 }
 public DefaultServerGridProcessor(TagHelperContext context, TagHelperOutput output, GridTagHelper tag, GridOptions options, ContextualizedHelpers helpers)
 {
     this.context = context; this.output = output; this.tag = tag;
     this.options = options; this.helpers = helpers;
     basePrefix = tag.For.Name;
     AdjustColumns();
 }
コード例 #3
0
ファイル: GridTagHelperTest.cs プロジェクト: zmk523/Util
 /// <summary>
 /// 测试初始化
 /// </summary>
 public GridTagHelperTest(ITestOutputHelper output)
 {
     _output    = output;
     _component = new GridTagHelper();
 }