Hi,
I was wondering if it is possible to have custom header in WPF RdaGridView where a header of 3 column would have a header parent similar to the group header idea. This only for personation purposes and doesn’t affect column functionality. Each column is bound to a field in the view-model. Here is illustration of the header we would like to have.
-------------------------------------------------------------------------------------
| | | Group Header | |
| | |-----------------------------------| |
Col1 | Col2 | Col3 | col4 | Col5 | Col6 | Col7 |
| | | | | | |
-------------------------------------------------------------------------------------
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
this.progressBar.Visibility = System.Windows.Visibility.Visible; //Do Some thing that blocks UI thread this.progressBar.Visibility = System.Windows.Visibility.Hidden;Once I run this I dont see the progress bar.
Is there something I need to do?
Should I put the progress bar call in a worker thread?
Can you please help me with some sample?
Thanks & regards,
Santhosh B

We use the RadChart in a DataTemplate.
We would like to show the hand-cursor when moving over the chart.
<Controls1:RadChart Cursor ="Hand" mapinfo:MapLayer.Location="{Binding Location}" Visibility="{Binding Hide, Converter={StaticResource BoolToCollapsedConverter}}" Width="32" Height="32" Background="Transparent" BorderBrush="Transparent" Name="pin" Content="{Binding GebyrChart}" >
But… the hand shows only when the mouse points to the border/side area of the chart. When moving to the middle, over the (pie) chart the cursor changes to the default arrow.
We have a PopUpMenu popping up on right-click. This does not work when the mouse is in the center of the chart.
<telerik:RadToggleButton Content="Switch View" Width="90" Grid.Row="0" HorizontalAlignment="Left" IsChecked="{Binding Path=AlternitiveViewActive }" Checked="ToggleButton_Checked" Unchecked="RadToggleButton_Unchecked" /> <Grid Grid.Row="1" Name="gridUnTabbed"> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition Width="Auto"/> <ColumnDefinition /> </Grid.ColumnDefinitions> <telerik:RadTabControl Grid.Column="0"> <telerik:RadTabItem Header="Exception" > <ScrollViewer> <TextBox Name="txtException2" TextWrapping="WrapWithOverflow" /> </ScrollViewer> </telerik:RadTabItem> </telerik:RadTabControl> <GridSplitter Grid.Column="1" Name="tabSplitter" Width="4" ResizeBehavior="PreviousAndNext" Background="Gray" HorizontalAlignment="Stretch" /> <telerik:RadTabControl Grid.Column="2"> <telerik:RadTabItem Header="StackTrace"> <ScrollViewer> <TextBox Name="txtStackTrace2" TextWrapping="WrapWithOverflow" /> </ScrollViewer> </telerik:RadTabItem> </telerik:RadTabControl> </Grid><common:MetrixScheduleViewGroupHeaderSelector.HorizontalDayViewDateTemplate> <DataTemplate> <TextBlock Margin="4" Text="{Binding Name, StringFormat=dd dddd}"/> </DataTemplate> </common:MetrixScheduleViewGroupHeaderSelector.HorizontalDayViewDateTemplate>RadItemsControl itemsControl = this.gridView.ItemsControl; this.currentDropIndex = itemsControl.Records.IndexOf(row.Record);this.currentDropIndex = gridView.Items.IndexOf(row.Item);