Getting started documentation for UI for ASP.NET Core shows how to use UI for ASP.NET MVC in ASP.NET Core projects. Does that mean there is no separate download for UI for ASP.NET Core? Does the same UI for ASP.NET MVC shared between ASP.NET MVC and ASP.NET Core projects?
Any differences between UI for ASP.NET Core and UI for ASP.NET MVC in terms of features and functionality?
Hi, I'm fairly new to telerik and I need help with radgrid. I'm trying to select a row and getting values from 2 columns in the selected row (FileName and Type)
I did:
<ClientSettings><Selecting AllowRowSelect="True" /><ClientEvents OnRowClick="buttonClick" /></ClientSettings>
But I have no idea what to do on buttonClick, I am using it on Cora SeQuence.Can anybody tell me how I can do this?
Hello,
We recently updated our web app to .Net Core 2.0, and we updated all of your tools as well to their latest versions. However, we noticed that the export to excel functionality that we have for one of our grids started running extremely slow all of a sudden, and we're not entirely sure why. If we have hundreds of entries that we need to export, when we click the "Export to Excel" button it spends all of its time trying to transfer the data before downloading and eventually the page crashes. I also noticed that it will try to transfer over 1GB of data which is way too much for what it should be. We did not have this issue before updating your tools, so we were wondering if something changed with how the export to excel functionality works with your latest updates to it (such as if the syntax for it is different than what it was before)? We did test the functionality on a small list of items, and it did export immediately. It's only with when we have hundreds of items to export when this happens. We checked to see if any of the .Net Core 2.0 updates or anything else new in our code could have affected the speed of it, but we couldn't find anything.
Thanks,
Jason
Hello,
I am using a template within a template and I would like to use DropdownListFor. Although everything is rendered properly and the values are shown correctly, when I click on the right arrow it does not expand the list options.
Example:
@(Html.Kendo().DropdownListFor(m => m.IsPrincipal)
.DataTextField(
"Text"
)
.DataValueField(
"Value"
)
.BindTo(
new
List<SelectListItem>() {
new
SelectListItem() {
Text =
"Yes"
,
Value =
"1"
},
new
SelectListItem() {
Text =
"No"
,
Value =
"0"
},
new
SelectListItem() {
Text =
"Test"
,
Value =
"2"
}
})
.HtmlAttributes(
new
{ style =
"width: 100%"
})
)
Using PDFViewer and pdfjs processing in my view, the pdf file, once loaded in view the toolbar shows 6 pages, but the pdf content flows outside the containers as one long image, with all 6 pages shown.
Anyway to contain just one page at a time, or keep the content in a container?
Thanks,
MK
Hi,
Is it possible to have an autocomplete input field in a form, ASP.NET Core, and send back for example customer name to the pagemodel?
Best regards,
Johan
Does the TreeList have the ability to create have a dropdown selection for columns similar to the "Categories" on here:
https://demos.telerik.com/aspnet-core/grid/editing-custom
I followed everything on the page I believe but I can not get the dropdown to work for the TreeList.
Does the TreeList work that much differently?
hello,
I am using a scheduler with ASP.NET Core 2.2 MVC app.(Example @(Html.Kendo().Scheduler<xxxScheduleViewModel>()
When I create an event, I'd like to change the default field names . For example , Instead of 'Title' , say 'Book event' (see picture)
Is this handled in Schema ? Any examples?
Thanks,
Peter
Hello,
I am working with using a DateRangePicker with the calendar section always open and I have it in a sidebar. The problem I am having is that the calendar portion does not resize to fit the space it should be contained within. The multiselect I have in the same div work as expected and size down when the size of the window goes down but the calendar of the DateRangePicker instead stays the same size and starts to cover other elements on the page. Any ideas on how I could make the calendar resize properly?
Thanks,
Alex