I have nested menus in Vuetify. They are opened via hover (not via click). And when a submenu has hovered, because the mouse leaves the parent menu, the whole menu closes.
https://ibb.co/xYH0ZxT
So I need to implement this: As long as the mouse stays in any of the submenus the whole menu should remain open. As soon as the mouse leaves the menu area the menu should be closed.
Related
I have a popup menu in one tab which not close automatically between swiping from tab to tab. Clicking outside of the popup window closing it, but the swipe is not detected as click so the popup stays on the screen as long as I click outside of it.
Have Googled this issue for a couple hours now with no results.
Can you give me any glue how handle this problem? I want that popup close when swipe, but don't know how.
I added id="somethinghere" for the tab, and for the popup menu element I added attach="somethinghere". Now it is attached to one tab and not following to other tabs, but it is not still closing. But this is better than nothing.
So I'm trying to hit this button to activate the dropdown menu, but it seems that only half of it works, Im afraid the automation is clicking the top bottom or somewhere where is not active, let me illustrate with a few screenshots, which will contain a comparisson. ALSO can I click on one of the options from the dropdown without "activating it"? (clicking the DropDown Button)
Now another example from the button fully working
I have found that the button fully works if it's the first one to be clicked, if I click something else, then this issue happens, and that's only button with this issue
Internet Explorer 11 does not detect that there is an element over the element that I want to click.
The use case is a page with a fixed div, that is a nav bar, and a button that is scrolled under the nav bar. Then the IE cannot detect that there is a div over the button and click on the nav bar.
On Chrome I get an error that mentions:
Element is not clickable at point (411, 675). Other element would receive the click
But on Internet explorer, there is no such error.
Here is an example https://jsfiddle.net/qv2m5t1e/ where there is a nav bar and a Button. Using Internet Explorer I cannot click on "button 1" because he scrolls it under the navbar, and hence clicks on the nav bar instead of the button.
If you look at the example above in Internet Explorer, you cannot click button 1 because the other element will revceive the click.
Is there a work around?
I working on a vb.net form, when a new screen pop up, all the parent control is disable. All the parent form control will work, When you closed the pop screen.
How do I let the parent control work when the new screen pop up.
Is there anyway to programmatically force a MenuItem to raise their popup event? Basically, if you click on it with your stylus or finger, it shows the MenuItem collection for that specific MenuItem. I'd like to be able to do by using a button that I capture.
If you add your menu items to a ContextMenu you can then call ContextMenu.Show with a position and it will show the context menu at that position.
So you could do that in your button click event. Or did you want to 'fake' taps on the menu buttons on the soft menu bar?