This question is locked. New answers and comments are not allowed.
Hello,
I ' m new with the RadGridView controls.
When I add an RadGridview control to an existing Business application Silverlight Project (Silverlight 4). I get the following error
Type 'Telerik.Windows.Controls.RadGridView' is not defined.
I ' m new with the RadGridView controls.
When I add an RadGridview control to an existing Business application Silverlight Project (Silverlight 4). I get the following error
Type 'Telerik.Windows.Controls.RadGridView' is not defined.
<navigation:Page xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="MFIE_ValueInvestingScreener_2010.Telerik" mc:Ignorable="d" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" d:DesignWidth="640" d:DesignHeight="480" Title="Telerik Page"> <Grid x:Name="LayoutRoot"> <telerik:RadGridView Background="#68B3C7C7" Name="MyRaView"> </telerik:RadGridView> </Grid> </navigation:Page>
In the designer view (Telerik.g.i.vb) it propose the following solution
change Telerik.Windows.Controls.RadGridView into global.Telerik.Windows.Controls.RadGridView
When I just change the XAML code into
<Grid x:Name="LayoutRoot">
<telerik:RadGridView >
</telerik:RadGridView>
</Grid>
I don't have the error, but this way I can't reach the grid in the code behind.
Does anyone has a solution for this?
Kind regards,
Philip