[JBoss JIRA] (RF-13615) ExtendedDataTable: double ajax request on scrolling
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13615?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13615:
-------------------------------
Fix Version/s: 4.3.8
> ExtendedDataTable: double ajax request on scrolling
> ---------------------------------------------------
>
> Key: RF-13615
> URL: https://issues.jboss.org/browse/RF-13615
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: showcase
> Affects Versions: 4.3.6
> Environment: Problem can be tested in richfaces showcase.
> http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=extende...
> Reporter: Holger Walter
> Fix For: 4.3.8
>
> Attachments: edt.png
>
>
> 1. Go to the extendedDataTable showcase
> 2. Turn on ajax loading.
> 3. Open the debugger of your browser and watch the network communication
> 4. Scroll down in the table untli new data has to be fetched.
> => one POST request is sent. This is fine.
> 5. Change the width of a column in the table.
> => one POST request is sent. This is fine.
> 6. Scroll again in the table untli new data has to be fetched.
> -> 2 POST requests are sent. WHY?
> From now on, on each scroll, the table always sends 2 requests. This behavior stops only when your relaod the table.
> Due to this behavior I get some perfromance issues, as I have to execute some own javascript after each request.
> Is there a possibility to prevent the 2nd POST request. I would be happy even with a dirty hack, or just a hint showing me from where the 2nd request is triggered.
> Best regards
> wlh
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months
[JBoss JIRA] (RF-13602) Problem with ajax request in Internet Explorer 11
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13602?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13602:
------------------------------------
[~wdmmza] please provide specific versions of the container, mojarra, and RichFaces versions you are running.
> Problem with ajax request in Internet Explorer 11
> -------------------------------------------------
>
> Key: RF-13602
> URL: https://issues.jboss.org/browse/RF-13602
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: base functionality
> Affects Versions: 4.0.0.Final
> Environment: Windows 2008, JBoss AS 7.x
> Reporter: Walter Maidub
> Assignee: Juraj Húska
> Labels: ie11, waiting_on_user
> Attachments: Dear Juraj Húska.docx, ie11-1.png, ie11-2.png, ie11-3.png
>
>
> I have a form with a FileUploader component (disabled) and a rich: select and this one is populated with 3 options, when one of them is selected in the managed bean a boolean variable is set to "true" and the FileUploader panel is updated to enable it.
> {code}
> <rich:select id="tipoArchivo" value="#{Bean.tipoArchivo}"
> required="true" listWidth="320px" styleClass="rf-select-large-width">
> <f:selectItems value="#{Bean.Catalogo}" />
> <a4j:ajax event="selectitem"
> execute="@this"
> render="upload,seccionCarga"
> listener="#{Bean.activarPanelCarga}" />
> </rich:select>
>
> <h:panelGrid columns="1">
> <h:panelGroup id="seccionCarga">
> <rich:panel bodyClass="info" titleStyleClass="rf-p-hdr" >
>
> <f:facet name="header">
> <h:outputText value="Detalle del archivo Cargado" />
> </f:facet>
>
> <h:panelGrid columns="2" columnClasses="columnOnCenter,columnOnCenter">
> <h:panelGroup style="text-align:center;display:block;width:550px;height:35px">
> <div align="center">
> <rich:fileUpload id="upload"
> styleClass="top"
> .
> .
> .
> {code}
>
> The problem is that the FileUploader remains disabled, it is as if the panel had not been updated.
>
> Generally <a4j:ajax event="selectitem"> requests fail, this only in IE 11.0.4 (KB2925418)
>
> Currently there is a filter to ensure compatibility with IE 8.
>
> When the page is loaded in developer tools (F12) the IE8 compatibility option is set correctly.
>
> The configuration of the environment is:
> Richfaces 4.0.0.
> IE11
> JSF2
> Eclipse Kepler
>
> Is there any way to correct the problems with these ajax requests?
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months
[JBoss JIRA] (RF-13598) Richfaces 4.3.5.Final ajax calls broke with JSF2.1.28
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13598?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13598:
------------------------------------
I reproduced this with a vanilla JSF application. I filed an upstream issue here:
https://java.net/jira/browse/JAVASERVERFACES-3261
> Richfaces 4.3.5.Final ajax calls broke with JSF2.1.28
> ------------------------------------------------------
>
> Key: RF-13598
> URL: https://issues.jboss.org/browse/RF-13598
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: compatibility
> Affects Versions: 4.2.3.Final, 4.3.5
> Environment: Tomcat 7.0.50, Richfaces 4.3.5.Final, JSF 2.1.28, client side: IE8+
> Reporter: Wang Liyu
> Assignee: Brian Leathem
> Priority: Critical
> Fix For: 4.3.7
>
> Original Estimate: 4 hours
> Remaining Estimate: 4 hours
>
> I recently tried to update the JSF to 2.1.28 with using Richfaces 4.2.3.Final or Richfaces 4.3.5.Final, and I had issue with AJAX calls. not sure if this is Richfaces issue or JSF issue.
> My setup is JSF2.1.28, Richfaces 4.2.3.Final (or 4.3.5.Final), WELD 2.1.2.Final, Tomcat 7.0.50, on the client is IE browser.
> The ajax call will stuck, I looked into the JSF.js, seems it added new method from 2.1.28,
> {code}
> var getEncodedUrlElement = function getEncodedUrlElement(form) {
> var encodedUrlElement = form['javax.faces.encodedURL'];
>
>
> if (encodedUrlElement) {
> return encodedUrlElement;
> } else {
> var formElements = form.elements;
> for (var i = 0, length = formElements.length; i < length; i++) {
> var formElement = formElements[i];
> if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {
> return formElement;
> }
> }
> }
>
>
> return undefined;
> };
> {code}
> In IE, form['javax.faces.encodedURL'] is undefined, and the " if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {" will throw exception before it return. this cause the Browser miss behavior,
>
> Just wondering is there anybody has the same issue or is Richface 4.x support this version of JSF?
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months
[JBoss JIRA] (RF-13598) Richfaces 4.3.5.Final ajax calls broke with JSF2.1.28
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13598?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13598:
-------------------------------
Description:
I recently tried to update the JSF to 2.1.28 with using Richfaces 4.2.3.Final or Richfaces 4.3.5.Final, and I had issue with AJAX calls. not sure if this is Richfaces issue or JSF issue.
My setup is JSF2.1.28, Richfaces 4.2.3.Final (or 4.3.5.Final), WELD 2.1.2.Final, Tomcat 7.0.50, on the client is IE browser.
The ajax call will stuck, I looked into the JSF.js, seems it added new method from 2.1.28,
{code}
var getEncodedUrlElement = function getEncodedUrlElement(form) {
var encodedUrlElement = form['javax.faces.encodedURL'];
if (encodedUrlElement) {
return encodedUrlElement;
} else {
var formElements = form.elements;
for (var i = 0, length = formElements.length; i < length; i++) {
var formElement = formElements[i];
if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {
return formElement;
}
}
}
return undefined;
};
{code}
In IE, form['javax.faces.encodedURL'] is undefined, and the " if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {" will throw exception before it return. this cause the Browser miss behavior,
Just wondering is there anybody has the same issue or is Richface 4.x support this version of JSF?
was:
See the https://community.jboss.org/thread/239391
> Richfaces 4.3.5.Final ajax calls broke with JSF2.1.28
> ------------------------------------------------------
>
> Key: RF-13598
> URL: https://issues.jboss.org/browse/RF-13598
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: compatibility
> Affects Versions: 4.2.3.Final, 4.3.5
> Environment: Tomcat 7.0.50, Richfaces 4.3.5.Final, JSF 2.1.28, client side: IE8+
> Reporter: Wang Liyu
> Assignee: Brian Leathem
> Priority: Critical
> Fix For: 4.3.7
>
> Original Estimate: 4 hours
> Remaining Estimate: 4 hours
>
> I recently tried to update the JSF to 2.1.28 with using Richfaces 4.2.3.Final or Richfaces 4.3.5.Final, and I had issue with AJAX calls. not sure if this is Richfaces issue or JSF issue.
> My setup is JSF2.1.28, Richfaces 4.2.3.Final (or 4.3.5.Final), WELD 2.1.2.Final, Tomcat 7.0.50, on the client is IE browser.
> The ajax call will stuck, I looked into the JSF.js, seems it added new method from 2.1.28,
> {code}
> var getEncodedUrlElement = function getEncodedUrlElement(form) {
> var encodedUrlElement = form['javax.faces.encodedURL'];
>
>
> if (encodedUrlElement) {
> return encodedUrlElement;
> } else {
> var formElements = form.elements;
> for (var i = 0, length = formElements.length; i < length; i++) {
> var formElement = formElements[i];
> if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {
> return formElement;
> }
> }
> }
>
>
> return undefined;
> };
> {code}
> In IE, form['javax.faces.encodedURL'] is undefined, and the " if (formElement.name.indexOf('javax.faces.encodedURL') >= 0) {" will throw exception before it return. this cause the Browser miss behavior,
>
> Just wondering is there anybody has the same issue or is Richface 4.x support this version of JSF?
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months
[JBoss JIRA] (RF-12554) <rich:tooltip> in a <ui|a4j:repeat> doesn't work in composite components
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12554?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12554:
-------------------------------
Summary: <rich:tooltip> in a <ui|a4j:repeat> doesn't work in composite components (was: <rich:tooltip> inside <ui:repeat> doesn't work without a dummy usage outside)
> <rich:tooltip> in a <ui|a4j:repeat> doesn't work in composite components
> ------------------------------------------------------------------------
>
> Key: RF-12554
> URL: https://issues.jboss.org/browse/RF-12554
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.2.3.Final
> Reporter: Bojan Antonovic
> Assignee: Pavol Pitonak
> Priority: Minor
>
> To make it work, you have to write once the dummy
> {code}
> <rich:panel><rich:tooltip><!--bla--></rich:tooltip></rich:panel>
> {code}
> then you can use as often as you wish:
> {code}
> <ui:repeat>
> <rich:tooltip> ...
> </ui:repeat>
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months
[JBoss JIRA] (RF-13591) RichFaces 4.5 integration tests are failing
by Michal Petrov (JIRA)
[ https://issues.jboss.org/browse/RF-13591?page=com.atlassian.jira.plugin.s... ]
Michal Petrov commented on RF-13591:
------------------------------------
There seems to be a problem in the configuration, when the build process reaches richfaces-components-a4j the surefire plugin throws a RuntimeException. {{mvn -Dbrowser=phantomjs -Dintegration=wildfly80 -Dsmoke=true clean install}}
bq. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.16:test (integration-tests) on project richfaces-components-a4j: Execution integration-tests of goal org.apache.maven.plugins:maven-surefire-plugin:2.16:test failed: java.lang.RuntimeException: null,null,null,null,null: source is null -> [Help 1]
The configuration for the tests is in the [central POM|https://github.com/richfaces/richfaces/blob/4.5.x/pom.xml#L410].
> RichFaces 4.5 integration tests are failing
> -------------------------------------------
>
> Key: RF-13591
> URL: https://issues.jboss.org/browse/RF-13591
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: build/distribution
> Affects Versions: 4.5.0.Alpha2
> Reporter: Pavol Pitonak
> Priority: Blocker
> Fix For: 4.5.0.Alpha3
>
> Original Estimate: 4 hours
> Remaining Estimate: 4 hours
>
> RichFaces 4.5 cannot be build because of compilation errors in integration tests:
> {code}
> [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (default-testCompile) on project richfaces: Compilation failure: Compilation failure:
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[9,30] error: cannot find symbol
> [ERROR] package org.richfaces.ui.toggle
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[10,39] error: package org.richfaces.ui.toggle.tabPanel does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[18,12] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[19,27] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[21,28] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[25,11] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[29,35] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/tabPanel/model/TabPanelItemChangeEventBean.java:[33,16] error: cannot find symbol
> [ERROR] class TabPanelItemChangeEventBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusDefaults.java:[48,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcing.java:[38,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcingOverridesFocusSettings.java:[31,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcingOverridesFocusSettings.java:[32,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusCandidates.java:[34,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusCandidates.java:[35,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[31,26] error: cannot find symbol
> [ERROR] package org.richfaces.model
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[44,12] error: cannot find symbol
> [ERROR] class IterationBuiltInBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[45,12] error: cannot find symbol
> [ERROR] class IterationBuiltInBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[57,11] error: cannot find symbol
> [ERROR] class IterationBuiltInBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[61,11] error: cannot find symbol
> [ERROR] class IterationBuiltInBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationBuiltInBean.java:[65,29] error: cannot find symbol
> [ERROR] class IterationBuiltInBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusSubmissionMethods.java:[50,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[31,26] error: cannot find symbol
> [ERROR] package org.richfaces.model
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[49,12] error: cannot find symbol
> [ERROR] class IterationTableStateBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[50,12] error: cannot find symbol
> [ERROR] class IterationTableStateBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[85,11] error: cannot find symbol
> [ERROR] class IterationTableStateBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[89,11] error: cannot find symbol
> [ERROR] class IterationTableStateBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/IterationTableStateBean.java:[93,29] error: cannot find symbol
> [ERROR] class IterationTableStateBean
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusValidationAware.java:[56,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusValidationAware.java:[57,34] error: package org.richfaces.ui.misc.focus does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[63,51] error: package org.richfaces.ui.iteration.extendedDataTable does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[64,51] error: package org.richfaces.ui.iteration.extendedDataTable does not exist
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusDefaults.java:[100,16] error: cannot find symbol
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcing.java:[62,19] error: cannot find symbol
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcingOverridesFocusSettings.java:[49,8] error: cannot find symbol
> [ERROR] class VerifyFocusEnforcingOverridesFocusSettings
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusEnforcingOverridesFocusSettings.java:[50,8] error: cannot find symbol
> [ERROR]
> [ERROR] E extends HtmlElement declared in method <E>getElementById(String)
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusCandidates.java:[77,8] error: cannot find symbol
> [ERROR] class VerifyFocusCandidates
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/VerifyFocusCandidates.java:[78,8] error: cannot find symbol
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusValidationAware.java:[153,16] error: cannot find symbol
> [ERROR] class AbstractFocus
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/focus/ITFocusValidationAware.java:[154,16] error: cannot find symbol
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[136,16] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[136,55] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[140,16] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[140,58] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[141,16] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[141,56] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[187,20] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[187,62] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[188,20] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[188,60] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[228,20] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[228,62] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[229,20] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[229,60] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[268,16] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[268,58] error: cannot find symbol
> [ERROR] class AbstractExtendedDataTable
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[269,16] error: cannot find symbol
> [ERROR] class ExtendedDataTableState
> [ERROR] /mnt/hudson_workspace/workspace/richfaces-4.5/framework/src/test/integration/org/richfaces/ui/extendedDataTable/ITTableState.java:[269,56] error: cannot find symbol
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)
10 years, 7 months