Sorry one thing I did miss out :( was thactual attribute
[AttributeUsage(AttributeTargets.Property)]
public class CellCssAttribute : Attribute
{
public String Class { get; private set; }
public CellCssAttribute()
{
}
public CellCssAttribute(String css)
{
Class = css;
}
}
See my blog C# Bits | Twitter @sjnaughton Always seeking an elegant solution.
All-Star
17916 Points
5681 Posts
MVP
Re: How to set column width for particular column in dynamic data model asp.net .?
Jun 27, 2014 05:02 AM|sjnaughton|LINK
Sorry one thing I did miss out :( was thactual attribute
Always seeking an elegant solution.