[JBoss JIRA] Created: (RF-4248) a serious design defect
by zhou careprad (JIRA)
a serious design defect
-----------------------
Key: RF-4248
URL: https://jira.jboss.org/jira/browse/RF-4248
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.4
Reporter: zhou careprad
Priority: Minor
Fix For: 3.1.x
We encounter a serious problem in the project that based on richfaces.
for example:
<h:panelGrid id="boxGrid" binding="#{bean.boxGrid}">
</h:panelGrid>
<a4j:commandButton ajaxSingle="true" id="testButton" value="TEST"
binding="#{bean.testButton}"></a4j:commandButton>
<h:panelGrid style="display:none">
<a4j:poll id="poll"
actionListener="#{pollRequestBean.poll}"
binding="#{pollRequestBean.pollButton}" interval="2000"
/>
</h:panelGrid>
as you see,we want to modify the panelGrid(id="boxGrid") when user click the button(id="testButton"),then when rerender,some changes will show in the content
of the panelgrid.And,the poll is also what we needed(the reason is affirmative). But this has a big problem--synchronization!
in such case:a user click a button,richfaces fire the event to it's listener(alias as 'la'),and the listener(la) began to update the boxGrid(the back-binding of the
panelGrid),in the same time,the poll also come to request,what happen--the new comming request will update the richfaces' component tree,the boxGrid(the back-binding)
also update,but the listener(la) did not know this,it still hold the old model,this cause the change to the model has no mean to the ui.
We have try many method to solve this problem,but all is in vain.you may think push,the push alos will update the component tree when the event is fired.
I think this a serious problem to richfaces.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4064) Problem with a4j:commandLink
by Bob Corcoran (JIRA)
Problem with a4j:commandLink
-----------------------------
Key: RF-4064
URL: https://jira.jboss.org/jira/browse/RF-4064
Project: RichFaces
Issue Type: Bug
Environment: Windows
Reporter: Bob Corcoran
Priority: Minor
We have a page with a few a4j:commandLinks as well as an h:inputText and h:inputTextarea, among other markup. It works fine until we add the attribute required="true" to either the inputText or InputTextarea. When we add the required="true" to either the inputText or InputTextarea, one of the a4j:commandLinks's (further up on the page) breaks. It still renders fine, but the method on the backing bean (in this case a SEAM stateful bean) is not called, because the link does not fire. What's even more odd is that the remaining a4j:commandLinks on the page continue to work according to specs. These links are contained in separate rich:column tags.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4110) rich:inputNumberSpinner is accepting decimal.
by Ranveer Singh (JIRA)
rich:inputNumberSpinner is accepting decimal.
---------------------------------------------
Key: RF-4110
URL: https://jira.jboss.org/jira/browse/RF-4110
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.2.0
Environment: Microsoft XP.
Reporter: Ranveer Singh
Priority: Minor
rich:inputNumberSpinner accepts decimal value on tab out. It displays error on console
"[severity=(ERROR 2), summary=(cmdbStatus:cmdbStatusTable:0:j_id63: '0.1' must be a number consisting of one or more digits.), detail=(cmdbStatus:cmdbStatusTable:0:j_id63: '0.1' must be a number between -9223372036854775808 to 9223372036854775807 Example: 98765432)]"
There should be provision in which this should not accept decimal values.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4160) Opening Treenode causes java.lang.NoClassDefFoundError
by Charles Crouch (JIRA)
Opening Treenode causes java.lang.NoClassDefFoundError
------------------------------------------------------
Key: RF-4160
URL: https://jira.jboss.org/jira/browse/RF-4160
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Charles Crouch
One of our users is hitting a NoClassDefFoundError when opening a Treenode :
10:53:45,561 ERROR [[default]] Servlet.service() for servlet default threw exception
java.lang.NoClassDefFoundError
at sun.java2d.SunGraphicsEnvironment.createGraphics(SunGraphicsEnvironment.java:337)
at java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1143)
at org.ajax4jsf.resource.Java2Dresource.getImage(Java2Dresource.java:115)
at org.ajax4jsf.resource.Java2Dresource.send(Java2Dresource.java:89)
at org.ajax4jsf.resource.ResourceLifecycle.sendResource(ResourceLifecycle.java:223)
at org.ajax4jsf.resource.ResourceLifecycle.send(ResourceLifecycle.java:159)
at org.ajax4jsf.resource.InternetResourceService.load(InternetResourceService.java:336)
at org.ajax4jsf.cache.LRUMapCache.load(LRUMapCache.java:116)
at org.ajax4jsf.cache.LRUMapCache.get(LRUMapCache.java:87)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:198)
at org.ajax4jsf.resource.InternetResourceService.serviceResource(InternetResourceService.java:144)
at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:265)
at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:60)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
We don't want to have everyone set java.awt.headless=true in order to run our app, which does appear to fix this problem.
Are there any other options?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-4011) rich:modalPanel "width" parameter does NOT work
by Yurii Kartsev (JIRA)
rich:modalPanel "width" parameter does NOT work
-----------------------------------------------
Key: RF-4011
URL: https://jira.jboss.org/jira/browse/RF-4011
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: JSF 1.2_07
Facelets 1.1.14
RF: v.3.2.2-SNAPSHOT SVN $Revision: 8947 $ $Date: 2008-06-07 08:39:49 -0400 (Sat, 07 Jun 2008) $
Browser: Mozilla Firefox 2.0.0.16
System: Windows XP SP2
App Server: JBoss 4.2.2 GA
Reporter: Yurii Kartsev
Priority: Critical
The parameter "width" in rich:modalPanel doesn't work. Only "minWidth" works.
Having this example, panel width is 550px:
<rich:modalPanel id="aboutModalBox" minHeight="100" minWidth="550" height="125" width="650" zindex="2000"/>
And having this one, it's 350px:
<rich:modalPanel id="aboutModalBox" minHeight="100" height="125" width="650" zindex="2000">
What's the point?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months