Completed
Last Updated: 21 Jun 2022 09:45 by ADMIN
ADMIN
Telerik Admin
Created on: 27 May 2010 11:09
Category: Menu
Type: Bug Report
2
IMPROVE: Clicking on item with children should not close the context menu

		
1 comment
ADMIN
Rumen
Posted on: 21 Jun 2022 09:45

Can be solved by canceling the itemClicking client event:

 

function itemClicking(s,e) {
  if (e.get_item().get_items().get_count() > 0) {
    e.set_cancel(true);
  }
}