or

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridEditFormItem && e.Item.IsInEditMode)// if EditMode is EditForm or PopUp { GridEditFormItem editItem = (GridEditFormItem)e.Item; RadComboBox ddlCity = editItem.FindControl("gvddlPOWCity") as RadComboBox; string city = ddlCity.SelectedValue; . . . . . . . . } }<MasterTableView DataKeyNames="POWId" EditMode="EditForms">
Is there any more modifications need to perform.Please tell me...
Thanks...
hi for all
I've download rad pdf tool
Because
I want to use in web application and I want to show the files for
visitors or users to the site through the rad pdf tool
But I don't know how to use this tool with asp.net
Any one can help me in this matter, or propose to another tool to view the pdf files

<telerik:RadPanelBar ID="RadPanelBar1" Runat="server" Skin="Windows7" Width="90%" ExpandMode="SingleExpandedItem" AllowCollapseAllItems="true"> <Items> <telerik:RadPanelItem runat="server" Text="Company" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg" > <Items> <telerik:RadPanelItem> <ItemTemplate> <uc2:ByCompany ID="ByCompany1" runat="server" /> </ItemTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem > <telerik:RadPanelItem runat="server" Text="Analyst" ImagePosition="Right" ImageUrl="Images/Expand.jpg" ExpandedImageUrl="Images/Collapse.jpg"> <Items> <telerik:RadPanelItem> <ItemTemplate> <uc3:ByAnalyst ID="ByAnalyst1" runat="server" /> </ItemTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem >Public Class Person Public Property Firstname as String Public Property Surname as String Public Property Age as Integer Public Property Vehicles as List(Of Vehicle)End ClassPublic Class Vehicle Public Property Make as String Public Property Model as String Public Property Color as StringEnd Class