When adding a Kendo ProgressBar, I get the following error:
CS1061: 'Kendo.Mvc.UI.Fluent.WidgetFactory<dynamic>' does not contain a definition for 'ProgressBar' and no extension method 'ProgressBar' accepting a first argument of type 'Kendo.Mvc.UI.Fluent.WidgetFactory<dynamic>' could be found (are you missing a using directive or an assembly reference?)
Do I have the wrong version of Kendo or MVC?
I have Kendo.MVC version 2013.2.716.340
I have MVC version 4
I believe the ProgressBar widget was introduced in Q3 which would be 2013.3.*
Related
I'm attempting to add the FrozenColumnCount property into my application. I add the appropriate line of code to my xaml file(seen in the final line of my SfDataGrid Tag)
<syncfusion:SfDataGrid
ItemsSource="{Binding ProductItems}"
ColumnWidthMode="Auto"
GridLinesVisibility="Both"
HeaderGridLinesVisibility="Both"
AutoGenerateColumnsMode="None"
FrozenColumnCount="1"
>
//column data
</syncfusion:SfDataGrid>
However when I build my app, I receive the following error
The property 'FrozenColumnCount' was not found in type 'SfDataGrid'
I've only added that singular line to my xaml file to achieve the needed result. Is there anything else I need to add to get it to work ?
The syncfusion .net Maui DataGrid currently does not support frozen rows and columns. To learn about future plans for the .Net Maui DataGrid, please refer to the relevant documentation.
https://help.syncfusion.com/maui/datagrid/migration#upcoming-features
Hi I am new to Mvc I am trying to add kendo in visual studio but I am finding this following error.
CS1061: 'System.Web.Mvc.HtmlHelper' does not contain a definition for 'Kendo' and no extension method 'Kendo' accepting a first argument of type 'System.Web.Mvc.HtmlHelper' could be found (are you missing a using directive or an assembly reference?)
I followed all the steps from the link http://docs.telerik.com/kendo-ui/aspnet-mvc/asp-net-mvc-4
but I am still getting this error. Can anyone please resolve this issue for me?
Which reference has xamcarouselpanel?
When I build my project I get an error that igwindows:XamCarouselPanel was not found. My code is:
igwindows:="http://infraistics.com/Windows"
and the error occur in:
igwindows:xamcarouselpanel.ViewSetting
If anyone has a link to this dll please attach it in the answer.
First of all you should write
xmlns:igwindows="http://infragistics.com/Windows"
in xaml in order to add a namespace and you should have corresponding reference in your project.
After you installed the Infragistics on your computer you should add InfragisticsWPF.XX.X reference.
I created a new MVC4 project using Razor syntax, and used NuGet to add MVCAwesome.
Looking at this page, it appears that all the expected files and configuration files appear to be in place. I made the edit to the Views/Web.config as directed.
When I try to reference any Awe() controls however, the reference to Awe() shows up in red text, and I get an error message: Cannot resolve symbol Awe()
#Html.Awe().DatePickerFor(model => model.BirthDate).ChangeMonth(true).ChangeYear(true)
Has anyone gotten this to work? What am I missing?
Just FYI, I was able to contact the maintainer of this library. It turns out that in this newer, NuGet version of the controls, you don't need the Awe() part.
For some reason, DatePickerFor still seems to be missing, but I do see other controls there from the package.
I'm getting an error trying to build a Silverlight application on a new machine. (Silverlight 4, Visual Studio 2010) This application compiles without error on four other machines.
The error is:
the tag 'MenuItem' does not exist in XML namespace 'clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Input.Toolkit'.
The references appear to be pointer to the correct assemblies. Has anyone else ever had this problem?
Another reason this issue may occur is due to missing a reference to all "three" assemblies required to use the portions of the the Toolkit controls.
Make sure you have reference to the following assemblies if attempting to use the Toolkit inputs (and assuming the themes also possibly).
System.Windows.Controls
System.Windows.Controls.Toolkit
System.Windows.Controls.Input.Toolkit
This solved the problem I was having in relation to the error.
http://marktinderholt.wordpress.com/2011/07/12/silverlight-toolkit-for-silverlight-5-beta
its the recompiled toolkit in SL5, just reference those and you're set
You can always fall back on creating the context menu in code.
public LedgerEntryControl()
{
InitializeComponent();
ContextMenu contextMenu = new ContextMenu();
MenuItem voidMenuItem = new MenuItem() { Header = "Void" };
voidMenuItem.SetBinding(MenuItem.CommandProperty, new Binding("Void"));
contextMenu.Items.Add(voidMenuItem);
ContextMenuService.SetContextMenu(this, contextMenu);
}
looks like you're missing the Silverlight Toolkit on that machine, but it's installed on the four other ones.
For some reason, the SilverLight Toolkit from NuGet Package Manager is for SL4, even when the project is set to SL5. You can download the SL5 version directly from CodePlex. Note that the date is December 2011, instead of February 2011 like the SL4 version.
If for some reason the MSI does not install (which happened to me), you can extract the files contained in the MSI using 7-zip. All I had to do was manually add a reference to System.Windows.Controls.Input.Toolkit.dll from the extracted files, and my SL5 project now compiles successfully with its NumericUpDown control. Happily, my program now compiles both in Release and Debug mode.
Also to add, for those who have not already done so, you may need to have a reference in the XAML to the correct toolkit. I used the following:
<sdk:Page xmlns:input="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Input.Toolkit" ... >
Note that the first part, where is says input, is what needs to be typed in the XAML to use the control:
<input:NumericUpDown x:Name="myControl" ... />