Hi,
I have implemented the telerik treeview and attached context menu. Context menu will differ depending on selected node. This works fine for normal browser size (100%). If the browser size is increased (e.g. 150 %), then it does not show proper context menu. It shows context menu of previously selected node or random node. To check the functionality of telerik treeview, I have created one demo application. In this, I have just displayed name of the node which was clicked to open the context menu.
Please find attached screen shots for the behavior. Does anyone have noticed similar behavior? Is there any work around for it?
Regards,
Maulik
I have implemented the telerik treeview and attached context menu. Context menu will differ depending on selected node. This works fine for normal browser size (100%). If the browser size is increased (e.g. 150 %), then it does not show proper context menu. It shows context menu of previously selected node or random node. To check the functionality of telerik treeview, I have created one demo application. In this, I have just displayed name of the node which was clicked to open the context menu.
private void contextMenu_Opened(object sender, RoutedEventArgs e)
{
RadTreeViewItem conItem = ((RadContextMenu)sender).GetClickedElement<
RadTreeViewItem
>();
MessageBox.Show(conItem.ToString());
}
Please find attached screen shots for the behavior. Does anyone have noticed similar behavior? Is there any work around for it?
Regards,
Maulik