This is a migrated thread and some comments may be shown as answers.

add radgrid to auto generated popup edit form

1 Answer 146 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rodney
Top achievements
Rank 1
Rodney asked on 19 Feb 2013, 04:54 PM
vb.net web application

hi i have a page with a radgrid on it and the columns are manually bound the edit/ insert mode is a auto popup form but i need to add a second radgrid to the edit form (in a column to the right preferably). Is there a way to do this with out changing the edit type to a template or userform.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 Feb 2013, 05:15 AM
Hi,

One suggestion is to add the RadGrid inside the GridTempalteColumn's EditItemTemplate as follows.

ASPX:
<telerik:GridTemplateColumn>
    <EditItemTemplate>
        <telerik:RadGrid ID="Radgrid1" DataSourceID="SqlDataSource1" runat="server" AutoGenerateColumns="false"
            AutoGenerateEditColumn="true">
            <MasterTableView>
                <Columns>
                    <telerik:GridBoundColumn DataField="EmployeeID">
                    </telerik:GridBoundColumn>
                </Columns>
            </MasterTableView>
        </telerik:RadGrid>
    </EditItemTemplate>
</telerik:GridTemplateColumn>

Thanks,
Shinu.
Tags
Grid
Asked by
Rodney
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or