From https://www.telerik.com/download/custom-download# I tried to download the latest version 2024.1.130 kendo.custom.min.js file in order to upgrade the kendo plugin from Kendo UI 2022.1.412 version to the latest.
I use Asp.Net MVC and I have a custom bundler where I reference all the js files like this
bundles.Add(new ScriptBundle("~/bundle/kendo").Include( "~/Scripts/kendo/kendo.custom.min.js"));
Then in Razor Layout page I register bundles like this
@Scripts.Render("~/bundle/kendo")
but whenever I run the application I always get a NullReferenceException at the line that registers the bundle with the message "No object reference is set to an object instance."
Whenever I downgrade the kendo version or return to the previous one the application runs properly.
Any ideas why is this happening? Would you please help me solve this issue?
Thanx in Advance.
I generate an html report by replacing the keys in the html file with dynamic values. When converting to a pdf file using Telerik this error is thrown. I have checked several times and I do not have any duplicated keys. The error is thrown when trying to import the html report.
JpegImageConverterBase customJpegImageConverter = new CustomJpegImageConverter();
Was this package recently removed from nuget ??
https://api.nuget.org/v3b.2013.3.1119' is not found on source 'https://api.nuget.org/v3/index.json'.)
Indeed it does not show up when seraching:
Team
we are facing the issue binding the data into kendo.mvc.UI grid
here is the screenshots
my UI source code:
@(Html.Kendo().Grid<ClientOnboarding.Data.EF_COB_PortalUsr>()
.Name("CompanyDemographGrid")
.Selectable()
.Columns(columns =>
{
columns.Bound(c => c.name).Width(110);
columns.Bound(c => c.email).Width(110);
columns.Command(command =>
{
command.Edit();
command.Destroy();
}).Width(120);
})
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(5)
.Events(events => events.Error("error_handler"))
.Model(model =>
{
model.Id(mdel => mdel.Rec_id);
model.Field(mdel => mdel.Rec_id).Editable(false);
model.Id(mdl => mdl.name);
model.Field(mdl => mdl.name).Editable(false);
model.Id(mdl => mdl.email);
model.Field(mdl => mdl.email).Editable(false);
}
)
.Read(read => read.Action("BindAllDemographPortlUsr", "OnBoarding"))
.Update(update => update.Action("UpdateDemographPortlUsr", "OnBoarding"))
.Create(update => update.Action("AddDemographPortlUsr", "Grid"))
.Destroy(destroy => destroy.Action("DeleteDemographPortlUsr", "OnBoarding"))
)
.ToolBar(toolbar => toolbar.Create())
// Set grid editable.
.Editable(editable => editable.Mode(GridEditMode.InCell))
// Set grid sortable.
.Sortable()
// Set grid selectable.
.Selectable()
// Set grid pagable.
.Pageable(pageable =>
{
pageable.Refresh(true);
pageable.PageSizes(true);
})
)
hi,
I'm maintaing a ASP.NET MVC 5.2.7 webapp with kendo 2021.2.616, the question is: will this version of kendo work when the webapp is migrated to .Net 6? otherwise is there a kendo roadmap for such kind of migration?
regards and happy holidays
Hi,
I am unable to find ASP.NET Core scaffolding in VS2022. Then I install into VS2019 and result is same. Unable to view Telerik scaffolding. If any one have the idea how to fix it please help me.
again >>
I can't restore the kendo on mu new laptop,
I mapped my project and it required to restore the kendo , but it appear this message !
any help ?