If the following is my setup for the default row axes, even though both axes are set to expand: true, only the first one will actually be expanded when the pivot grid loads. Maybe I am misunderstanding the point of having the name be an array of strings? the documentation doesn't seem to say what that is. Can I nest these somehow?
If you change the setup of a pivotgrid from the default and then you use the configurator to change things, expanding or collapsing the rows causes it to revert back to including the default setting.
You can see this on your demo page.
Hello,
I'm trying to load custom components in a kendoGridCellTemplate. This works fine to display the data.
But when I try filtering the column it doesn't filter correctly. I've tried it on text, numeric and date fields.
This is my code
<kendo-grid-column
*ngIf="!column.customComponent"
[field]="column.name"
[title]="column.title"
[filter]="column.filterType"
[hidden]="column.hidden"
[width]="140"
>
<ng-template kendoGridCellTemplate let-dataItem>
<span style="display: block; padding: 8px 12px" class="whole-cell">
<uni-grid-cell [data]="dataItem" [column]="column" [config]="vm.config"></uni-grid-cell>
</span>
</ng-template>
</kendo-grid-column>
In the uni-grid-cell I display the value from dataItem[column.name].
Do you have any advice?
When reviewing the examples on the site, and the external code on CodeSandbox and Stackblitz, all of the examples are referencing Bootstrap 4.1.3. The Bootstrap theme says "Starting with v4.40.0, the Kendo UI Bootstrap theme is based on Bootstrap v5." What version of Bootstrap should we be referencing?
Hello.
I'm using the kendo-editor to allow a user to write html in a view. I'm trying to get the toolbar buttons grouped by functionality using <kendo-toolbar-buttongroup> tags. But <kendo-toolbar-button> tags that are grouped inside are not showing in the view.
Thank you so much. Greetings.
I'm building a file explorer using TreeView component.
i want to show the content of folder, and in header the current path in breadcrumbs.
how can i do it?
Thanks!
Hello
I want to add a dropdown button with both options i.e. a) Export Current page, b) Export All pages
Is this possible , as I could see only the two excel buttons Export to Excel and Export to PDF to appear
Regards
Hay
I would like to add variable and text next to the date. Is there a way to achieve this format in KendoUI for Angular Scheduler
How can I change the sort field name in the dataStateChange event of the grid, to another fields name, and sort by that fields name?
for example, in my component the event handler:
public dataStateChange(state: AppDataStateChangeEvent): void { if(state.sort[0].field === 'propertyStringValue'){ state.sort[0].field = 'propertyNumberValue'; } this.view = process(this.data, this.gridState); }
I need this because we have two seperate properties on our data objects, one is "propertyStringValue" to display a formated version, and an actual number associated with it called "propertyNumberValue". And we want to sort by "propertyNumberValue" when the sort of the "propertyStringValue" is clicked.
When I do the above, it works only on first click, but in the following clicks the state of the dir property on the sort event object does not change, and stays at the value of "asc"