SHopping Center : Id, Name
Shop : Id, ShoppingCenterId, Name
When I am trying to insert a child record i am not getting the parent id. here is my declaration
<telerik1:RadGrid ID="RadGrid1" runat="server" Skin="Web20"
GridLines="None" AllowPaging="True" AllowSorting="True"
Width="97%" AutoGenerateColumns="False"
ShowStatusBar="True"
OnNeedDataSource="RadGrid1_NeedDataSource"
OnUpdateCommand="RadGrid1_UpdateCommand"
OnInsertCommand="RadGrid1_InsertCommand"
onitemcreated="RadGrid1_ItemCreated"
OnDeleteCommand="RadGrid1_DeleteCommand" OnDetailTableDataBind="RadGrid1_DetailTableDataBind">
<MasterTableView GridLines="None" Width="100%" CommandItemDisplay="Top"
DataKeyNames="Id" AllowAutomaticInserts="True">
<CommandItemTemplate>
<div style="padding: 0 5px;">
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="InitInsert"
Visible ='<%# !RadGrid1.MasterTableView.IsItemInserted %>'>
Add Item</asp:LinkButton>
</div>
</CommandItemTemplate>
<detailtables>
<telerik1:GridTableView runat="server" DataKeyNames="Id" Name="SCCotenants" AllowAutomaticDeletes="true" AllowAutomaticInserts="true"
AllowAutomaticUpdates="true" CommandItemDisplay="Top">
<CommandItemTemplate>
<div style="padding: 0 5px;">
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="InitInsert"
Visible ='<%# !RadGrid1.MasterTableView.IsItemInserted %>'>
Add Cotenant</asp:LinkButton>
</div>
</CommandItemTemplate>
<parenttablerelation>
<telerik1:GridRelationFields DetailKeyField="ShoppingCenterId" MasterKeyField="Id" />
</parenttablerelation>
<rowindicatorcolumn>
<HeaderStyle Width="20px" />
</rowindicatorcolumn>
<expandcollapsecolumn>
<HeaderStyle Width="20px" />
</expandcollapsecolumn>
<Columns>
<telerik1:GridBoundColumn DataField="ShoppingCenterId"
HeaderText="Shopping Center" UniqueName="ShoppingCenterIDColumn" Visible="true" ItemStyle-Wrap="True">
</telerik1:GridBoundColumn>
and in the insertcommand
var scid = (e.Item as GridEditableItem)["ShoppingCenterIDColumn"].Controls[0] as TextBox;
scct.ShoppingCenterId = int.Parse(((TextBox)scid).Text);
i am not getting the ParentId here. Not sure what I am missing. Can someone help me with this one please.
Thanks
Dilip