I have a very simple problem , I have a Datagrid as below , it has GridViewComboBoxColumn ...but for Comboboxcolumn in RADGRID there is no Selection changed / Selected indext event., I need to update some data based on the item selected in the Dropdown list for that row
. i basically need to capture "Selection changed / Selected indext change for the Comboxcolumn.
Can you please help me with way to achicve the same. Any code sample would be great help..
<telerikGridView:RadGridView Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="5" HorizontalAlignment="Left"
Name="grdPOReceipt" ShowGroupPanel="False" IsFilteringAllowed="False" AutoGenerateColumns="False" ColumnsWidthMode="Fill"
RowIndicatorVisibility="Collapsed"
CanUserFreezeColumns="False"
CanUserReorderColumns="False"
ColumnBackground="White"
UseAlternateRowStyle="True"
FontSize="10"
Width="1150"
MinHeight="180"
MaxHeight="180"
Style="{StaticResource BPRadGridViewStyle}"
RowStyle="{StaticResource RowStyle}"
ScrollMode="RealTime"
AlternateRowStyle="{StaticResource RowStyle_Alternate}"
DataLoaded="RadGridView1_DataLoaded"
>
<telerikGridView:RadGridView.Columns>
<telerikGridView:GridViewDataColumn HeaderText="Unit" DataMemberBinding="{Binding Unit}" Width="60" IsReadOnly="True"/>
<telerikGridView:GridViewDataColumn HeaderText="Deli.Completed" Width="100">
<telerikGridView:GridViewDataColumn UniqueName="BatchNo" HeaderText="Batch No" DataMemberBinding="{Binding BatchNo}" Width="144" Background="#2000FF00" IsVisible="True" />
<telerikGridView:GridViewDataColumn UniqueName="Comments" HeaderText="Comments" Width="144" Background="#2000FF00" />
</telerikGridView:RadGridView.Columns>
</telerikGridView:RadGridView>