[JBoss JIRA] Created: (RF-2184) panelBarItem stops working in 3.1.4
by Juergen Zimmermann (JIRA)
panelBarItem stops working in 3.1.4
-----------------------------------
Key: RF-2184
URL: http://jira.jboss.com/jira/browse/RF-2184
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.4
Environment: JBossAS 4.2.2, RichFaces 3.1.4, JDK 6u4
Reporter: Juergen Zimmermann
Attachments: screenshot-1.jpg
I have 3 times panelBarItem. The second panelBarItem has an attribute rendered="...". If the rendered attribute evaluates to false, then a corrupted html page is produced (both with IE 7 and FF 3beta2). Screenshot will be attached. This issue is new, and wasn't there in 3.1.3
If the rendered attribute evaluates to true, then everything is fine.
--
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
18 years, 1 month
[JBoss JIRA] Created: (RF-2075) The left border of rich:dataTable is missing on IE7
by Adrian Mitev (JIRA)
The left border of rich:dataTable is missing on IE7
---------------------------------------------------
Key: RF-2075
URL: http://jira.jboss.com/jira/browse/RF-2075
Project: RichFaces
Issue Type: Bug
Environment: richfaces 3.1.3 GA
Reporter: Adrian Mitev
Priority: Critical
Attachments: issue1.JPG
In IE7 the right border of the dataTable is missing. It's ok on firefox
P.S. The problem does not appear with 3.1.2 GA
Here is the code
<rich:dataTable width="85%" id="agreementList" rows="5"
value="#{agreementView.allAgreements}" var="agr">
<f:facet name="header">
<rich:columnGroup>
<rich:column styleClass="headerText" colspan="8">
<h:outputText value="Договори" />
</rich:column>
<rich:column breakBefore="true">
<h:outputText styleClass="headerText" value="Номер" />
</rich:column>
<rich:column>
<h:outputText styleClass="headerText" value="Име" />
</rich:column>
<rich:column>
<h:outputText styleClass="headerText" value="ЕГН/Д.Номер" />
</rich:column>
<rich:column colspan="5">
<h:outputText styleClass="headerText" value="Функции" />
</rich:column>
</rich:columnGroup>
</f:facet>
<rich:column>
<h:outputText value="#{agr.ingoingNumber}" />
</rich:column>
<rich:column>
<h:outputText rendered="#{agr.client.clientType == 0}"
value="#{agr.client.firstname} #{agr.client.family}" />
<h:outputText rendered="#{agr.client.clientType == 1}"
value="#{agr.client.firmtype.firmtype} #{agr.client.firmName}" />
</rich:column>
<rich:column>
<h:outputText rendered="#{agr.client.clientType == 0}"
value="#{agr.client.egn}" />
<h:outputText rendered="#{agr.client.clientType == 1}"
value="#{agr.client.taxid}" />
</rich:column>
<rich:column colspan="6" align="right">
<h:commandLink style="defaultLinkStyle"
action="#{agreementView.viewAppendixes}"
rendered="#{agr:isActionAllowed('viewAppendixes')}">
<h:graphicImage value="/images/document.png" alt="Приложения" />
</h:commandLink>
<h:commandLink style="defaultLinkStyle"
action="#{agreementView.editAgreement}"
rendered="#{agr:isActionAllowed('editAgreement')}">
<h:graphicImage value="/images/edit.gif" alt="Редактиране" />
</h:commandLink>
<h:commandLink style="defaultLinkStyle"
action="#{agreementView.printAgreement}"
rendered="#{agr:isActionAllowed('printAgreement')}">
<h:graphicImage value="/images/print.gif" alt="Печат" />
</h:commandLink>
</rich:column>
<rich:subTable var="adr" value="#{agr.client.addressesAsList}">
<rich:column>
<f:facet name="header">
<rich:spacer/>
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="User" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.account.username}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Телефон" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.telephone}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Мобилен" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.mobile}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Улица" />
</f:facet>
<h:outputText
value="#{adr.street.streetname} ##{adr.streetnumber} #{adr.floor != '' ? 'ет:':''} #{adr.floor} #{adr.entrance != '' ? 'вх:':''} #{adr.entrance} #{adr.appartmentnumber != '' ? 'ап:':''} #{adr.appartmentnumber}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="IP" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.account.ip}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Mac" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.account.mac}"></h:outputText>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Лице за контакт" />
</f:facet>
<f:verbatim>&nbsp;</f:verbatim>
<h:outputText value="#{adr.contactname}"></h:outputText>
</rich:column>
</rich:subTable>
</rich:dataTable>
--
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
18 years, 1 month
[JBoss JIRA] Created: (RF-2187) ajax request return wrong rows in responce
by Ilya Shaikovsky (JIRA)
ajax request return wrong rows in responce
------------------------------------------
Key: RF-2187
URL: http://jira.jboss.com/jira/browse/RF-2187
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Reporter: Ilya Shaikovsky
Assigned To: Maksim Kaszynski
Fix For: 3.2.0
Max, please check the project attached.
The problem is
choose some value from select on any row .
fill Xdimension with some value (1)
file Qty field with some value (1)
***Price field will be updated.
If you will change the value in Qty input - corresponding Price will be changed except one case:
change something in Qty with immidiate click inside some input inside another row.
spans for the clicked row(empty) - comes instead of spans for the row which is changed.
--
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
18 years, 1 month
[JBoss JIRA] Created: (RF-2192) Panel Menu: Action listerner doesn't caled
by Ilya Shaikovsky (JIRA)
Panel Menu: Action listerner doesn't caled
------------------------------------------
Key: RF-2192
URL: http://jira.jboss.com/jira/browse/RF-2192
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Reporter: Ilya Shaikovsky
Assigned To: Nick Belaevski
Fix For: 3.2.0
demosite example. In PanelMenu bean there is
public void updateCurrent(ActionEvent event) {
System.out.println("listener called");
setCurrent(((UIPanelMenuItem)event.getComponent()).getLabel().toString());
}
1) on the page make next change
<rich:panelMenuItem label="Item 1.1" actionListener="#{panelMenu.updateCurrent}">
no requests fired.
2) on the page change to
<rich:panelMenuItem label="Item 1.1" actionListener="#{panelMenu.updateCurrent}" action="#{panelMenu.updateCurrent}">
reques fired. only action called./
1) Should be request in ajax mode in any case
2) listener should be called
--
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
18 years, 1 month
[JBoss JIRA] Created: (RF-1636) Sorting date-column in scrollableDataTable gives NPE
by Alexander Seitz (JIRA)
Sorting date-column in scrollableDataTable gives NPE
----------------------------------------------------
Key: RF-1636
URL: http://jira.jboss.com/jira/browse/RF-1636
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.2
Reporter: Alexander Seitz
If you try to sort a column (by clicking the column header) containing entries of the type date, you get a NullPointerException in case one or more date-values are empty in the table.
Caused by: java.lang.NullPointerException
at java.util.Date.getMillisOf(Date.java:939)
at java.util.Date.compareTo(Date.java:959)
at java.util.Date.compareTo(Date.java:112)
at org.richfaces.model.internal.WrappedBeanComparator.compare(WrappedBeanComparator.java:42)
at java.util.Arrays.mergeSort(Arrays.java:1270)
at java.util.Arrays.sort(Arrays.java:1210)
at java.util.Collections.sort(Collections.java:159)
at org.richfaces.model.internal.ComponentSortableDataModel.prepareCollection(ComponentSortableDataModel.java:57)
at org.richfaces.model.internal.ComponentSortableDataModel.loadData(ComponentSortableDataModel.java:81)
at org.richfaces.model.DataModelCache.loadData(DataModelCache.java:153)
at org.richfaces.model.ScrollableTableDataModel.walk(ScrollableTableDataModel.java:115)
at org.richfaces.model.DataModelCache.walk(DataModelCache.java:183)
at org.ajax4jsf.component.UIDataAdaptor.walk(UIDataAdaptor.java:968)
...
--
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
18 years, 2 months