[JBoss JIRA] Created: (RF-10933) ExtendedDataTable: Infinite Header Behavior
by Rosimar Sales (JIRA)
ExtendedDataTable: Infinite Header Behavior
-------------------------------------------
Key: RF-10933
URL: https://issues.jboss.org/browse/RF-10933
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 3.3.3.Final
Environment: Linux Suse 8.1, JSF 1.2, JEE 1.6
Reporter: Rosimar Sales
I facing some problems when converting JSP Pages to use the ExtendedDataTable component, in some situation we are getting an infitite header. Seems to be something related to CSS but we don't know. This behavior doesn't happen often.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-10228) Component rich:inplaceInput not get facet "controls"
by Antonio Parisi (JIRA)
Component rich:inplaceInput not get facet "controls"
----------------------------------------------------
Key: RF-10228
URL: https://issues.jboss.org/browse/RF-10228
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Environment: Mac OSX 10.6.6 - Glassfish v3.0.1 - Richfaces 4.0 M5
Reporter: Antonio Parisi
Fix For: 4.0.0.CR1
The component rich:inplaceInput, don't get facet "controls".
Example:
<rich:inplaceInput defaultLabel="Click here to edit" showControls="true"
controlsHorizontalPosition="left" controlsVerticalPosition="bottom"
id="inplaceInput">
<f:facet name="controls">
<button onmousedown="#{rich:component('inplaceInput')}.save();"
type="button">Save</button>
<button onmousedown="#{rich:component('inplaceInput')}.cancel();"
type="button">Cancel</button>
</f:facet>
</rich:inplaceInput>
Him don't get my Save and Cancel button, but show always default's "V" and "X" icon.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering.
by Ilya Shaikovsky (JIRA)
collapsibleSubtable: id set to tbody differs from component id and break rendering.
-----------------------------------------------------------------------------------
Key: RF-10756
URL: https://issues.jboss.org/browse/RF-10756
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
added to richfaces-showcase code:
<rich:column colspan="6">
<rich:collapsibleSubTableToggler for="sbtbl" />
<h:outputText value="#{list.vendor}" />
<a4j:commandButton value="render" render="sbtbl" action="#{carsBean.incDaysLive}">
</a4j:commandButton>
</rich:column>
<rich:collapsibleSubTable value="#{list.vendorItems}" var="item" id="sbtbl"
expandMode="client">
<rich:column>
<h:outputText value="#{item.daysLive}" />
</rich:column>
and
public void incDaysLive(){
for (InventoryVendorList vendor : inventoryVendorLists) {
for (InventoryVendorItem item : vendor.getVendorItems()) {
item.setDaysLive(item.getDaysLive()+1);
}
}
}
do not see values updated before refreshing the browser.
According to log update came fine for the subtable. just wrapper tbody has different id than specified at component. so it can't be updated.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] Created: (RF-970) DDMenu in Toolbar and Opera
by Carsten H?hne (JIRA)
DDMenu in Toolbar and Opera
---------------------------
Key: RF-970
URL: http://jira.jboss.com/jira/browse/RF-970
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.0
Reporter: Carsten H?hne
Priority: Minor
The dropDown Menu does not work in Opera (9.23) in this constellation:
<ui:component ...>
<rich:toolBar>
<h:form>
<rich:toolBarGroup >
<rich:dropDownMenu value="Collection" >
<rich:menuItem value="List working collection" action="list" />
</rich:dropDownMenu>
</rich:toolBarGroup>
</h:form>
<rich:toolBarGroup location="right">
<h:form>[....]
</h:form>
</rich:toolBarGroup>
</rich:toolBar>
</ui:component>
But it works with IE and Firefox.
If the form is put into the toolbargroup, than the menue is functioning in opera. Or if you put the form around the whole toolbar it works also.
--
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
14 years, 7 months