Exemple #1
0
 IColumnConfiguration <TModel> IColumnConfiguration <TModel> .SetHeaderAttributes(
     IDictionary <string, object> attributes)
 {
     HeaderAttributes = HeaderAttributes.Merge(attributes);
     return(this);
 }
Exemple #2
0
 IColumnConfiguration <TModel> IColumnConfiguration <TModel> .SetHeaderCssClass(string @class)
 {
     HeaderAttributes = HeaderAttributes.Merge(new { @class });
     return(this);
 }
Exemple #3
0
 IColumnConfiguration <TModel> IColumnConfiguration <TModel> .SetHeaderAttributes(object attributes)
 {
     HeaderAttributes = HeaderAttributes.Merge(attributes);
     return(this);
 }