Provide a way to change the Gantt tasks dates by dragging the edges of each task. Similar to the Kendo UI for jQuery Gantt:
https://demos.telerik.com/kendo-ui/gantt/index
Hi,
It will be a nice feature to have the ability to customize the drag hint of the built-in row reordering similar to the hintTemplate.
Hi Team,
Requesting a feature to grid rows merge like the below example,
Col1 | Col2 | Col3 | Col4 | Col5 | Col6 |
Row1 | Row1 | Row1 | Row1 | Row1 | Merge1 |
Row2 | Row2 | Row2 | Row2 | Row2 | |
Row3 | Row3 | Row3 | Row3 | Row3 | Merge2 |
Row4 | Row4 | Row4 | Row4 | Row4 | |
Row5 | Row5 | Row5 | Row5 | Row5 | |
Row6 | Row6 | Row6 | Row6 | Row6 | Merge3 |
Row7 | Row7 | Row7 | Row7 | Row7 | |
Row8 | Row8 | Row8 | Row8 | Row8 | Merge4 |
Row9 | Row9 | Row9 | Row9 | Row9 |
Thanks!
It will be a good addition to the Title element if the underlined text option is added.
Currently, it can be added to the font property, but it will break the background property:
https://stackblitz.com/edit/angular-j1wzef?file=src%2Fapp%2Fapp.component.ts
Hi,
Currently, when the popup of the component is opened, it doesn't provide a boundary detection and render the popup in a proper position unless the alignment of the popupSettings is set by the developer. It will be a nice to have if the collision of the popup is provided as an option to the DropDownsButton component.
When opening a Kendo dialog, it's in most cases necessary to prevent the background page from scrolling.
Telerik offers a solution to address this issue:
https://www.telerik.com/kendo-angular-ui/components/knowledge-base/page-is-scrollable-when-open-dialog
<kendo-dialog disableBackgroundScroll>
...
</kendo-dialog>
This will help developers add closing animations, creating a smoother visual experience, as the popup currently closes without any animations.
A workaround would be to attach CSS animations when the popup is closing:
Could we have a turnkey solution which allows to disable a row selection which takes care of disabling only the relevant selection checkboxes and handle properly the "Select all" checkbox state (in header).
With CheckboxColumnComponent field which allows providing dataItem field name or predicate function.
<kendo-grid-checkbox-column showSelectAll="true" disableSelection="isDisabled">
</kendo-grid-checkbox-column>
<kendo-grid-checkbox-column showSelectAll="true" [disableSelection]="isDisabledPredicateFunction">
</kendo-grid-checkbox-column>
OR
If you don't want to add more selection concerns into CheckboxColumnComponent this field could be specified in your SelectableSettings as well:
public selectableSettngs: SelectableSettings = {
enabled: true,
checkboxOnly: false,
mode: 'multiple',
cell: false,
drag: false,
rowEnabled: mySelectableRowPredicateFunction
}
rowEnabled field could something like this:
export declare type RowEnabledSelectionFn = (context: RowArgs) => boolean | boolean;
export interface SelectableSettings {
//...
/**
* Determines if row selection is allowed.
*
* @default true
*/
rowEnabled?: RowEnabledSelectionFn;
}
Thank you
Currently, the fields DropDownList does not have a filter option to narrow down the popup list of items. Adding this feature would be a great improvement, especially for scenarios with more than 20 items in the filter fields.
Hi, Team!
Currently, the Output view of the AIPrompt component ignores any of the formatting that is applied to the text it renders and displays it as regular text. However, I want to retain the formatting of the text that was generated by the AI model that I am using.
For this reason, I would like to request the introduction of a designated template that would allow me to control the formatting of the prompts in the Output view.
Provide a built-in functionality for the TreeList that would allow binding the component to data with the following structure:
const data = [
{ path: ['node1', 'node2'], property1: value, property2: value },
{ path: ['node1', 'node2', 'node3'], property1: value, property2: value },
];
The structure provides particular paths for the leaf nodes (last children) that determine the hierarchy within the component and additional fields that correspond to the columns' definition of the component.
Provide an option that would allow developers to set the values of aria attributes like aria-valuenow, aria-valuemin and aria-valuemax to the separator elements.