Hi there,
I'm looking to display different data than the one initialized in my panelbar and panelbar-items in the constructor. I'm getting my data programmatically and would like to change the data the same way.
The request will come from a global switch that sets a few global flags. Actually I will be switching the data in the panelbar back and forth, there is only data A and data B.
Thanks in advanced,
Carla

Is there a possibility to mark the filter line in the grid column menu as active?
The menu button itself is marked with .k-state-active, but the popup itself or the filter line is not. So the elements are not reachable with CSS.
Is there any solution to reach the element?
Thanks for your help and best regards,
Andi

Hi I am working on Kendo and I am using
https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/
Whenever we will search something and try to scroll , drop-down closes automatically. It is not happening all the time but once it happen (all dropdowns will not work) I need to reload the browser then again it will work.
The exact same issue , I found for material ui can be check for more understanding
https://github.com/Dogfalo/materialize/issues/901
How I can resolve the issue ? Any help will be useful ...
Thanks

In the docs there's text next to the name of every field of a class/component/etc. describing its type. The thing is this text is white (#ffffff) on a white (#fff) background effectively hiding it if it's not highlighted.
This actually cost me quite some time because I wasn't aware I was able to pass a function instead of a string for a specific field through which I was able to solve the problem at hand.
Here's an example: https://www.telerik.com/kendo-angular-ui/components/dataquery/api/FilterDescriptor/, I've also included screenshots of what I'm seeing.

Hi,
Is there any example of Master-Detail Grids which would have the ability to add master and it's corresponding detail rows?
Also, the data should be local not from a base_url.
(ref: https://www.telerik.com/kendo-angular-ui/components/grid/advanced-features/hierarchy/)
Thanks!


If I have a simple grid with data like
public gridData = [ {
"ID": 1,
"Fax": "",
"Type": "Client"
},
{
"ID": 2,
"Fax": "",
"Type": "Client"
},]
and grid something like
<kendo-grid #grid [data]="gridView1"
[group]="groupGrid1" [scrollable]="true" [resizable]="true">
<ng-template kendoGridToolbarTemplate>
</ng-template>
<kendo-grid-column field="ID" title="ID"></kendo-grid-column>
<kendo-grid-column field="Fax" title="Fax"></kendo-grid-column>
<kendo-grid-column field="Type" title="Type"></kendo-grid-column>
</kendo-grid>
which is the easy way to fetch the value for the ID?
I know you can have something like (click)=onSelect($event)
But this will give you the current event like the mouse click
In the example
https://www.telerik.com/kendo-angular-ui/components/grid/editing/external-editing/
as provided a call back is made to the service which fetches the Product data. Is there any easier way of achieving this? Also is there an example where the data is already defined in one of the ts over calling it from a link?