I have a selectOneMenu and a precise input set beside a button with a small arrow to flip them on the page, leave the input above and below the selectOneMenu. My application is JavaEE, JSF and use Primefaces.Alguém can give me an example? I searched on google but not found.
Related
I have a XHTML page using SelectOneButton which presents a list of buttons as label from A to Z (letters) horizontally and continuously without any break or new line. It is working perfectly on computer screen.
But if the same page on smaller screen such as iPhone, the SelectOneButton changes from horizontal to vertical. I believe it is the design from PrimeFaces.
I came up with two options: if the screen provides enough space for all buttons from A to Z, then the page will use SelectOneButton, otherwise the page will use SelectOneMenu (dropbox).
What approach should I use?
Thanks,
Nghia
Currently in our web application, Trinidad JSF tr:table tag is used to display information in the table format. Upon using the attribute rowSelection=single, radio button displayed automatically for each row in a table and name/text next to this control is not visible to the user.
When user navigates with tab key to select the radio button control or user clicks on the same with mouse button, focus with dotted line is not displayed on the control.
What are the different approaches to display dotted line (provided by IE browser) around the radio button / check box control created by Irinidad JSF table tag?
End user requires this accessibility feature.
Right now, we are using,
myfaces-api-1.1.4.jar, myfaces-impl-1.1.4.jar,
trinidad-api-1.0.7.jar,trinidad-impl-1.0.7.jar,
Browser IE 8.0
Find your CSS file, look for any lines that have
outline: none;
And remove them.
This will fix most, if not all of your missing focus indicator problems. There might be scenarios where you have a hidden overflow that is causing the outline to not show up on some browsers. You would have to find those and fix them by adding appropriate focus styles.
I would like apply for hot key on Menu Bar/ Sub Menu Bar Using Prime Faces.
When i applied Hot key (like ctrl+f) then menu would be appearing like this
When i click in File Menu then its working fine but using the hot key its not appear.
So, Any buddy can tell me what i have to do.
From theory you could use <p:hotkey> as shown in the Primefaces showcase.
However, you need to bind it to a client side widget action. So you need to find out which is the widgetVar of your menu and the javascript action method to open the menu.
I'm trying to display an OverlayPanel into a Carousel, but this panel is wider than the Carousel, so its contents are not completely shown.
I've tried adding a z-index style value to the panel, but it still stays "inside" the Carousel.
Is there any way to show it completely, by drawing its overflow outside the Carousel?
According to the documentation from primefaces OverLayPanel Documentation www.primefaces.org/docs/vdl/3.4/primefaces-p/overlayPanel.html you should use
appendToBody="true"
The overlay panel with it should do the trick.
I am using LWUIT Library. I want to add same long information of project on AboutUS FORM. I'm using label but information become lost. If I am not using TextArea then what is another Solution?
My Another Question is,
In Login Form, what should be used TextField or TextArea?
Label is not good for showing long information. because its not allow to show multiple lines. Better you can use with TextArea and set the editable mode to false. If you dont want to use TextArea means just start the ticker on the Label.
Use TextField for login page.