Dropdown arrow on custom CSS select box not working - select

I am working on the following website and i am having an issue with the dropdown (selectbox) arrow. [url no longer available]
If you click on the second slide of the booking form and then click on the dropdown arrow you will see that it doesn't work. I guess i could start again from scratch if i have to, however, if anyone can think of a quick way to fix this issue i would greatly appreciate it.
Thanks.

Related

Grafana drop down menu disappearing - unable to select fields

I'm having major issues when trying to manually create a new graph and select the data. Not sure if it's some weird browser issue.
When selecting FROM or FIELD and the drop down appears with a range of values, i'm unable to scroll down through the options. When i try and select the down menu to go through the choices the menu disappears.
If i know the field or option i can type it but trying to get to the bottom of a redis issue and need to go through the data we are getting and select the best options for an issue.
Seems to be anything where there's more options than in the space that can be displayed. Here's a screenshot:
As soon as a click on the down button to scroll through the option it disappears
Any ideas or anyone come up against anything similar?
The only solution I've found is to use the mouse scroll wheel.

Hide menuBar on click icefaces

I know icefaces has a "displayOnClick" parameter so that it will display when clicked on. However, clicking on it again does not hide it. You have to click off. Does anyone know if there's a way to make it hide when clicked on again?
Solution: this can only be done in ace 3.x. To do it otherwise, you need to use javascript.

eclipse java editor view

I pressed right mouse button and accidentally selected SOMETHING which I cannot revert anymore. Now I have a small panel on top of my editor which shows a very detailed project layout (begins with project name and goes down till method declarations). I don't want that there. How do I remove it?
Please help! Thank you!
Edit: the panel seems to represent the type hierarchy of my project.
That is very simple.. 'Undo ' the breadcrumb option

TinyMce plugin, how to copy 'Link' functionality

I'm creating a new plugin for TinyMce. However I cannot find any examples to see some of the functionality I've seen in other plugins. I've read their source code but I cannot find where it is done:
When you click on an 'A' element, the link/unlink buttons in the taskbar become enabled.
When you right click on an 'A' element, then click on the "Insert/edit link" icon that is shown in the popup menu, the "Insert/edit link" window is setup (has all the attributes for that particular link) prefilled.
Could you suggest somewhere where I could learn how to do this? A file and line number is fine.
Thanks in advance.
Here a part of what you want. To highlight a UI button (link) you may do
tinymce.get(editorid).contentManager.setActive('link', true);
EDIT: For the other functionality have a look at editor_plugin_src.js/editor_plugin.js in the directory tiny_mce\plugins\advlink\. It is only small in size. You will find that a file called link.htm is being called to form the popup. Hope this helps.

How can I create a YUI menu where you can click to open the submenus?

We have a multi-tiered/hierarchical YUI menu activated via a YUI menu button. Everything in this menu works pretty well. If you mouseover a menu item with a submenu, the submenu appears as expected. You can select an item from this submenu just fine.
The problem, however, is that you can also click on the parent items of this menu which closes the entire menu. In fact, I want the opposite. I'd like a click of a parent menu item leave the top level menu open and open the submenu (i.e. I want a click to be identical to a mouseover event in terms of functionality).
Side note: This isn't an issue on a typical web browser (e.g. Firefox) where the click event doesn't matter because you can't have a click without a mouseover. This is an issue on the iPhone which doesn't have a mouseover event.
I've been playing with the autosubmenudisplay properties and keepopen properties, hoping I can just handle the parent item click events to do what I want but, so far, I've been unsuccessful. If I set autosubmenudisplay to false, I can't figure out how to get the submenus to display manually. The keepopen property doesn't seem to work rather I set it on the menu or submenus.
Is there a way to get the behavior I want so our iPhone users are happy?
Todd Kloots, author of the YUI Button and Menu widgets here. Took at look at your request. Unfortunately the current version YUI Button and Menu aren't designed to support the type of interaction you are looking to create. Feel free to file a feature request via SourceForge and I'll try to work on this for a future version of YUI.
Todd
It's not exactly what you asked for, but have you looked at iUI? You may be able to pick up some tricks from the implementation.