| Author |
Message |
|
|
Hi Support,
E:TextArea component with converter set does not call converter's getAsString method when rendering.
Could you please take a look?
Thanks.
Respectfully yours,
Catalin Petrisor
|
 |
|
|
Hi,
I am trying to use e:checkbox component in following configuration:
booleanProp is defined in MyBB backing bean like this:
When JSF UpdateModel phase is executed I get IllegalArgumentException because CheckboxInput components tries to set the value binding with null value, even if disabled is true.
This is the stacktrace:
Please let me know if you have any questions.
Thanks,
Catalin
|
 |
|
|
Hello,
I am trying to use e:radio component in following configuration:
The component gets rendered in HTML like this:
<...>
<label id="...">
<input id="..." name="..." value="value" type="radio" />
"Yes"
</label>
<label id="...">
<input id="..." name="..." type="radio" checked="checked"/>
"No"
</label>
<...>
Shouldn't the e:radio render the value attributes for inputs as
value="true" and value="false", respectively?
Thanks.
Catalin P.
|
 |
|
|
Hi,
I have a tab pane defined like this:
<e:tabpane selectedIndex="1" ajax="false" preload="false" reload="true" tabControlStyle="tabControl">
<e:tab id="basicInfoTab" text="#{i18n[edit.tabs.basicInfo']}">
</e:tab>
</e:tabpane>
In this configuration it works any button defined within any tab pane.
But if I change selectedIndex to be a value binding like:
<e:tabpane selectedIndex="#{EditPage.selectedTabIndex}" ajax="false" preload="false" reload="true" tabControlStyle="tabControl">
<e:tab id="basicInfoTab" text="#{i18n['edit.tabs.basicInfo']}">
</e:tab>
</e:tabpane>
no button is working from inside the newly selected pane.
Thanks.
Best regards,
Catalin Petrisor
|
 |
|
|
I am experiencing the same problem. More than that, tabpane's layout is messed up.
Has this been fixed?
Thanks.
Best regards,
Catalin Petrisor
|
 |
|
|
Hi Simplica,
Any updates on this?
Thanks,
Catalin P.
|
 |
|
|
Hi Adina,
I've just noticed that your response came to my inbox as spam.
Regarding the issue, I think I forgot to set ajax=true on the button. That is, the e:button definition should look like below:
<e:window ajax="true">
<h:messages style="color:red;"/>
<h:inputText value="#{StaticBean.age}" validator="#{StaticBean.validateAge}"/>
<e:button action="true" ajax="true" value="Submit"/>
</e:window>
Could you please re-test and check if the issue does reproduce?
Thanks,
Catalin P.
|
 |
|
|
Hi Simplica,
I am trying to use a custom renderer for standard JSF component h:messages and I fail to do so.
My faces-config.xml contains the following config:
After debugging I found out that the actual renderer for javax.faces.Messages is
Could you please advise how can I make my renderer be the one used by framework?
Thanks,
Catalin P.
|
 |
|
|
Hi Simplica,
I am using standard JSF input components (like h:inputText, h:selectManyListbox etc) in an Ecruiser e:window component set to be ajax-enabled.
When my input components generate FacesMessages as part of their validation process the messages do not get displayed on the screen.
This is the xml snippet of the page:
Please let me know if you need more details.
Thanks,
Catalin P.
|
 |
|
|