Most voted "rich-faces" questions
Richfaces is a component library for web applications that use JSF framework. The components in this library have AJAX support with numerous built-in components and a skins support that can make your application interface standardized.
Learn more…19 questions
Sort by count of
-
3
votes1
answer99
views"div loading" Servlet
I have a screen that has the function of sending a file to the server via servlet but since this file might be big, I needed to put a panel or a div with a gif of load. I’m wearing richfaces, I’ve…
-
2
votes1
answer1016
viewsJSF datatable how to fill columns with List<List<Integer>?
I have the following situation. A vector that will store the values that will be registered in the bean public class PainelControleExtratoVO { public Integer[] demandaEmAberto; public Integer[]…
-
2
votes0
answers47
viewsProblem with rich:suggestionbox component in IE
We have a problem with the rich:suggestionbox component in the IE 8 browser. When the suggestion list appears and the user clicks inside the suggestion, but in no item in the list, the suggestion is…
-
2
votes1
answer2436
viewsSwitch capital letters to lower case letters
I have a richfaces datatable component that returns a database record and this record comes with uppercase letters. Example: PAULO FERNANDES DA SILVA. There would be something I could do to edit…
-
1
votes2
answers428
viewsOverwrite CSS compontente Richfaces
I’m using a component Calendar but only the date (omitting the time), and overriding the CSS to reduce the screen size. Below: <rich:calendar value="#{_sessao.dtSessao}" showFooter="false"…
-
1
votes1
answer126
viewsRichfaces fileUpload does not invoke Listener
I’m using the latest version of Richfaces, I copied the example of show case on the Richfaces website, and the example does not invoke the Istener, I’ve tried everything, someone could help me?…
-
1
votes2
answers237
viewsWhy isn’t jsf recognizing Istener in the Bean?
Why jsf is not recognizing the Bean Reader? My bean: /** * Listener que escuta a mudança do tipo de Solicitante * * @param event */ public void mudarSolicitante(ValueChangeEvent event){…
-
1
votes0
answers20
viewsProblem showing and hiding element with JSF and Richfaces
I am trying to use a selectOneRadio, when performing an exchange action should show an element and disappear if it was another option, however, there is no exchange. ***<h:panelGrid…
-
0
votes0
answers151
viewsReturn to the region where you were when you submitted the form (JSF 1.2)?
I have a page jsf with 2 master/detail moulds. How do I make sure that after the form submission the bean details the region of the page where the detail is? I’m using jsf 1.2 and Richfaces 3.3.3.…
-
0
votes1
answer87
viewsHow can I not update a page when closing a Richfaces modalPanel?
I need that when closing a Richfaces modalPanel the page on which the modal was called is not rendered. The action to close the modalPanel is like this: <h:commandLink…
-
0
votes1
answer43
viewsJSF + Richfaces - Print HTML in Datatable
Guys, I have an HTML code in the database and I need to show it on a datatable. But when printing instead of redenizing HTML the browser is displaying HTML. How do I redenize?…
-
0
votes1
answer86
viewsHow to display html content in a datatable
I have the message field in an Editor that after inclusion is shown in a datatable. <rich:editor value="#{solicitacaoImpressaoBean.solicitacao.mensagem}" toolbar="full" style="margin-bottom:…
-
0
votes1
answer63
viewsrender button according to status
I am using the following code to render my button to only appear with the status Waiting for approval but does not occur. <a4j:commandButton value="Enviar Solicitação"…
-
0
votes1
answer68
viewstype Enum field can be used for comparison?
I own an enum field: public enum StatusImpressaoEnum { PREVISAO(0 ,"Previsão"), EMELABORACAO(1, "Em Elaboração"), AGUARDANDOREPASSE(2, "Aguardando Repasse"), REPASSERECEBIDO(3, "Repasse Recebido"),…
-
0
votes1
answer30
viewsHow to render name or social reason according to type
I am trying to render the contents of a column of a table with name or Social reason depending on the type <f:facet name="header"> #{contato.tipoCadastro.codigo eq '1' ? 'Nome' : 'Razão…
-
0
votes1
answer54
viewsPlaceholder in <h:inputText with JSF 1.x
Good morning, I’m with a system developed with version 1.2 of JSF and Richfaces 3.3 I’ve been researching about including a placeholder in the element <h:inputText jsf but only found tutorials…
-
0
votes1
answer29
viewsProblem when receiving value in a select with richfaces
Good morning guys, I need help in the example below: <rich:select value="#{bdaBean.argosDocum.localizacaoObra}" disabled="#{not(bdaBean.usuarioPodeAtualizarBDA)}" height="20px"…
-
0
votes1
answer30
viewsFire loading when Calendar is filled
I have a calendar that when I have both dates filled in, I need to trigger the loading/loading and also update the status field with (*). The problem that I can’t load in Calendar follows code…
-
-3
votes1
answer100
viewsLoad modal only once
I have a modal that is loaded after login (automatic), but at each refresh the modal opens, I need it to open only once after logging in. <rich:modalPanel id="modal" autosized="true" width="500"…