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

Error 1 The tag 'RadGridView' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'. Line 13 Position 10. C:\SRC\trunk\Zachys.PriceCardsWFP\Zachys.PriceCardsWPF\PriceChan

9 Answers 1899 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Blake
Top achievements
Rank 1
Blake asked on 03 May 2011, 08:54 PM
After the most recent update my project stopped working.

9 Answers, 1 is accepted

Sort by
0
Vanya Pavlova
Telerik team
answered on 03 May 2011, 09:58 PM
Hello Blake,

 

May you verify that you have added the full list of references related to RadGridView in your project?
Since you have added references to the assembliesTelerik.Windows.Controls, Telerik.Windows.Data, Telerik.Windows.Controls.Input and Telerik.Windows.Controls.GridView  you should not get such error.


Plese check this and let me know whether the issue still persists.


Regards,
Vanya Pavlova
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items
0
Blake
Top achievements
Rank 1
answered on 03 May 2011, 10:05 PM
That did it! Thank you very much!
0
Blake
Top achievements
Rank 1
answered on 21 Jul 2011, 07:29 PM
I just recently updated my Telerik controls and again.

The tag 'RadGridView' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation;clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView'. Line 20 Position 10.

This is the code on my XAML.

<Page x:Class="Zachys.PriceCardsWPF.PriceEvents"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
      mc:Ignorable="d"
      d:DesignHeight="599" d:DesignWidth="845"
    Title="PriceEvents" OpacityMask="{x:Null}" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation;clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView">

    <Grid>
        <Label Content="Sale Events" Height="Auto" HorizontalAlignment="Left" Margin="12,1,0,0" Name="lblSales" VerticalAlignment="Top" Width="Auto" Foreground="#FFCBC8C8" FontWeight="Bold" FontSize="24" OpacityMask="{x:Null}" />
        <DocumentViewer Margin="12,0,12,12" Name="priceCardViewer" Height="256" VerticalAlignment="Bottom" Panel.ZIndex="1" />
        
        <Label Height="28" HorizontalAlignment="Left" Margin="434,5,0,0" Name="lblEvent" VerticalAlignment="Top" Width="70" FontSize="16" FontWeight="Bold" Foreground="#FFAAA1A1" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" />
        <RadioButton Content="Boat" Height="28" HorizontalAlignment="Right" Margin="0,10,241,0" Name="radBoat" VerticalAlignment="Top" ClickMode="Press" FontSize="16" Checked="radBoat_Checked" Width="70" />
        <RadioButton Content="Floor" Height="28" HorizontalAlignment="Left" Margin="590,10,0,0" Name="radFloor" VerticalAlignment="Top" VerticalContentAlignment="Top" FontSize="16" Checked="radFloor_Checked" Width="70" />
        <RadioButton Content="Shelf" Height="28" HorizontalAlignment="Left" Margin="663,10,0,0" Name="radShelf" VerticalAlignment="Top" FontSize="16" Checked="radShelf_Checked" Width="70" />
        <Button Content="Submit" Height="Auto" HorizontalAlignment="Left" Margin="749,7,0,0" Name="btnPrint" VerticalAlignment="Top" Width="Auto" FontSize="16" Click="btnPrint_Click" />
        <Label Content="Selected Event:" Height="28" HorizontalAlignment="Left" Margin="314,5,0,0" Name="label1" VerticalAlignment="Top" Width="130" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" Foreground="#FF8D8989" FontSize="16" FontWeight="Bold" />
        <telerik:RadGridView Margin="12,43,12,0" Name="gvEvents" VerticalAlignment="Top" Height="108" MaxHeight="146" AutoGenerateColumns="False" CanUserSelect="{Binding IsChecked, ElementName=CanUserSelectCheckBox, Mode=TwoWay}" IsReadOnly="True" SelectionUnit="FullRow" SelectionMode="{Binding SelectedItem, ElementName=selectionModeCombo, Mode=TwoWay}" SelectedItem="{Binding SelectedItem, ElementName=selectedItemCombo, Mode=TwoWay}" CurrentItem="{Binding SelectedItem, ElementName=currentItemCombo, Mode=TwoWay}" MouseDoubleClick="gvEvents_MouseDoubleClick" Padding="0" ShowGroupPanel="False" Panel.ZIndex="-1">
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn UniqueName="Codes" Header="EventCodes" />
                <telerik:GridViewDataColumn UniqueName="ItemCounts" Header="Item Counts" />
                <telerik:GridViewDataColumn UniqueName="Name" Header="Event Name" Width="300" />
                <telerik:GridViewDataColumn UniqueName="FromDate" Header="Start Date" Width="100"/>
                <telerik:GridViewDataColumn UniqueName="ToDate" Header="End Date" Width="100"/>
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
    </Grid>
