I see that in Kendo UI for JQuery it is present, but for Angular 2+ there is no such functionality in the example.
There is no way to change size for columns,rows and table for table.
1) Go to https://www.telerik.com/kendo-angular-ui/components/editor/tools/
2) Add table to editor
3) Click on table
4) No way to change size
Hi,
We use the Conversational UI but need to customize the input area. The changes that we need are not merely cosmetic: for example, we want to replace the existing input with a textarea so that our users can have meaningful conversations and not limit themselves to one-liners.
We saw that you already support templates for messages and attachments: can we have input template support as well?
Thank you,
Mihai
Is the Map component included in this or (if it's not) when will it be added?
Modeled after the Kendo UI widget counterpart: http://www.telerik.com/kendo-ui/pivotgrid
Add listbox component modeled from kendo ui jquery. http://demos.telerik.com/kendo-ui/listbox/angular
Would really like a Kendo UI version of the Chip Input like the one from Angular Material https://material.angular.io/components/chips/overview#chip-input
I was surprised looking through all the components that something like this didn't already exist
The use case that we would like to cover is as follows.
1. Open an image in Paint.
2. Select a region and copy it.
3. Paste into the editor.
4. The image should be displayed in the editor.
It should, however, be encoded similar to the way that Kendo Grid for jQuery does to produce something like this.
<img src="data:image/png;base64,iVBORw0KGgoAAA...vwAAAABJRU5ErkJggg==" />
Note that the image is not hosted remotely at some URL, but rather is included inline within the body.
In Panelbar , when we set expandmode set to 'single' it do not toggle the item . it only works with expandmode 'multiple'. We should also allow to toggle a panelbar item in 'single' mode a use case could be -i want to close all of the items in single mode
Hi,
Please provide the item as a context argument from the PanelBarItemTitle template.
thanks
Hello,
The list view component provides a loader template. This is easier to work with than the mechanisms provided for the grid component. For the sake of consistency of approach, I would like to request that a grid loader template directive be provided for the grid component, similar to the one available for the list view that is seen here: https://www.telerik.com/kendo-angular-ui/components/listview/api/LoaderTemplateDirective/
Thank you,
David
Hi,
Please provide an option that allows to assign title and content templates via input properties of the PanelBar component itself (much like the TreeView component with 'nodeTemplate' and 'loadMoreButtonTemplate').
thanks
I would like to have the possibility to modify the pasted content before it is inserted by providing a callback function. This function would be called with the content after Kendo's internal cleanup and the cleanup I specified through the other options has run.
It would look like this:
@Component({
selector: 'my-app',
template: `
<kendo-editor [pasteCleanupSettings]="pasteCleanupSettings"></kendo-editor>
`
})
export class AppComponent {
public pasteCleanupSettings = {
// other options...
custom: (input: string) => {
return '<h1>I can do anything I want in here</h1>' + input;
}
}
}
Basically I want the same behavior as the jQuery editor provides through pasteCleanup.custom: https://docs.telerik.com/kendo-ui/api/javascript/ui/editor/configuration/pastecleanup#pastecleanupcustom