This is a migrated thread and some comments may be shown as answers.

Pivot Grid "The method or operation is not implemented."

1 Answer 57 Views
PivotGrid
This is a migrated thread and some comments may be shown as answers.
Anveshreddy
Top achievements
Rank 1
Anveshreddy asked on 02 Jul 2015, 05:41 PM

Hi I am trying to use PivotGrid on my wpf usercontrol and getting this error "The method or operation is not implemented.". All I am doing is just put the pivot grid on the user control which already has two combo boxes, I haven't even got to the part where I bind to a data source. I get this error at run time. Below is my xaml content. I don't even have any code written that references pivot grid. 

<Grid>
        <Label Content="Omnibus Report" HorizontalAlignment="Left"  Margin="77,64,0,0" VerticalAlignment="Top" Height="51" Width="364" />
        <telerik:RadComboBox Margin="77,115,600,652" x:Name ="cmbClients" SelectionChanged="cmbClients_SelectionChanged" DisplayMemberPath="Name" IsEditable="false" ItemsSource ="{Binding Crms}"
            BorderThickness="1" Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" Foreground="#FF73B92D" BorderBrush="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" Loaded="cmbClients_Loaded" />
        <telerik:RadComboBox Margin="77,166,600,601" x:Name ="cmbBeams" SelectionChanged="cmbBeams_SelectionChanged" DisplayMemberPath="BeamName" IsEditable="false" ItemsSource ="{Binding Beams}"
            BorderThickness="1" Background="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" Foreground="#FF73B92D" BorderBrush="{DynamicResource {x:Static SystemColors.WindowBrushKey}}" Loaded="cmbBeams_Loaded" />

        <pivot:RadPivotGrid HorizontalAlignment="Left" Margin="0,0,0,2" VerticalAlignment="Bottom" BorderThickness="1" >
            
        </pivot:RadPivotGrid>

    </Grid>

1 Answer, 1 is accepted

Sort by
0
Nasko
Telerik team
answered on 07 Jul 2015, 10:02 AM
Hello Anveshreddy,

We tested the provided code - snippet and it seems everything works as expected on our side - no error occurs or was observed. As we are not aware of such error concerning RadPivotGrid could you please share with some more detailed information about your scenario that may help us to reproduce the issue on our side. Also, could you please try to isolate the issue in a sample project and send it back to us - thus we could be able to continue our investigation and provide you with a prompt solution or some detailed technical instructions how to resolve it?

We are looking forward to hearing from you.

Regards,
Nasko
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
PivotGrid
Asked by
Anveshreddy
Top achievements
Rank 1
Answers by
Nasko
Telerik team
Share this question
or