how to add rows and columns dynamically in ultrawebgrid and could you please give the link of user manual for ultrawebgrid.
You can find our online help documentation for all the current versions of NetAdvantage for .NET at the following page of our website:http://ko.infragistics.com/support/documentation.aspx
In the help collection for NetAdvantage for .NET 2008 Volume 2, this article shows how to add rows and columns to the grid in code, without using databinding:Creating an Unbound WebGrid
yes , it is helped me a lot thanks , i have one more doubt , how to add a hyper link header column in the ultrawebgrid.
There are two ways to do this.
The simpler way is to put the HTML for your hyperlink as part of the Header.Caption property for your column. You must have the EncdeHtmlContent property of the column set to "false" for this to work; otherwise, you'll see the raw HTML in the column header instead.
The other way is to use a templated column, and to place your hyperlink in the header template of that column. This provides you with more options and flexibility, depending on what controls you want to put in the header. This approach is "overkill" for a simple hyperlink, and will affect your performance, so if you don't need the extra capabilities, I suggest putting the HTML hyperlink in the column's caption instead.