Exemplo n.º 1
0
 public static T Hide <T>(this T obj) where T : ICustomControlBaseProperty
 {
     obj.HtmlAttributes = HtmlHelperExtension.MergeAttribute(obj.HtmlAttributes, "style", "display:none");
     return(obj);
 }
Exemplo n.º 2
0
 public static T MergeAttribute <T>(this T obj, string key, string value) where T : ICustomControlBaseProperty
 {
     obj.HtmlAttributes = HtmlHelperExtension.MergeAttribute(obj.HtmlAttributes, key, value);
     return(obj);
 }