or

| protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridDataItem) |
| { |
| GridDataItem dataItem = e.Item as GridDataItem; |
| Button Button1 = (Button)(dataItem["TemplateColumn"]).FindControl("Button1"); |
| Button1.OnClientClick = String.Format(@"{0}.__doPostBack(""{1}"",""{2}"");return false;", RadAjaxManagerProxy1.ClientID, Button1.UniqueID, Button1.CommandArgument); |
| } |
| } |
| GridTableView tableView = e.Item.OwnerTableView; |
| GridTableView detailView = tableView.Items[e.Item.ItemIndex].ChildItem.NestedTableViews[1]; |
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <SelectFields> |
| <telerik:GridGroupByField FieldAlias="AccountName" FieldName="AccountName" HeaderText="Account"> |
| </telerik:GridGroupByField> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldName="AccountName" FieldAlias="AccountName" HeaderText="Account"> |
| </telerik:GridGroupByField> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
Hi there
This is first time i will be using Telerik controls in my visual Studio 2008 C# application.
This is very simple application which will be used to save the Book Names in the library.
There will be 10 rows with 3 columns.Each column will have one textbox where user can enter name of books.
there will be one submit button in the bottom. User hits the enter button and all the names from 30 textboxes will be saved to database in one hit.
Can someone please give me some headsup about this.
Thanks!