Questions tagged as 'rich-faces'

1
answer

How 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: 1em"> DataTable: <rich:dataTable id="...
asked by 06.11.2017 / 12:16
1
answer

field of type enum can be used for comparison?

I have a field of type Enum: public enum StatusImpressaoEnum { PREVISAO(0 ,"Previsão"), EMELABORACAO(1, "Em Elaboração"), AGUARDANDOREPASSE(2, "Aguardando Repasse"), REPASSERECEBIDO(3, "Repasse Recebido"), ATENDIDO(4 ,"Atendido"), SOLICITAC...
asked by 08.11.2017 / 13:08
0
answers

Return to the region of the page where you were when submitting the form (JSF 1.2)?

I have a page jsf with 2 forms type master / detail. How to make after the submission of the form detail the bean can direct to the region of the page where the detail is? I am using jsf 1.2 and Richfaces 3.3.3.     
asked by 09.09.2015 / 17:29
1
answer

How can I not refresh the page when closing a modalFanelPanel?

I need to close a modalPanel from RichFaces to the page where the modal call was not rendered. The action to close modalPanel looks like this: <h:commandLink onclick="Richfaces.hideModalPanel('modalRegistroItemAnalise');">...
asked by 16.09.2015 / 13:38
1
answer

How to render name or company name according to type

I am trying to render the contents of a column of a table with name or Social reason depending on type <f:facet name="header"> #{contato.tipoCadastro.codigo eq '1' ? 'Nome' : 'Razão Social/Nome Fantasia'}</f:facet> The code is o...
asked by 19.02.2018 / 13:29