We have upgraded latest version. We are having some invisible columns in radgridview.We want to hide some of columns in GridView.When we click a cell we have to take those invisible columns.In previous version we have taken in CellEdit_Ended event.But in latest version we cant able to take those invisible columns. We have tried in Selectionchnaged,RowEdit_Ended event of grid too. But we cant get the invisible columns. How to take invisible column values of row when we click a cell in that row?
We are facing same problem in RadCOmbo.Below is the definition of Gridview.I want to take the supplyno when i click a particular cell.How can i accomplish this?
<telerikNavigation:RadTabItem x:Name="tabitmSupplies" Header="Supplies" Tag="10" Height="25" FontSize="12" >
<telerikGrid:RadGridView x:Name="grdSupplies" AutoGenerateColumns="False" Grid.Row="2" Margin="7,10,7,7" ShowColumnFooters="False"
RowIndicatorVisibility="Collapsed" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Visible"
ScrollMode="RealTime" ShowGroupPanel="False" >
<telerikGrid:RadGridView.Columns>
<telerikGrid:GridViewDataColumn Header="Supplies Need" DataMemberBinding="{Binding ProductNo}" Width="140" TextWrapping="Wrap" />
<telerikGrid:GridViewDataColumn Header="Quantity Per Store" DataMemberBinding="{Binding Qty}" Width="150" TextWrapping="Wrap" />
<telerikGrid:GridViewDataColumn Header="JobSupplyNo" DataMemberBinding="{Binding JobSupplyNo}" IsVisible="False" Width="0" TextWrapping="Wrap" />
</telerikGrid:RadGridView.Columns>
</telerikGrid:RadGridView>
</telerikNavigation:RadTabItem>
Regards
Lakshmi