[JBoss JIRA] Created: (RF-2974) actionparam assign to doesn't work under MyFaces
by Ilya Shaikovsky (JIRA)
actionparam assign to doesn't work under MyFaces
------------------------------------------------
Key: RF-2974
URL: http://jira.jboss.com/jira/browse/RF-2974
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0, 3.1.4
Environment: MyFaces 1.1.5 (RF 3.1.4)
RF 3.2.0 SNAPSHOT, RF 3.1.4 GA
Reporter: Ilya Shaikovsky
Assigned To: Nick Belaevski
<rich:column>
<f:facet name="header">
<h:outputText value="Action" />
</f:facet>
<a4j:commandButton value="Delete" id="del" oncomplete="Richfaces.showModalPanel('panel')">
<t:updateActionListener property="#{capitalsBean.capitalToRemove}" value="#{cap}"/>
</a4j:commandButton>
</rich:column>
works and
<rich:column>
<f:facet name="header">
<h:outputText value="Action" />
</f:facet>
<a4j:commandButton value="Delete" id="del" oncomplete="Richfaces.showModalPanel('panel')">
<a4j:actionparam name="del" assignTo="#{capitalsBean.capitalToRemove}" value="#{cap}"/>
</a4j:commandButton>
</rich:column>
doesn't
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months
[JBoss JIRA] Created: (RF-3524) js error on conditional calendar rendering
by Ilya Shaikovsky (JIRA)
js error on conditional calendar rendering
------------------------------------------
Key: RF-3524
URL: http://jira.jboss.com/jira/browse/RF-3524
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Reporter: Ilya Shaikovsky
Assigned To: Nick Belaevski
<h:form>
<a4j:outputPanel id="result" ajaxRendered="true">
<c:set var="expression1" value="#{calendarBean.flag}" />
<c:set var="availDate" value="#{production.availDate}" />
<c:if test="${expression1=='false'}">
<h:inputText id="sisterTerritoryRelDate"
style="border: thin dotted">
<a4j:support event="onclick" action="#{calendarBean.switchFlag}"
reRender="result">
</a4j:support>
</h:inputText>
</c:if>
<c:if test="${expression1=='true'}">
<rich:calendar datePattern="dd-MMM-yyyy"
value="#{calendarBean.selectedDate}">
<a4j:support event="oninputclick"
action="#{calendarBean.switchFlag}" reRender="result">
</a4j:support>
</rich:calendar>
</c:if>
</a4j:outputPanel>
</h:form>
checked in demo environment on todays build. JS error which customer described exist.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months
[JBoss JIRA] Created: (RF-3502) Inplaces: Buttons hide input field if controlsVerticalPosition="top".
by Heorhi Maksimenko (JIRA)
Inplaces: Buttons hide input field if controlsVerticalPosition="top".
---------------------------------------------------------------------
Key: RF-3502
URL: http://jira.jboss.com/jira/browse/RF-3502
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: All browsers
Reporter: Heorhi Maksimenko
Assigned To: Nick Belaevski
Attachments: RF 3502 IE6.jpg, RF 3502 Safari inplaceInput.jpg, RF 3502 Safari inplaceSelect.jpg
<rich:inplaceSelect showControls="true" controlsHorizontalPosition="left" controlsVerticalPosition="top"
id="inplaceSelect" defaultLabel="invisible">
<f:facet name="controls">
<f:verbatim>
<button onclick="$('formID:inplaceSelectSubviewID:inplaceSelect').component.save()"
type="button">Save</button>
<button onclick="$('formID:inplaceSelectSubviewID:inplaceSelect').component.cancel()"
type="button">Cancel</button>
</f:verbatim>
</f:facet>
<f:selectItem itemLabel="visible" itemValue="visible" />
<f:selectItem itemLabel="invisible" itemValue="invisible" />
</rich:inplaceSelect>
Click on inplaceSelect on the page.--> inplaceSelect go to edit state, but buttons are presented in incorrect place. See attachment.
Expected results:
InplaceInput and InplaceSelect should be higher
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months
[JBoss JIRA] Created: (RF-3411) a4j:commandLink and commandButton do not work inside a region inside a ui:repeat
by Damian Harvey (JIRA)
a4j:commandLink and commandButton do not work inside a region inside a ui:repeat
--------------------------------------------------------------------------------
Key: RF-3411
URL: http://jira.jboss.com/jira/browse/RF-3411
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: Jboss Seam 2.1.0, Jboss AS 4.2.2, Richfaces 3.2, Mac OSX 10.4.11 (also tested under Windows XP with IE7)
Reporter: Damian Harvey
If an a4j:commandLink (or a4j:commandButton) are inside an a4j:region which is inside a ui:repeat they will not be able to fire their actions. Instead the browser will render a blank page. The server logs aren't touched.
Very simple page and bean to recreate. Using Seam to bind page and bean. I can create sample project if required.
Page:
======
<h:form>
<ui:repeat value="#{testBean.cities}" var="city">
#{city} :
<a:commandLink
action="#{testBean.hello}"
reRender="nameDiv">
<h:outputText value="This Works"/>
</a:commandLink>
 
<a:region>
<a:commandLink
action="#{testBean.hello}"
reRender="nameDiv">
<h:outputText value="inside region"/>
</a:commandLink>
<a:commandButton
action="#{testBean.hello}"
reRender="nameDiv"
value="This Does Not"/>
</a:region>
<br/>
</ui:repeat>
<hr/>
<a:repeat value="#{testBean.cities}" var="city">
#{city} :
<a:commandLink
action="#{testBean.hello}"
reRender="nameDiv">
<h:outputText value="This Works"/>
</a:commandLink>
 
<a:region>
<a:commandLink
action="#{testBean.hello}"
reRender="nameDiv">
<h:outputText value="This Also Now Works"/>
</a:commandLink>
</a:region>
<br/>
</a:repeat>
</h:form>
Bean:
======
public List<String> getCities() {
List<String> cities = new ArrayList<String>();
cities.add("London");
cities.add("Auckland");
return cities;
}
public void hello() {
log.info(MessageFormat.format(messages.get("test"), "hello"));
facesMessages.addFromResourceBundle("test", "Hello");
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 4 months