Hi
Is this the only option to select only years from the datepicker?
<kendo-datepicker
[formControlName]="'year'"
[format]="'yyyy'"
[incompleteDateValidation]="true"
[bottomView]="'year'"
[weekNumber]="false>
</kendo-datepicker>
I was looking for something that only contains years and not also months.
Something like the attached image.
The styling for the "Add new" button and any buttons in the kendoGridToolbarTemplate seem to have changed.
There used to be padding around the buttons and the background colour used to match the grid.
It seems to have been changed after the latest Chrome update to 87.0.4280.88.
Will there be any updates to the grid to fix this issue?
Hello,
Is there any timeline around supporting Bootstrap 5? The first Beta version was just released last week, which marks the end of breaking changes before the first full release. My team is currently using Bootstrap 5 and attempting to use kendo-theme-bootstrap, but am receiving SCSS build errors. I assume this is because of the incompatibility with Bootstrap 5.
Thanks,
AJ
Hi,
Is there a way to hide unrelated parent items when expand ?
I have a kendo grid which is filterable. I need sorting enabled as well. Achieved it by using "[sortable]="true"" (I do not need multi-column sort).
Now I am trying to implement sorting with nulls last i.e. for both the sort orders (asc & desc), I need the nulls to appear last.
All the materials I found so far explains custom sort using "(sortChange)="sortChange($event)". For this we need the data to be bound using [data]. But using [data] is not an option for me as I need the filtering option enabled as well. (As per this link, for the filters to work, [kendoGridBinding] needs to be used - [data] cannot be used)
Please assist me to implement custom sorting.
<kendo-grid [filterable]="true"
[sortable]="true"
[pageable]="true"
[kendoGridBinding]="dataSource"
(dataStateChange)="onDataStateChange($event)"
(cellClick)="onCellClick($event)">
We can set the 'selected' and 'expanded' property of a panelbaritem,
but when we set the focused property, the UI doesn't update. Only when we tap with the mouse does the focused state change.
How can we do this in code?
item.selected = true;
item.focused = true;
I have a PanelBar with children. How can I make the children index an extra 3em so that the children are moved to the right and appear under the parent, offset by a bit.
Right now the children are directly below their parent.
<kendo-panelbar-item title="Orders">
<kendo-panelbar-item title="Upload Orders"></kendo-panelbar-item>
<kendo-panelbar-item title="Batch Summary"></kendo-panelbar-item>
</kendo-panelbar-item>
Hi,
I don't need the items "Quotation", "Heading 5" and "Heading 6" in the "Format" dropdown list in the Editor's toolbar. How could I achieve that?
I have created a custom multi select filter. The bottom items cannot be selected. To reproduce in the stackblitz below:
The item is not selected. However if you select the top item first, and then scroll to the bottom and select it, it works.
At first I thought it was because the popup menu was closing, but I added the code to prevent it closing when the multi select popup has been clicked, which prevents the close but no event occurs for the item selection.
Here's a stackblitz demonstrating the issue:
https://stackblitz.com/edit/angular-mnxcmn
Any idea if I can resolve this on my end?
Thanks.