This question is locked. New answers and comments are not allowed.
Hi,
I have a radgrid which has grouping enabled on a column using the following code :
All other columns are bound as follows :
I am using WHITE to automate the UI, and I am not able to get gridcell when rows are grouped. Is there anyway I can read groups from the grid and then read rows in that group?
Thanks,
Nitin
I have a radgrid which has grouping enabled on a column using the following code :
| <RadGrid:RadGridView.GroupDescriptors> |
| <data:GroupDescriptor Member="GroupName" > |
| <data:GroupDescriptor.AggregateFunctions> |
| <data:CountFunction Caption="Total :" ResultFormatString="{}{0:d2}" /> |
| </data:GroupDescriptor.AggregateFunctions> |
| </data:GroupDescriptor> |
| </RadGrid:RadGridView.GroupDescriptors> |
All other columns are bound as follows :
| <RadGrid:GridViewColumn.CellStyle> |
| <Style TargetType="RadGrid:GridView.GridViewCell"> |
| <Setter Property="Template"> |
| <Setter.Value> |
| <ControlTemplate TargetType="RadGrid:GridView.GridViewCell"> |
| <Border BorderBrush="#FFB3B3B3" BorderThickness="0,0,0,0"> |
| <StackPanel Orientation="Horizontal" VerticalAlignment="Center"> |
| <RadioButton GroupName="{Binding Field}" VerticalAlignment="Center" IsChecked="{Binding Path=UploadedValueSelected,Mode=TwoWay}" /> |
| <TextBox Text="{Binding UploadedValue}" Width="125" /> |
| </StackPanel> |
| </Border> |
| </ControlTemplate> |
| </Setter.Value> |
| </Setter> |
| </Style> |
| </RadGrid:GridViewColumn.CellStyle> |
I am using WHITE to automate the UI, and I am not able to get gridcell when rows are grouped. Is there anyway I can read groups from the grid and then read rows in that group?
Thanks,
Nitin