[JBoss JIRA] Created: (RF-9308) a4j:mediaOutput doesn't work in Firefox
by Uros Majeric (JIRA)
a4j:mediaOutput doesn't work in Firefox
---------------------------------------
Key: RF-9308
URL: https://jira.jboss.org/browse/RF-9308
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Milestone2
Environment: Glassfish V3.0.1
Ubuntu 10.04 & Windows XP
Firefox 3.6.8
Reporter: Uros Majeric
I have placed a tag:
<a4j:mediaOutput session="true" element="object" type="audio/x-wav" createContent="#{recordPopup.play}" value="#{callController.currentCall}" cacheable="true" width="300"/>
but it doesn't show up in Firefox. It works fine in chromium.
If I paste "objects" data atribute value in navigation bar it works.
object tag looks so:
<object width="300" data="/app/rfRes/org.richfaces.resource.MediaOutputResource.jsf?do=..." id="j_idt90"></object>
no "type" tag.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months
[JBoss JIRA] Created: (RF-9287) Bean is reinitialized after request from jsFunction
by Pavol Pitonak (JIRA)
Bean is reinitialized after request from jsFunction
----------------------------------------------------
Key: RF-9287
URL: https://jira.jboss.org/browse/RF-9287
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-a4j-core
Affects Versions: 4.0.0.Milestone2
Environment: v.4.0.0-SNAPSHOT SVN r.19031
Reporter: Pavol Pitonak
If a composite component contains EL in id attribute, bean is re-initialized after each ajax request despite the fact that it is a view-scoped bean.
page:
<h:form id="form">
<table width="400">
<tbody>
<tr>
<td><span onmouseover="updateName('Kate')" onmouseout="updateName('')">Kate</span></td>
<td><span onmouseover="updateName('John')" onmouseout="updateName('')">John</span></td>
<td><span onmouseover="updateName('Alex')" onmouseout="updateName('')">Alex</span></td>
</tr>
<tr>
<td colspan="3">
<h:outputText value="#{bean.text}" id="showname"/>
</td>
</tr>
</tbody>
</table>
<a4j:jsFunction name="updateName" render="showname">
<a4j:param name="name" assignTo="#{bean.text}"/>
</a4j:jsFunction>
<compositecomponent:output value="#{bean.text}" id="showname"/>
</h:form>
composite component (focus on id):
<composite:interface>
<composite:attribute name="value" type="java.lang.String" required="true" />
</composite:interface>
<composite:implementation>
Name: <b><h:outputText id="#{cc.attrs.value}name" value="#{cc.attrs.value}"/></b>
</composite:implementation>
managed bean:
@ManagedBean
@ViewScoped
public class Bean implements Serializable {
@PostConstruct
public void init() {
System.out.println("initializing bean");
}
...
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months
[JBoss JIRA] Created: (RF-9286) jsFunction doesn't rerender composite components
by Pavol Pitonak (JIRA)
jsFunction doesn't rerender composite components
------------------------------------------------
Key: RF-9286
URL: https://jira.jboss.org/browse/RF-9286
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-a4j-core
Affects Versions: 4.0.0.Milestone2
Environment: v.4.0.0-SNAPSHOT SVN r.19031
Reporter: Pavol Pitonak
I have following page:
<h:form id="form">
<table width="400">
<tbody>
<tr>
<td><span onmouseover="updateName('Kate')" onmouseout="updateName('')">Kate</span></td>
<td><span onmouseover="updateName('John')" onmouseout="updateName('')">John</span></td>
<td><span onmouseover="updateName('Alex')" onmouseout="updateName('')">Alex</span></td>
</tr>
<tr>
<td colspan="3">
<compositecomponent:output value="#{bean.text}" id="showname"/>
</td>
</tr>
</tbody>
</table>
<a4j:jsFunction name="updateName" render="showname">
<a4j:param name="name" assignTo="#{bean.text}"/>
</a4j:jsFunction>
</h:form>
and this composite component:
<composite:interface>
<composite:attribute name="value" type="java.lang.String" required="true" />
</composite:interface>
<composite:implementation>
Name: <b><h:outputText id="name" value="#{cc.attrs.value}"/></b>
</composite:implementation>
The function above works ok is "showname" component is h:outputText. When it's composit component, it's not re-rendered.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months
[JBoss JIRA] Created: (RF-9326) Suggestionbox does not work correct with ajaxKeys in dataTable
by Martin Dames (JIRA)
Suggestionbox does not work correct with ajaxKeys in dataTable
--------------------------------------------------------------
Key: RF-9326
URL: https://jira.jboss.org/browse/RF-9326
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 3.3.3.Final, 3.3.1
Environment: JBoss AS 4.2.3
Seam 2.2
Richfaces 3.3.3
Reporter: Martin Dames
Hi,
it seems, that the suggestionbox only appears in the first row of the datatable if ajaxKeys is being used. By removing ajaxKeys it works for every row.
Here are some code
<rich:dataTable value="#{invoiceAction.selectedInvoice.positions}"
id="invoiceTable" width="350px" var="_pos"
ajaxKeys="#{invoiceAction.dataTablekeysToUpdate}"
rows="#{invoiceAction.confDataTableConfRowNo}" rowKeyVar="_row" >
<f:facet name="header">
... some columns
<rich:column style="width: 200px; text-align: left;">
<f:facet name="header">
<h:outputText value="Zielort" title="Der Zielort der Fahrt" />
</f:facet>
<h:inputText value="#{_pos.destination}" id="input"/>
<rich:suggestionbox
var="_result"
for="input"
suggestionAction="#{invoiceAction.autocomplete}"
ajaxSingle="true"
width="195"
height="200">
<f:facet name="header">
<h:outputText value="Waehlen Sie einen Vorschlag aus" />
</f:facet>
<h:column>
<h:outputText value="#{_result}" />
</h:column>
</rich:suggestionbox>
</rich:column>
... some more columns
</rich:dataTable>
Behind ajaxKeys is just a Set of Integers.
It tried RichFaces 3.3.1 also. It does not work either.
Thank you.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months