Hello,
I have a grid which contains a DetailTables section , The innergrid contain a single boundcolumn, i want access that boundcolumn at server side.
My Inner grid is like
I have a grid which contains a DetailTables section , The innergrid contain a single boundcolumn, i want access that boundcolumn at server side.
My Inner grid is like
<
DetailTables>
<radG:GridTableView ShowHeader="false" Name="Childgrd" ShowFooter="false" DataKeyNames="ClientsNoteId" Width="100%" >
<ParentTableRelation>
<radG:GridRelationFields DetailKeyField="ClientsNoteId" MasterKeyField="ClientsNoteId" />
</ParentTableRelation>
<Columns>
<radG:GridBoundColumn ItemStyle-Width="200px" HeaderText="Note" DataField="Note" UniqueName="uniinnerNote"></radG:GridBoundColumn>
</Columns>
</radG:GridTableView>
</DetailTables>
How can i access the boundcolumn ?
thanks
Monika