Skip to content

Kendo UI DropDownTree only one checkbox is checked

I use DropDownTree from Kendo UI for jQuery. Its configuration is shown below. How do I make sure that only one checkbox is checked at a time? When the user clicks the second checkbox, the first one should uncheck if it was checked etc. Answer Here’s a demo of only one checkbox is checked at a time. Whe…

how to disable a function

This code will alert hello world when i press space key. And when i execute the second function, i expect it to alert “hello” when i press space key but it executes both function and alerts “hello world” and “hello” instead, so i was wondering how can i disable the function…