ASP.Net Property GridASP.Net PropertyGrid in it's current state is a further development of
http://www.codeproject.com/aspnet/xacc_propertygrid.asp article, written by
leppie, which aim is to bring a functionality of Windows
PropertyGrid control to the Web.
ASP.Net PropertyGrid client part is based on a jQuery JavaScript library and can theoretically be used apart from the ASP.Net back-end, given that a correct HTML markup is supplied and the same Ajax protocol is used.
Example: ASP.Net PropertyGrid in action
On the screen shot above is shown a single
PropertyGrid control placed on a Web Form. As an object to display is selected the control instance itself. The following code was used to assign this object:
...
protected void Page_Load(object sender, EventArgs e)
{
this.PropertyGrid1.SelectedObject = this.PropertyGrid1;
}
...