I need to implement a multiselect functionality using mousedown with the CTRL key. Is it possible?
Thanks
Hi, I've got a button that toggles a boolean property when clicked. The button has a tooltip that appears on hover, and the tooltip text is set conditionally based on if the property is true or false.
The issue I'm having is that if the button is clicked, the tooltip only changes once you hover outside the button and then hover back over it, it does not change when the button is clicked if the cursor stays hovering on the button.
Is it possible to have the tooltip text change when the button is clicked, if the cursor stays on the button?
app.component.html:
<button
(click)="toggleProp()"
kendoTooltip
[title]="prop ? 'text when prop is true' : 'text when prop is false'"
>
test
</button>
app.component.ts:
export class AppComponent { prop = false; toggleProp() { this.prop = !this.prop; } }
Demo: https://stackblitz.com/edit/angular-goykum-okj6jk?file=app%2Fapp.component.html
I am following this article:
Selection - TreeView - Kendo UI for Angular (telerik.com)
that shows using this directive:
[kendoTreeViewSelectable]="selection"
does the trick. However, in my code I am getting:
ERROR NullInjectorError: R3InjectorError(AwaAssetEditorModule)[TreeViewComponent -> TreeViewComponent -> TreeViewComponent -> TreeViewComponent]:
NullInjectorError: No provider for TreeViewComponent!
at NullInjector.get (core.mjs:7493:27)
at R3Injector.get (core.mjs:7914:33)
at R3Injector.get (core.mjs:7914:33)
at R3Injector.get (core.mjs:7914:33)
at R3Injector.get (core.mjs:7914:33)
at ChainedInjector.get (core.mjs:12084:36)
at lookupTokenUsingModuleInjector (core.mjs:3201:39)
at getOrCreateInjectable (core.mjs:3246:12)
at Module.ɵɵdirectiveInject (core.mjs:10041:12)
at NodeInjectorFactory.SelectDirective_Factory [as factory] (progress-kendo-angular-treeview.mjs:95:105)
Line 95 has something to do with a version of the software. I am running version 13.4.0. Is it compatible with this multi select functionality?
Thanks
Hi -
I've been trialing kendo UI for angular and it is pretty powerful
I would like to use the kendo-window toolbar as my kendo-tile "toolbar"
The main feature I want to leverage from the kendo-window doing so is the "Maximize" and "Close" features ("Minimize" should be disabled or better yet not visible)
I do want to use kendo-tile to leverage dragging and autoflow repositioning
Is there any way to do this?
Would greatly appreciate your help
Thanks
this tag helps to customize the message hints, but it's coming as a string
we need to show the hint like this. How do we do?
I am using the kendo grid checkbox column to select the records. but the records are not displaying as selected, once I move to the nextpage. I want the selected records to be shown as selected even i move to nextpage and come back to the same page.
in the below image, the slected records are showing as selected even when the page is changes. kindly help with code
Hi,
I need to add some margins to the events, so that they look like this:
Is there a way to achieve that with Kendo Scheduler for Angular?
Thanks