Button « RichFaces « JSF Q&A





1. Problem with richfaces ajax datatable + buttons    stackoverflow.com

Hello i have another problem with RichFaces this is my application and it shows how i want it to work : http://www.screencast.com/users/Schyzotrop/folders/Jing/media/a299dc1e-7a10-440e-8c39-96b1ec6e85a4 this is video of some glitch that i can't solve

2. Click event of buttons is not fired when it causes onChange event of textbox is fired first    stackoverflow.com

I have a textbox like below

<h:inputText value="#{bean.strQuantite}">   
  <a4j:support        
    actionListener="#{tabacListCommandeAltadisDetailBean.actionListenerQuantity}" 
    event="onchange" 
  ...

3. Opening a Rich Modal Panel on Button Click    stackoverflow.com

I m trying to open a rich modal panel with populated data on a button click tried

<h:commandButton id="btn_search" value="#{text['button.add']}" 
           ...

4. A4j buttons don't fire    stackoverflow.com

I used richfaces in a JSF project. Now I'm trying the same with Seam. But I always get the same JavaScript error:

Message: Object required
Line: 2791
Code: 0
URI: http://localhost:8080/myapp/a4j/g/3_3_1.GA/org/ajax4jsf/framework.pack.js
The s:button tag works
 <s:button id="eMail0" ...

5. rich:tab issue when user clicks 'Tab' button    stackoverflow.com

I am facing following issue with rich:tab with JSF. I have a parent page which includes another page having something like quick find button. Parent page has rich:tabs. Now when user use 'Tab' ...

6. Reinitialize the current month name, when i click button    stackoverflow.com

In my richCalendar.jsp page, first time i click the showCurrentMonth button and display the current month using rich:calendar.
i select some other month
i click SelectedMonth button. I show the selected month name. My ...

7. Prevent default action    stackoverflow.com

This page open in newwindow. I have one text box and two button(h:commandbutton and a4j:commandButton). I move(set) the cursor focus into textfield. My problem is, i hit enter button from textfield, ...

8. Copy another buttons functionality by selecting it through its styleClass    stackoverflow.com

Lets say clicking a button A on a modalPanel does actionA:

<a4j:commandLink styleClass="abc"
     immediate="true"
     action="actionA"
     oncomplete="#{rich:component('modalPanel')}.hide(); Event.stop(event); return false;">
</a4j:commandLink>
Now I ...

9. Conditionally rendered button, design, calling an action    stackoverflow.com

JFS1.2 + Richfaces 3.3 Situation is as follows: JSP page renders conditionally one or another panelGroup. Within each panelGroup there are couple setters and one command button. Each of two panelGroups uses own bean for ...





10. Render a disabled button in JSF    stackoverflow.com

I'm trying to render a button that should be initially rendered disabled and at some point enabled by client side actions. I'm using the component from a4j with the following code: ...

11. Use external button for rich:fileUpload    stackoverflow.com

I'm using the component rich:fileUpload for uploading files to my server the problem is that those files go along with a form that the user fills, so I wanna use one ...

13. How to stop page refresh when hit enter button from rich:inputNumberSpinner field?    coderanch.com

I use rich:inputNumberSpinner tag. The problem is : I set cursor focus(position) to inside of rich:inputNumberSpinner field, then i hit the enter button from my keyboard, that time page will be automatically refresh. But i don't need page refresh when i hit the enter button from my keyboard. (Cursor Focus rich:inputNumberSoinner) The code : spinnerTagTest.jsp <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsf/core" ...

14. Button action problem in richfaces    coderanch.com