public DefaultServerDetailProcessor(TagHelperContext context, TagHelperOutput output, DetailTagHelper 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 DefaultServerDetailProcessor(TagHelperContext context, TagHelperOutput output, DetailTagHelper tag, GridOptions options, ContextualizedHelpers helpers)
 {
     this.context = context; this.output = output; this.tag = tag;
     this.options = options; this.helpers = helpers;
     basePrefix   = tag.For.Name;
     if (basePrefix == "Model")
     {
         basePrefix = string.Empty;
     }
     AdjustColumns();
 }