</Page>

0
Vanya Pavlova
Telerik team
answered on 21 Jul 2011, 08:15 PM
Hello Blake,

 
You are getting this error, because you have mixed the namespaces you should use.

Please use either this one:

xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"

or the recommended URI namespace:

All the best,
Vanya Pavlova
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Gaurav
Top achievements
Rank 1
answered on 05 Mar 2012, 06:24 AM
i have updated latest dll references in my silverlight 4 application.
after updating latest dlls my application gives same error
"Error 33 The tag 'RadGridView' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'. TestApp_1\MainPage.xaml 11 10 TestApp_1
"

i have used

 

xmlns

 

 

:telerik="http://schemas.telerik.com/2008/xaml/presentation"
to add reference of telerik on xaml page.

Is it required to have silverlight 5 version with latest telerik controls ?

0
Yordanka
Telerik team
answered on 05 Mar 2012, 08:19 AM
Hi,

Can you confirm version of the Telerik binaries you are referring? 
 
Kind regards,
Yordanka
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
0
Rajesh
Top achievements
Rank 1
answered on 26 Apr 2012, 05:07 AM
Hi, i have all the specified dll's
but eventhougth im getting exception like Error    1    The type or namespace name 'RadGridView' could not be found (are you missing a using directive or an assembly reference?)    E:\ADP\SilverlightSamples\DataGrid Data Binding\DataGridBindingSample\DataGridBindingSample\DataGridBindingSample\obj\Debug\TelerikGrid.g.cs    40    18    DataGridBindingSample


so i added required namespace for 3 times

again  i got exception like
Error    2    The tag 'GridViewDataColumn' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.    E:\ADP\SilverlightSamples\DataGrid Data Binding\DataGridBindingSample\DataGridBindingSample\DataGridBindingSample\TelerikGrid.xaml    15    18    DataGridBindingSample


Error    3    The tag 'GridViewDataColumn' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.    E:\ADP\SilverlightSamples\DataGrid Data Binding\DataGridBindingSample\DataGridBindingSample\DataGridBindingSample\TelerikGrid.xaml    16    18    DataGridBindingSample

Error    1    The tag 'RadGridView' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.    E:\ADP\SilverlightSamples\DataGrid Data Binding\DataGridBindingSample\DataGridBindingSample\DataGridBindingSample\TelerikGrid.xaml    13    10    DataGridBindingSample
 
so please reply me as soon as you can.


here is my source code


Thanks
Rajesh KS


0
Nandhakumar
Top achievements
Rank 1
answered on 06 Aug 2014, 10:53 AM
I added that reference dll files too.. But i still getting that error.....
0
Dimitrina
Telerik team
answered on 06 Aug 2014, 03:41 PM
Hello,

What I could suggest you is to check if all the referenced assemblies are with the same version. If you still get this error then delete all project references to Telerik controls and remove all Telerik assemblies that are located in your project's folder. After that add the assemblies to the project again, Clean and Rebuild.

I hope this solves the problem.

Kind regards,
Didie
the Telerik team
 
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
 
Tags
GridView
Asked by
Blake
Top achievements
Rank 1
Answers by
Vanya Pavlova
Telerik team
Blake
Top achievements
Rank 1
Gaurav
Top achievements
Rank 1
Yordanka
Telerik team
Rajesh
Top achievements
Rank 1
Nandhakumar
Top achievements
Rank 1
Dimitrina
Telerik team
Share this question
or