Hello, I am using kendo grid in .NET core,
We have load dynamically data in grid using Data table I have bind data and also functional server side pagination. I have facing the issue in grouping on dynamically. Can you please help how can I resolved this issue. or share any document?
I have also attached my code screenshots. Please review and let me know asap.
Hi All,
I am working kendo grid and using incell editing mode also adding a simple drop down box, my problem is that drop down box is not rending in the grid, it appears for a while and this disappear.
Can anybody help me? Any event i am missing?? timeout issue ??
thanks
Hi,
I have a razor page where I have two separate forms. Each form will submit and call a separate OnPostAsync method.
To make this happen normally you would use the following:
<input type="submit" value="Submit" asp-page-handler="FormOne"/>
Which would call the method OnPostFormOneAsync().
How do I achieve the same using a TagHelper button, e.g.
<kendo-button name="TestButton" icon="filter" type="submit" asp-page-handler="FormTwo">Test</kendo-button>
Thanks
Russell
Hello,
I currently have a working .netcore 2.2 web project that has telerik 2019.1.115 installed. This project has .netframework 4.7.2 references.
In the process of migrating .netcore from 2.2 to 3.1, we have encountered retro-compatibility issues. From the moment we upgraded our .netcore version, we started getting errors on loading libraries in the startup class on endpoint configuration :
"Unable to load one or more of the requested types.\r\nCould not load file or assembly 'System.Data.Linq, Version=4.0.0.0'. The system cannot find the file specified.\r\nCould not load file or assembly 'System.Data.Linq, Version=4.0.0.0'.
After alot of investigation, we pinpointed that the combination of .netcore 3.1 and telerik together was causing this problem. After migration to 3.1, if we remove the telerik libraries and references, the endpoints get configured properly and we are able to access the website. When adding back the telerik package, the endpoints immediately fail to configure.
Any help would be appreciated
David
I'm trying to create a Telerik ASP .NET Core MVC Application (Grid Razor Pages) that uses .NET 5. However, there's not an option for .NET 5. Is this not possible?
Thanks,
Tim
Is there a user who has succesfully used UI for ASP.Net Core in ABP.io commercial?
ABP.io loads all scripts at the bottom of the page but kendo requires it's scripts to be loaded near/at the top of the page.
We do not have access to the supplied theme pages, so we are unable to move the scripts ourselves.
I am already engaging with ABP.io support to resolve this, but i am curious if someone else already has been able to work around these limits.

Hi,
I've been trying to use the sass theme builder to replace the kendo theme delivered by the CDN here https://kendo.cdn.telerik.com/2020.2.513/styles/kendo.bootstrap-v4.min.css
When I go on the SASS builder, select to start based on bootstrap 4, I change the colours and download the compiled .css but there are some fundamental differences in the bootstrap source between the standard theme and the generated theme.
My understanding is that the theme produced by the themebuilder should be the same with the only difference being the colour, however I've already noticed the following differences
CDN version
.k-textbox { padding: .375rem .75rem; ...
SASS generated version
.k-textbox { padding: 0; ...
another one (slightly different css selected but different display type for form component.
CDN version
.k-dropdown .k-dropdown-wrap .k-input, .k-dropdowntree .k-dropdown-wrap .k-input { display: flex;...
SASS version
.k-dropdown, .k-dropdowntree { display: inline-flex;
So in summary if I use the SASS generated version, I will have to override a number of the generated css that is not relating to color theme in order to 'fix' it back to bootstrap standards. This is undesirable. I just want to be able to switch in the SASS generated version to replace the color set which is how I understand it should work.
thanks

I'm trying to add a bar in a column to show the percentage
I approached it by attempting to put a progressbar in the column.
I am not sure how to bind the value through.
if this is not the correct approach or I could get some help with the syntax I would appreciate any help.
<div class="row"> <div class="col-md-12"> @(Html.Kendo().Grid<KitViewModel>() .Name("kitsOverviewGrid") .Columns(columns => { columns.Bound(p => p.SeqKit).Title("Kit#"); columns.Bound(p => p.Assembly).Title("Assembly"); columns.Bound(p => p.DateToPickStart).Title("Start Date").Format("{0:MM/dd/yyyy}"); columns.Bound(p => p.StatusName).Title("Status"); columns.Bound(p => p.KitQty).Title("Kit Qty"); columns.Bound(p => p.PercentCompletelyIssued) .Title("Completely Issued") .ClientTemplate( Html.Kendo() .ProgressBar() .Name(Guid.NewGuid().ToString()) .Type(ProgressBarType.Percent) .ToClientTemplate().ToString()); }) .Pageable() .Sortable() .Scrollable() .Filterable() .HtmlAttributes(new { style = "height:550px;" }) .DataSource(dataSource => dataSource .Ajax() .PageSize(20) .Read(read => read.Action("GetKitsOverView", "KitsOverview")) ) ) </div></div>