Hi,
When I fix minZoom as 2 and center as [0, 0] then the map fits properly, but If I zoom in the right side of the map and zoom out immediately, the space is filled with white color. If I do mouse click in any region of map, then fits again properly. Would you please let me know how to fix it? I've attached the screenshot for your reference.
I've been working with a Telerik sortable Grid in an ASP.Net Core 2 Angular 2 SPA, the data I'm attempting to implement a working instance of this with the fetchdata.component that comes with the initial rendering of the Angular 2 SPA. I've been able to load data into the grid but the data only seems to populate after a filter field is activated by mouse click. On initial load the grid will show up empty with 'No records available' under the first column leaving all other non-header data empty.
I have noticed that there's an example for data binding OData sources on the Telerik site however the super(null) for northwind.service.ts received an error suggesting that a null value wouldn't be permitted thus I wasn't able to experiment much with the code. Attached below is my attempt so far to code the typescript and html files for the Telerik sorting grid. Again, this gets me as far as the grid receiving data however the initial load is not populating the data. As far as I can tell the OData example implies that I might need to feed a BehaviorSubject array to the gridView but I'm not entirely sure whether that's baked in as a requirement or whether its relevant to an http.get from ASP.Net and Entity Framework. Let me know if you have any suggestions on how this needs to be rearranged or what I'd need to add in order to get this up and running properly. Thank you!
Hi,
With reference to using component with dialog service (http://www.telerik.com/kendo-angular-ui/components/dialog/service/#toc-usage), I have a form inside the component and I would like to submit the form and close the modal using a button from inside the component rather than using the action buttons.
How should I go about achieving that?
Please refer to the following plunker:
http://plnkr.co/edit/Qq50UCo0jTaqUBYI4hq3?p=preview
Thanks.Hello,
we are using Kendo UI for Angular. We have a component that contains Kendo TabStrip and we need (based on some business logic) to select a specific tab. Currently the only way to do this is to introduce a @Viewchild(TabStripComponent) in our component and call its .selectTab(index) method to select a desired tab. There are however some issues with that solution:
First I tried to do call selectTab() in ngOnInit(), but that fails, because tabs are not ready yet (got an error from kendo tabstrip: Cannot read property 'toArray' of undefined).
Second I tried to do call selectTab() in ngAfterViewInit(), here the tab is correctly selected, but angular complains: Expression has changed after it was checked. Previous value: 'inactive'.
Isn't there a way to do this nicely? I imagine something like [selectedTabIndex] property on Kendo's TabStripComponent, that we could set grammatically..
thx
Jan
Why doesn't the Media Player component have it's own topic group in the Kendo UI forums?
Where do I post questions about it? I posted a question in the ASP MVC forum which is just a wrapper for Kendo UI but the issue is generic to Kendo UI.
Thanks, Bob
Is there any discussion or plan to implement the Angular Material as a Kendo Theme?
https://material.angularjs.org/latest/
https://material.angularjs.org/latest/demo/input
Thanks,
--Ed
I just upgraded from kendo 2015.3.930 to 2017.2.504 and I've found a bug regarding the Window.
You can reproduce this bug in the kendo's window demo. All you have to do is to to resize the window height using the top or the bottom resize handle. You'll notice that the bottom section of the window will disappear, hidden by the k-window-content div.
This seems to be related to the box-sizing attribute of the k-window-content element that was changed from border-box to content-box.
See attached picture. Left window was made with box-sizing = border-box and right is the same window with box-sizing = content-box.
Can you confirm if I'm right about this?
Regards,
Simon
Hi,
please help me. I'm trying to setup a grid with a foreign key column. Why this don't work? http://jsfiddle.net/f6tvxjft/2/
And why i get no data from dataSource2 after clicking on "Get Data" button?
Regards,
Philipp
I am currently attempting to use the Kendo Grid to display data that is returned from my Node/Express/Mongoose/MongoDB stack.
Being that MongoDB is schemaless, I have the scenario where my collection will have documents that may or may not contain the same elements.
When trying to populate a grid with a returned JSON query similar to the following:
[
{FirstName: "TestA", LastName:"TestB", Age: 50},
{FirstName: "TestC", Age:50}
]
Using a grid datasource schema that is dynamically generated similar to:
schema: {
model: {
fields: {
FirstName: { type: "string" },
LastName: { type: "string"},
Age: { type: "number" }
}
}
}
Trying to display three columns:
[
{
field: "FirstName",
title: "First Name"
}, {
field: "LastName",
title: "Last Name"
}, {
field: "Age",
title: "Age"
}
]
I get an error when binding the data. In Firefox and IE it says "LastName is not defined". In Chrome I do not get an error the grid draws the text "[object HTMLCollection]" where you'd expect the field to be null or blank.
Is the grid intended to handle the scenario where an element may not be present in the returned JSON?
If not, are there an work arounds to this?
Thanks in Advance,
Rene