This question is locked. New answers and comments are not allowed.
Hello,
I'm getting the error "The type 'telerikGrid:RadDataGrid' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built." throughout my project on various Rad controls. The project compiles and runs but development is difficult because I cannot use intellisense on these objects.
Here is my grid definition:
<telerikGrid:RadDataGrid x:Name="rdgUsername" AutoGenerateColumns="False" UserEditMode="Inline"
UserColumnReorderMode="Interactive" UserGroupMode="Disabled" UserFilterMode="Disabled" BorderThickness="0"
Background="White" Foreground="Gray" GridLinesBrush="#DDF0FF" Margin="25">
<telerikGrid:RadDataGrid.Columns>
<telerikGrid:DataGridTextColumn PropertyName="Serial" Header="SERIAL" CanUserEdit="False"/>
<telerikGrid:DataGridTextColumn PropertyName="DeviceType" Header="DEVICE TYPE" CanUserEdit="False"/>
<telerikGrid:DataGridTextColumn PropertyName="Username" Header="USERNAME" />
<telerikGrid:DataGridTextColumn PropertyName="Mac" Width="0" SizeMode="Auto" />
</telerikGrid:RadDataGrid.Columns>
And:
xmlns:Input="using:Telerik.UI.Xaml.Controls.Input"
xmlns:telerikGrid="using:Telerik.UI.Xaml.Controls.Grid"
xmlns:Primitives="using:Telerik.UI.Xaml.Controls.Grid.Primitives"
What am I doing wrong?
I'm getting the error "The type 'telerikGrid:RadDataGrid' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built." throughout my project on various Rad controls. The project compiles and runs but development is difficult because I cannot use intellisense on these objects.
Here is my grid definition:
<telerikGrid:RadDataGrid x:Name="rdgUsername" AutoGenerateColumns="False" UserEditMode="Inline"
UserColumnReorderMode="Interactive" UserGroupMode="Disabled" UserFilterMode="Disabled" BorderThickness="0"
Background="White" Foreground="Gray" GridLinesBrush="#DDF0FF" Margin="25">
<telerikGrid:RadDataGrid.Columns>
<telerikGrid:DataGridTextColumn PropertyName="Serial" Header="SERIAL" CanUserEdit="False"/>
<telerikGrid:DataGridTextColumn PropertyName="DeviceType" Header="DEVICE TYPE" CanUserEdit="False"/>
<telerikGrid:DataGridTextColumn PropertyName="Username" Header="USERNAME" />
<telerikGrid:DataGridTextColumn PropertyName="Mac" Width="0" SizeMode="Auto" />
</telerikGrid:RadDataGrid.Columns>
And:
xmlns:Input="using:Telerik.UI.Xaml.Controls.Input"
xmlns:telerikGrid="using:Telerik.UI.Xaml.Controls.Grid"
xmlns:Primitives="using:Telerik.UI.Xaml.Controls.Grid.Primitives"
What am I doing wrong?
7 Answers, 1 is accepted
0
Hello,
Could you please try to remove the references, clear the project and then add the references again? If this does not help you can add a reference to the Telerik UI for Windows 8 SDK instead of using binaries.
Regards,
Ivaylo Gergov
Telerik
Could you please try to remove the references, clear the project and then add the references again? If this does not help you can add a reference to the Telerik UI for Windows 8 SDK instead of using binaries.
Regards,
Ivaylo Gergov
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
Cheri
Top achievements
Rank 1
answered on 03 Jun 2014, 05:28 PM
Hello,
Removing and re-adding the references did not help.
Are the references to the SDK in ExtensionSDKs\Core\References\CommonConfiguration\neutral?
Removing and re-adding the references did not help.
Are the references to the SDK in ExtensionSDKs\Core\References\CommonConfiguration\neutral?
0
Hi Cheri,
If you wish to use binaries instead of Telerik UI for Windows 8 SDK, you need to use the ones from the Binaries folder. It is in the same directory as ExtensionsSDK one. In case you refer the binaries from a different location, you will have to copy the whole structure of the Binaries folder, not only the referred files.
To use the RadDataGrid control, you will need to add a reference to the following files:
Please, let us know if this works for you.
Regards,
Rosy Topchiyska
Telerik
If you wish to use binaries instead of Telerik UI for Windows 8 SDK, you need to use the ones from the Binaries folder. It is in the same directory as ExtensionsSDK one. In case you refer the binaries from a different location, you will have to copy the whole structure of the Binaries folder, not only the referred files.
To use the RadDataGrid control, you will need to add a reference to the following files:
- Binaries\Core\Telerik.Core.dll
- Binaries\Primitives\Telerik.UI.Xaml.Primitives.dll
- Binaries\Input\Telerik.UI.Xaml.Input.dll
- Binaries\Grid\Telerik.UI.Xaml.Grid.dll
Please, let us know if this works for you.
Regards,
Rosy Topchiyska
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
Cheri
Top achievements
Rank 1
answered on 06 Jun 2014, 01:12 PM
Rosy,
Yes, I am using the dlls from the Binaries folder and am getting that message. Like I said, the app will run and the grid works as expected. I just can't use any of the intellisense in XAML because of the error.
Because your demo code does not have this problem (and it's using the same references my app), I believe it has to be related to something else. My project is using SQLite which limits it to only x64 build. I changed your Demo project to x64 build and received similar errors.
Does this make sense?
Yes, I am using the dlls from the Binaries folder and am getting that message. Like I said, the app will run and the grid works as expected. I just can't use any of the intellisense in XAML because of the error.
Because your demo code does not have this problem (and it's using the same references my app), I believe it has to be related to something else. My project is using SQLite which limits it to only x64 build. I changed your Demo project to x64 build and received similar errors.
Does this make sense?
0
Hi Cheri,
Thank you for the provided information. It was very useful and we managed to reproduce this issue on our side. At this moment we found out that this could be related to the designer, since the problem appears only when the project is built against ARM or x64 and the designer does not available for these platforms. Our developers will need some more time to investigate the issue and we will get back to you as soon as we find out what causes it.
Regards,
Rosy Topchiyska
Telerik
Thank you for the provided information. It was very useful and we managed to reproduce this issue on our side. At this moment we found out that this could be related to the designer, since the problem appears only when the project is built against ARM or x64 and the designer does not available for these platforms. Our developers will need some more time to investigate the issue and we will get back to you as soon as we find out what causes it.
Regards,
Rosy Topchiyska
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0
Bojan
Top achievements
Rank 1
answered on 29 Oct 2014, 01:30 PM
I have the same problem.
With most of the telerik controls.
App works fine, but i am unable to use intelisence in xaml files because of errors.
I've also had the same problem with Windows phone 8 Silverlight controls.
With most of the telerik controls.
App works fine, but i am unable to use intelisence in xaml files because of errors.
I've also had the same problem with Windows phone 8 Silverlight controls.
0
Hi Bojan,
Thank you for the feedback. We will get back to you if we have more information about this problem.
Regards,
Rosy Topchiyska
Telerik
Thank you for the feedback. We will get back to you if we have more information about this problem.
Regards,
Rosy Topchiyska
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.