Telerik Forums
UI for ASP.NET Core Forum
2 answers
571 views

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.

Georgi Denchev
Telerik team
 answered on 25 Nov 2020
7 answers
5.1K+ views

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

 

Tsvetomir
Telerik team
 answered on 24 Nov 2020
4 answers
781 views

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

Bill
Top achievements
Rank 2
 answered on 23 Nov 2020
1 answer
140 views

Hello.

 

I have two questions.

- Is it possible to calculate server side aggregation ?

- Can we only display a global aggregation (total) but not in the TreeList (sub-total)?

 

Thank you.

Georgi Denchev
Telerik team
 answered on 20 Nov 2020
11 answers
381 views

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

Veselin Tsvetanov
Telerik team
 answered on 20 Nov 2020
2 answers
155 views

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

 

Tim
Top achievements
Rank 3
Iron
Iron
Iron
 answered on 20 Nov 2020
3 answers
1.2K+ views

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.

 

 

 

 

Aleksandar
Telerik team
 answered on 20 Nov 2020
5 answers
299 views

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

 

Dion
Top achievements
Rank 1
Veteran
 answered on 19 Nov 2020
1 answer
114 views
Is there an example available where an editor template is loaded from the EditorTemplates folder when a value is selected from a Kendo DropDownList in another cell from the same row?
Eyup
Telerik team
 answered on 19 Nov 2020
9 answers
475 views

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>
Tsvetomir
Telerik team
 answered on 19 Nov 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?