Hi,
I have a datagrid control in that i have added one more column to the grid .
<
xcdg:DataGridControl Grid.Row="2" Loaded="XcDataGrid_Loaded" Name="XcDataGrid" HorizontalAlignment="Left">
<xcdg:DataGridControl.Columns>
<xcdg:Column FieldName="pp" Title="pp">
<xcdg:Column.CellContentTemplate>
<DataTemplate>
<TextBox x:Name="mytext" ></TextBox>
</DataTemplate>
</xcdg:Column.CellContentTemplate>
</xcdg:Column>
</xcdg:DataGridControl.Columns>
</xcdg:DataGridControl>
How Can i access the textbox in the datatemplate from Code behind ????