Hello team;
I have just downloaded the Kendo-Bootstrap Integration from Gitub (https://github.com/telerik/core-bootstrap-demo) and loaded into VS2017.
I'm running .Net core2.1 and have the latest Kendo ASP Core version (R2 2018).
When I run it, the form that shows up, tabs don't work, drop downs don't work, many sections don' show up here is a screen shot.
I looked at the index view and everything seems in order. But the one from the website runs properly.
What's the problem?
Note: VS2017 still runs Bootstrap 3.3.7
Hi, I'd like some help with displaying multiple values in a single grid cell. Right now the data I'm displaying is coming in as an array of json objects and getting deserialized using the Json.NET library. I have no problem displaying most of the data I want on the grid; however, some of the data is in a nested array of unknown size.
For example:
@(Html.Kendo().Grid<AnalogModel>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.pGasDescDtoObj.ProductDesc).Title("Products");
columns.Bound(p => p.pGasDescDtoObj.CustomerDesc).Title("Customer");
columns.Bound(p => p.pGasDescDtoObj.ControllerDesc).Title("Controller");
columns.Bound(p => p.pGasDescDtoObj.Template).Title("Template");
columns.Bound(p => p.pGasDescDtoObj.GasNameDesc).Title("Gas");
//So far, everything works great ^^
....
columns.Bound(p => p.type[0].dataDefId).Title("Type"); //this works fine because I can guarantee that there will be at least one object in the array
....
So what I'd really like to do is display all the dataDefId values in the type array, however I don't know how to do this using the options available to the column. I've been trying to create a client template that will display them, but while I can display type[0].dataDefId, so again for example:
columns.Bound(p => p.type).Title("Type").ClientTemplate("<strong>#: type[0].dataDefId #</strong>");
works fine. I have no idea how to get the size of the array to loop through it. If I start using c# to loop through the array, I one. lose access to the variable "type", and two, the client template doesn't work. Are there any other ways of going about this?
Hi I have a problem regarding the dropdownlist (see DropDownList.png). The items of the list is outside of the popup border.
I am using a custom theme generated by someone else and I have no idea where to start.
I have a project but can not attach it. How can I place the project here?
Hi I am using on an MVC project the grid autosize functionality successfully (version: R2 2017 2017.2.504.545). Now on another project I have to use the .NET Core (version: R1 2018: 2018.1.117.0) but the autosize functionality does not work anymore. I have investigated the two solutions and it seems that when I use grid.Scrollable(s => s.Height("auto")) it generates "height: auto" instead of the configuration: "scrollable: { height: auto }"
Is this function as design? What are the alternatives to this issue?
I just start a brand new project and I have already this warning. See attachment. And clue?
Thanks a lot.
Hi,
I have a problem with the kendo map using tag helpers, and I'm getting the error:
Uncaught TypeError: a.mobile.ui.Scroller is not a constructor
at init._initScroller (kendo.all.js:174114)
at new init (kendo.all.js:174307)
at HTMLDivElement.<anonymous> (kendo.all.js:2435)
at Function.each (jquery.js:360)
at jQuery.fn.init.each (jquery.js:137)
at jQuery.fn.init.e.fn.(anonymous function) [as kendoMap] (http://localhost:50902/lib/kendo/2018.1.221/js/kendo.all.min.js:26:4668)
...
I tried the tag helper implementation and it's not working, neither with razor, nor jquery. Error is the same. I'm using kendo for asp.net core 2018.1.221. Do you have any idea what cause the problem?
Kind regards,
Asmir
Just starting a major new project, and wondering if the ASP.Net Core UI wrappers are a long-term bet?
Seems to me this forum is nearly deserted, and the latest support resources are years out of date. The installation in a new project seems a home-made affair - the product just seems a marketing extension to Kendo UI to try to get more people on board. I like the concept of server side tagging like this - abstracting away as much Javascript has to be a good thing.
I'd rather bale out now if this is product is another stinker like Linq to Sql, Webforms, Silverlight or any others on the long list of turkey technologies.
Going to assume that if no response by Tuesday, it's died a death.
I am using the Telerik Grid on a dashboard-type of web page in ASP.NET Core 2.1 (with Razor pages). I need to have the contents of the Grid updated when the data presented in the Grid changes. In case there are better solutions, I will give a bit more detail.
I have 2 web apps. One, let's call it the child web app, will send a notification via SignalR to the main web app, called the parent. When the parent app receives the notification via SignalR I want to update the Telerik Grid as well as display the message contained in the SignalR notification in a Telerik Notification.
I know that I can use SignalR directly with the Grid, but I don't see any way to preserve the data that arrives via SignalR. I need to save the data that arrives in the SignalR message.
So, I need to do this:
1. Force the Grid to re-read and display the data when the web app receives a SignalR notification.
2. At the same time display a Telerik Notification.
Again, this is in an ASP.NET Core web app with Razor pages using .NET Core 2.1