From jira-events at lists.jboss.org Thu Oct 31 22:53:02 2013 Content-Type: multipart/mixed; boundary="===============6761374937525452001==" MIME-Version: 1.0 From: alexey plotnikov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13305) Autocomplete: i must press button twice for popup window Date: Thu, 31 Oct 2013 22:53:01 -0400 Message-ID: In-Reply-To: JIRA.12509249.1383274376805@jira02.app.mwc.hst.phx2.redhat.com --===============6761374937525452001== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable alexey plotnikov created RF-13305: ------------------------------------- Summary: Autocomplete: i must press button twice for popup win= dow Key: RF-13305 URL: https://issues.jboss.org/browse/RF-13305 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 4.3.4 Reporter: alexey plotnikov All described here https://community.jboss.org/thread/233971 I try repeat: I have this autocomplete component: {code} = = = = =
= = = = = = = = = = = = = = =
= {code} as you can see, i don't use showButton=3D"true", because i need another fun= ctionality, i need erase input text before show popup window. I use JavaScript function "autocompleteChangeProvider" for extract selected= id. I use separate button(/img/cancel.png) for erase input text, as you can see= this function just use Richfaces API. = And problem: if autocomplete.providerName not null and not empty(in rich:autocomplete) a= nd user clicks on cancel button(img/cancel.png), then after that, if user c= licks on show button(/img/arrow.png) popup not showing, user must clicks tw= ice on this button. *This problem shows if i use showButton from rich:autocomplete instead my s= how button.* I think i found a solution of this problem: Autocomplete.js has this code: {code} var onChangeValue =3D function (event, value, callback) { = selectItem.call(this, event); = = // value is undefined if called from AutocompleteBase onChange = var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSubV= alue() : value; = var oldValue =3D this.value; = this.value =3D subValue; = = if ((this.options.isCachedAjax || !this.options.ajaxMode) && = this.cache && this.cache.isCached(subValue)) { = ... = } else { = if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D "c= lick") { = this.__setInputValue(subValue); = } = if (subValue.length >=3D this.options.minChars) { = if ((this.options.ajaxMode || this.options.lazyClientMode) = && oldValue !=3D subValue) { = callAjax.call(this, event, callback); = } = } else { = if (this.options.ajaxMode) { = clearItems.call(this); = this.__hide(event); = } = } = } = }; = {code} for show popup this must be true: = {code} oldValue !=3D subValue {code} but in this part of code = oldValue is ''(empty string) and subValue is ''(empty string), so this condition = {code} oldValue !=3D subValue {code} return false! = i replace this code by this: {code} var onChangeValue =3D function (event, value, callback) { = selectItem.call(this, event); = = // value is undefined if called from AutocompleteBase onChange = var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSubV= alue() : value; = var oldValue =3D this.value; = this.value =3D subValue; = = if ((this.options.isCachedAjax || !this.options.ajaxMode) && = this.cache && this.cache.isCached(subValue)) { = ... = } else { = if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D "c= lick") { = this.__setInputValue(subValue); = } = if (subValue.length >=3D this.options.minChars) { = if ((this.options.ajaxMode || this.options.lazyClientMode) = && (oldValue !=3D subValue || (oldValue =3D=3D=3D '' && subValue =3D=3D=3D = ''))) { = callAjax.call(this, event, callback); = } = } else { = if (this.options.ajaxMode) { = clearItems.call(this); = this.__hide(event); = } = } = } = = }; = {code} so, than oldValue=3D'' and subValue=3D=3D'' callAjax.call will be called an= d popup will be showing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6761374937525452001==-- From jira-events at lists.jboss.org Fri Nov 1 00:14:02 2013 Content-Type: multipart/mixed; boundary="===============8252707353079040130==" MIME-Version: 1.0 From: alexey plotnikov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: ignored API call .setValue('') Date: Fri, 01 Nov 2013 00:14:01 -0400 Message-ID: In-Reply-To: JIRA.12509251.1383279199103@jira02.app.mwc.hst.phx2.redhat.com --===============8252707353079040130== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable alexey plotnikov created RF-13306: ------------------------------------- Summary: Autocomplete: ignored API call .setValue('') Key: RF-13306 URL: https://issues.jboss.org/browse/RF-13306 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 4.3.4 Reporter: alexey plotnikov All described here https://community.jboss.org/thread/233973 I have this autocomplete component: {code} = = = = =
= = = = = = = = = = = = = = = =
{code} as you can see, i don't use showButton=3D"true", because i need another fun= ctionality, i need erase input text before show popup window. I use JavaScript function "autocompleteChangeProvider" for extract selected= id. I use separate button(/img/cancel.png) for erase input text, as you can see= this function just use Richfaces API. = And a problem: if autocomplete.providerName not null and not empty(in rich:autocomplete) a= nd user clicks on show button(/img/arrow.png) than input text not erasing, = but i called #{rich:component('provider-suggestion')}.setValue('') !!! = I think i found a solution AutocompleteBase.js has this code: {code} rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, options= ) { = // call constructor of parent class = $super.constructor.call(this, componentId); = this.selectId =3D selectId; = this.fieldId =3D fieldId; = this.options =3D $.extend({}, defaultOptions, options); = this.namespace =3D this.namespace || "." + rf.Event.createNamespace= (this.name, this.selectId); = this.currentValue =3D ""; = this.tempValue =3D this.getValue(); = this.isChanged =3D this.tempValue.length !=3D 0; = bindEventHandlers.call(this); = }; {code} as you can see this.currentValue =3D "" so JS thinks that this.currentValue= =3D"" so currentValue equal new value("" - empty string), so nothing happen= s. i replace this code by this: {code} rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, options= ) { = // call constructor of parent class = $super.constructor.call(this, componentId); = this.selectId =3D selectId; = this.fieldId =3D fieldId; = this.options =3D $.extend({}, defaultOptions, options); = this.namespace =3D this.namespace || "." + rf.Event.createNamespace= (this.name, this.selectId); = this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = this.tempValue =3D this.getValue(); = this.isChanged =3D this.tempValue.length !=3D 0; = bindEventHandlers.call(this); = }; {code} and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8252707353079040130==-- From jira-events at lists.jboss.org Fri Nov 1 06:29:02 2013 Content-Type: multipart/mixed; boundary="===============5661994999681637236==" MIME-Version: 1.0 From: Matti Bickel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13307) Support java.util.Set in iteration components Date: Fri, 01 Nov 2013 06:29:01 -0400 Message-ID: In-Reply-To: JIRA.12509268.1383301701348@jira02.app.mwc.hst.phx2.redhat.com --===============5661994999681637236== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matti Bickel created RF-13307: --------------------------------- Summary: Support java.util.Set in iteration components Key: RF-13307 URL: https://issues.jboss.org/browse/RF-13307 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.5-Tracking, 5.0.0.Alpha3 Environment: Wildfly-8.0.0.Beta1 Reporter: Matti Bickel JSF-2.2 now supports iteration over sets as in #{elem.name}" Using RF iteration components this is currently not possible as UISequence.= java doesn't detect Sets and treats them as scalar values. Would be nice if RF catches up with JSF here. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5661994999681637236==-- From jira-events at lists.jboss.org Fri Nov 1 06:31:03 2013 Content-Type: multipart/mixed; boundary="===============2574322238106418643==" MIME-Version: 1.0 From: Matti Bickel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13307) Support java.util.Set in iteration components Date: Fri, 01 Nov 2013 06:31:03 -0400 Message-ID: In-Reply-To: JIRA.12509268.1383301701000@jira02.app.mwc.hst.phx2.redhat.com --===============2574322238106418643== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13307?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matti Bickel updated RF-13307: ------------------------------ Description: = JSF-2.2 now supports iteration over sets as in {code:xml} #{elem.name} {code} Using RF iteration components this is currently not possible as UISequence.= java doesn't detect Sets and treats them as scalar values. Would be nice if RF catches up with JSF here. was: JSF-2.2 now supports iteration over sets as in #{elem.name}" Using RF iteration components this is currently not possible as UISequence.= java doesn't detect Sets and treats them as scalar values. Would be nice if RF catches up with JSF here. = > Support java.util.Set in iteration components > --------------------------------------------- > > Key: RF-13307 > URL: https://issues.jboss.org/browse/RF-13307 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.5-Tracking, 5.0.0.Alpha3 > Environment: Wildfly-8.0.0.Beta1 > Reporter: Matti Bickel > > JSF-2.2 now supports iteration over sets as in > {code:xml} > > #{elem.name} > > {code} > Using RF iteration components this is currently not possible as UISequenc= e.java doesn't detect Sets and treats them as scalar values. > Would be nice if RF catches up with JSF here. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2574322238106418643==-- From jira-events at lists.jboss.org Fri Nov 1 07:28:02 2013 Content-Type: multipart/mixed; boundary="===============4282092886873238182==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Fri, 01 Nov 2013 07:28:01 -0400 Message-ID: In-Reply-To: JIRA.12509275.1383305248578@jira02.app.mwc.hst.phx2.redhat.com --===============4282092886873238182== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13308: ---------------------------------- Summary: Autocomplete: clientFilterFunction doesn't work in Fi= refox Key: RF-13308 URL: https://issues.jboss.org/browse/RF-13308 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, regression Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT Mojarra 2.1.19 EAP 6.1.1 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Firefox 24 @ Linux x86_64 Reporter: Pavol Pitonak Priority: Critical # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chAutocomplete/filtering.xhtml # set attribute mode to "client" # set attribute clientFilterFunction to "customClientFilterFunction" # type "no" to the autocomplete # select "Raleigh of North Carolina" # click outside of autocomplete in order to send selected value to the serv= er # check that output contains "North Carolina" result: * works fine in Chrome 30 * in Firefox 24, after you type "no", popup with suggestions is not display= ed * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4282092886873238182==-- From jira-events at lists.jboss.org Fri Nov 1 10:26:02 2013 Content-Type: multipart/mixed; boundary="===============3690037981887575371==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Fri, 01 Nov 2013 10:26:02 -0400 Message-ID: In-Reply-To: JIRA.12509603.1383315889508@jira02.app.mwc.hst.phx2.redhat.com --===============3690037981887575371== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13309: ---------------------------------- Summary: Autocomplete doesn't work correctly when r:ajax bound= to selectitem event Key: RF-13309 URL: https://issues.jboss.org/browse/RF-13309 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, regression Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT Mojarra 2.1.19 EAP 6.1.1 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 30.0.1599.114 @ Linux x86_64 Reporter: Pavol Pitonak Priority: Critical # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chAutocomplete/ajaxOnSelectitem.xhtml # type "a" into autocomplete # select "Alabama" # check output below the autocomplete # check output of value change listener in page's header result: * there is "Your selection: alabama" below the autocomplete instead of "You= r selection: Alabama" with upper case A * value change listener's output contains "alabama" instead of "Alabama": *= 1 value changed: null -> alabama * it works fine on page http://localhost:8080/metamer/faces/components/rich= Autocomplete/autocomplete.xhtml which is exactly the same but uses event=3D= change in r:ajax * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3690037981887575371==-- From jira-events at lists.jboss.org Fri Nov 1 16:47:02 2013 Content-Type: multipart/mixed; boundary="===============0327016841110060469==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13310) Upgrade Graphene and Warp in 4.3.5 branch Date: Fri, 01 Nov 2013 16:47:01 -0400 Message-ID: In-Reply-To: JIRA.12510980.1383338818781@jira02.app.mwc.hst.phx2.redhat.com --===============0327016841110060469== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13310: ------------------------------- Summary: Upgrade Graphene and Warp in 4.3.5 branch Key: RF-13310 URL: https://issues.jboss.org/browse/RF-13310 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: tests - functional = Affects Versions: 4.3.5 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D The state of 4.3 branch framework tests is not as stable as 5.0, thus I tra= ck this as a separate issue. Why we want to upgrade: * Graphene =3D Final version API changes changes * Warp =3D ease of debugging I don't think this is absolutely necessary, I doesn;'t work with 4.3.x test= s regularly and QE doesn't run them afaik. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0327016841110060469==-- From jira-events at lists.jboss.org Fri Nov 1 16:49:02 2013 Content-Type: multipart/mixed; boundary="===============5396404994249734633==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13310) Upgrade Graphene and Warp in 4.3 branch Date: Fri, 01 Nov 2013 16:49:01 -0400 Message-ID: In-Reply-To: JIRA.12510980.1383338818000@jira02.app.mwc.hst.phx2.redhat.com --===============5396404994249734633== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13310?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13310: ---------------------------- Summary: Upgrade Graphene and Warp in 4.3 branch (was: Upgrade Graphen= e and Warp in 4.3.5 branch) = > Upgrade Graphene and Warp in 4.3 branch > --------------------------------------- > > Key: RF-13310 > URL: https://issues.jboss.org/browse/RF-13310 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 4.3.5 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > The state of 4.3 branch framework tests is not as stable as 5.0, thus I t= rack this as a separate issue. > Why we want to upgrade: > * Graphene =3D Final version API changes changes > * Warp =3D ease of debugging > I don't think this is absolutely necessary, I doesn;'t work with 4.3.x te= sts regularly and QE doesn't run them afaik. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5396404994249734633==-- From jira-events at lists.jboss.org Mon Nov 4 04:43:02 2013 Content-Type: multipart/mixed; boundary="===============1128583729121725330==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13311) Make Push independent of BaseComponent Date: Mon, 04 Nov 2013 04:43:02 -0500 Message-ID: In-Reply-To: JIRA.12511012.1383558111870@jira02.app.mwc.hst.phx2.redhat.com --===============1128583729121725330== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Michal Petrov created RF-13311: ---------------------------------- Summary: Make Push independent of BaseComponent Key: RF-13311 URL: https://issues.jboss.org/browse/RF-13311 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Affects Versions: 5-Tracking Reporter: Michal Petrov Currently Push extends BaseComponent but since BaseComponent is not a part = of core the extending fails. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1128583729121725330==-- From jira-events at lists.jboss.org Mon Nov 4 05:09:03 2013 Content-Type: multipart/mixed; boundary="===============6271872547551260595==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 05:09:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============6271872547551260595== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov updated RF-13312: ------------------------------- Fix Version/s: 4.5.0.Alpha1 = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6271872547551260595==-- From jira-events at lists.jboss.org Mon Nov 4 05:09:03 2013 Content-Type: multipart/mixed; boundary="===============8046971583661327092==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 05:09:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638602@jira02.app.mwc.hst.phx2.redhat.com --===============8046971583661327092== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Michal Petrov created RF-13312: ---------------------------------- Summary: rich:editor doesn't work in RF 4.5 Key: RF-13312 URL: https://issues.jboss.org/browse/RF-13312 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.5-Tracking Reporter: Michal Petrov The editor's UI doesn't get rendered. The rendering fails with: {panel} 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicatio= n\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-sam= ple.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out of= range: -1 {panel} It is caused by [this line|https://github.com/richfaces4/components/blob/ma= ster/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.java= #L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8046971583661327092==-- From jira-events at lists.jboss.org Mon Nov 4 05:11:03 2013 Content-Type: multipart/mixed; boundary="===============4042236533946082940==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 05:11:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============4042236533946082940== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12829710#com= ment-12829710 ] = Michal Petrov commented on RF-13312: ------------------------------------ I'm guessing we can just check if the path contains the {{"db=3D"}} substri= ng and if not just return the path. = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4042236533946082940==-- From jira-events at lists.jboss.org Mon Nov 4 05:23:02 2013 Content-Type: multipart/mixed; boundary="===============7969031912349410840==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Mon, 04 Nov 2013 05:23:01 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542249@jira02.app.mwc.hst.phx2.redhat.com --===============7969031912349410840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Michal Petrov created RF-13313: ---------------------------------- Summary: rich:fileupload fileuploadprogress unavailable in RF = 4.5 Key: RF-13313 URL: https://issues.jboss.org/browse/RF-13313 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.5-Tracking Reporter: Michal Petrov After uploading an image error appears in console: {panel} GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.reso= urce/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.008011564146727324 = 404 (Not Found) jquery.js:8434 {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7969031912349410840==-- From jira-events at lists.jboss.org Mon Nov 4 08:08:02 2013 Content-Type: multipart/mixed; boundary="===============1799624999967063154==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13314) Deprecate reslib resource files Date: Mon, 04 Nov 2013 08:08:02 -0500 Message-ID: In-Reply-To: JIRA.12514982.1383570367000@jira02.app.mwc.hst.phx2.redhat.com --===============1799624999967063154== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13314?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12840892#com= ment-12840892 ] = Michal Petrov commented on RF-13314: ------------------------------------ I've copied the ajax and base-component reslibs to RF 4.5, there should be = no issue in removing them from RF 5. = > Deprecate reslib resource files > ------------------------------- > > Key: RF-13314 > URL: https://issues.jboss.org/browse/RF-13314 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5-Tracking > Reporter: Michal Petrov > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1799624999967063154==-- From jira-events at lists.jboss.org Mon Nov 4 08:08:02 2013 Content-Type: multipart/mixed; boundary="===============4333083285390082509==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13314) Deprecate reslib resource files Date: Mon, 04 Nov 2013 08:08:01 -0500 Message-ID: In-Reply-To: JIRA.12514982.1383570367035@jira02.app.mwc.hst.phx2.redhat.com --===============4333083285390082509== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Michal Petrov created RF-13314: ---------------------------------- Summary: Deprecate reslib resource files Key: RF-13314 URL: https://issues.jboss.org/browse/RF-13314 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component Affects Versions: 5-Tracking Reporter: Michal Petrov -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4333083285390082509==-- From jira-events at lists.jboss.org Mon Nov 4 12:04:02 2013 Content-Type: multipart/mixed; boundary="===============4368434577107286144==" MIME-Version: 1.0 From: Andreas Zschorn (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12987) NPE in UIComponent$ComponentSystemEventListenerAdapter.processEvent when placing UITree in UIAccordionItem programmatically. Date: Mon, 04 Nov 2013 12:04:02 -0500 Message-ID: In-Reply-To: JIRA.12491835.1368621907000@jira02.app.mwc.hst.phx2.redhat.com --===============4368434577107286144== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12987?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850590#com= ment-12850590 ] = Andreas Zschorn commented on RF-12987: -------------------------------------- Reason is to 90% that during restore, the component is not pushed to the e= l context At line 2527: ComponentSystemEventListenerAdapter. UIComponent .getCurrentComponent(context) returns null. ---------------------------------------------------------------------------= ------------------------------------ wrapped =3D (ComponentSystemEventListener) ((listener =3D=3D nu= ll) ? UIComponent .getCur= rentComponent(context) : ((StateHolderSaver)= listener).restore(context)); = > NPE in UIComponent$ComponentSystemEventListenerAdapter.processEvent when = placing UITree in UIAccordionItem programmatically. > -------------------------------------------------------------------------= --------------------------------------------------- > > Key: RF-12987 > URL: https://issues.jboss.org/browse/RF-12987 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.1 > Environment: JBoss 7.1.1.Final > Mojarra 2.1.21 > Reporter: Yuriy Granovskiy > Fix For: 5-Tracking > > Attachments: trepanelnbar.zip > > > NPE appears when we place UITree into UIAccordionItem programmatically. > After postback we get: > {panel:title NPE stacktrace} > java.lang.NullPointerException > javax.faces.component.UIComponent$ComponentSystemEventListenerAdapter.pr= ocessEvent(UIComponent.java:2486) > javax.faces.event.SystemEvent.processListener(SystemEvent.java:106) > com.sun.faces.application.ApplicationImpl.processListeners(ApplicationIm= pl.java:2168) > com.sun.faces.application.ApplicationImpl.invokeComponentListenersFor(Ap= plicationImpl.java:2116) > com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.j= ava:288) > com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.j= ava:246) > javax.faces.component.UIComponentBase.publishAfterViewEvents(UIComponent= Base.java:2201) > javax.faces.component.UIComponentBase.doPostAddProcessing(UIComponentBas= e.java:1883) > javax.faces.component.UIComponentBase.setParent(UIComponentBase.java:400) > javax.faces.component.UIComponentBase$ChildrenList.add(UIComponentBase.j= ava:2635) > javax.faces.component.UIComponentBase$ChildrenList.add(UIComponentBase.j= ava:2607) > com.sun.faces.application.view.StateManagementStrategyImpl.restoreDynami= cAdd(StateManagementStrategyImpl.java:393) > com.sun.faces.application.view.StateManagementStrategyImpl.restoreDynami= cActions(StateManagementStrategyImpl.java:314) > com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(S= tateManagementStrategyImpl.java:281) > com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.= java:188) > com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHand= lingStrategy.java:123) > com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(F= aceletViewHandlingStrategy.java:453) > com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHan= dler.java:142) > javax.faces.application.ViewHandlerWrapper.restoreView(ViewHandlerWrappe= r.java:303) > com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:1= 92) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:1= 16) > com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) > {panel} > Works fine if we store some another components(such as command button) in= the accordion item. But UITree causes the problem. > Here is a component class: > {code:java|title TreePanelBar.java} > @FacesComponent( value =3D "extended.TreePanelBar" ) > @ResourceDependencies( { @ResourceDependency( library =3D "org.richfaces"= , name =3D "ajax.reslib" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "base-= component.reslib" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "toggl= ePanel.js" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "accor= dion.js" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "Accor= dionItem.js" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "tree.= js", target =3D "" ), > @ResourceDependency( library =3D "", name =3D "richfaces-event.js= ", target =3D "" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "icons= .ecss" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "accor= dion.ecss" ), > @ResourceDependency( library =3D "org.richfaces", name =3D "tree.= ecss", target =3D "" ) } ) > public class TreePanelBar extends UIAccordion implements SystemEventListe= ner, Serializable { > private static final long serialVersionUID =3D -7698934343515911542L; > protected enum Properties { > node > } > public TreePanelBar() { > UIViewRoot root =3D getFacesContext().getViewRoot(); > root.subscribeToViewEvent( PreRenderViewEvent.class, this ); > } > /** {@inheritDoc} */ > @Override > public void processEvent( final SystemEvent event ) throws AbortProce= ssingException { > if ( getChildCount() =3D=3D 0 ) { > Iterator iterator =3D getNode().getChildrenKeysIterat= or(); > while ( iterator.hasNext() ) { > Object childKey =3D iterator.next(); > DataHolderTreeNodeImpl entry =3D (DataHolderTreeNodeImpl)= getNode().getChild( childKey ); > UIAccordionItem item =3D (UIAccordionItem) getFacesContex= t().getApplication().createComponent( getFacesContext(), > UIAccordionItem.COMPONENT_TYPE, "org.richfaces.Ac= cordionItemRenderer" ); > item.setId( FacesContext.getCurrentInstance().getViewRoot= ().createUniqueId() ); > item.setHeader( ( entry.getData() ).getLabel() ); > getChildren().add( item ); > // Adding a button programmatically. Works fine without t= ree. > UICommand button =3D (UICommand) getFacesContext().getApp= lication().createComponent( > UICommand.COMPONENT_TYPE ); > button.setId(item.getId() + "_button"); > button.setValue( "Button " + item.getHeader() ); > item.getChildren().add( button ); > //Adding a tree programmatically. NPE in javax.faces.comp= onent.UIComponent$ComponentSystemEventListenerAdapter.processEvent after po= stback. > UITree tree =3D createTree( childKey, entry ); > tree.setId( item.getId() + "_tree"); > item.getChildren().add( tree ); = > } > } > } > /** > * @param childKey > * @param entry > * @return > */ > private UITree createTree( final Object childKey, final DataHolderTre= eNodeImpl entry ) { > UITree tree =3D (UITree) getFacesContext().getApplication().creat= eComponent( UITree.COMPONENT_TYPE ); > tree.setValue( entry ); > UITreeNode uiNode =3D (UITreeNode) getFacesContext().getApplicati= on().createComponent( UITreeNode.COMPONENT_TYPE ); > uiNode.setTitle( (String) entry.getKey() ); > uiNode.setIconCollapsed( entry.getData().getIcon() ); > uiNode.setIconExpanded( entry.getData().getIcon() ); > uiNode.setId( getFacesContext().getViewRoot().createUniqueId() ); > tree.getChildren().add( uiNode ); > return tree; > } > /** > * @return > */ > public TreeNode getNode() { > return (TreeNode) getStateHelper().eval( Properties.node ); > } > public void setNode( final TreeNode node ) { > getStateHelper().put( Properties.node, node ); > } > /** {@inheritDoc} */ > @Override > public boolean isListenerForSource( final Object source ) { > return true; > } > } > {code} > The exception is very similar to [RF-11423|https://issues.jboss.org/brows= e/RF-11423] > The listener that is trying to get processed is for PostRenderEvent which= is not mensioned in the component code. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4368434577107286144==-- From jira-events at lists.jboss.org Mon Nov 4 12:14:02 2013 Content-Type: multipart/mixed; boundary="===============5780929804398602482==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13314) Deprecate reslib resource files Date: Mon, 04 Nov 2013 12:14:02 -0500 Message-ID: In-Reply-To: JIRA.12514982.1383570367000@jira02.app.mwc.hst.phx2.redhat.com --===============5780929804398602482== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13314?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850595#com= ment-12850595 ] = Brian Leathem commented on RF-13314: ------------------------------------ Many RF 5 components still use these reslibs. We cannot remove the reslibs= from RF 5 until those components have been migrated. = > Deprecate reslib resource files > ------------------------------- > > Key: RF-13314 > URL: https://issues.jboss.org/browse/RF-13314 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5-Tracking > Reporter: Michal Petrov > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5780929804398602482==-- From jira-events at lists.jboss.org Mon Nov 4 12:14:02 2013 Content-Type: multipart/mixed; boundary="===============6294721464013233440==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13314) Deprecate reslib resource files Date: Mon, 04 Nov 2013 12:14:02 -0500 Message-ID: In-Reply-To: JIRA.12514982.1383570367000@jira02.app.mwc.hst.phx2.redhat.com --===============6294721464013233440== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13314?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13314: ------------------------------- Fix Version/s: 5-Tracking = > Deprecate reslib resource files > ------------------------------- > > Key: RF-13314 > URL: https://issues.jboss.org/browse/RF-13314 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5-Tracking > Reporter: Michal Petrov > Fix For: 5-Tracking > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6294721464013233440==-- From jira-events at lists.jboss.org Mon Nov 4 12:16:03 2013 Content-Type: multipart/mixed; boundary="===============8976759946064284525==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Mon, 04 Nov 2013 12:16:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============8976759946064284525== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13313: ------------------------------- Fix Version/s: 4.5.0.Alpha1 = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8976759946064284525==-- From jira-events at lists.jboss.org Mon Nov 4 12:16:03 2013 Content-Type: multipart/mixed; boundary="===============0269888926309588825==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Mon, 04 Nov 2013 12:16:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============0269888926309588825== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13313: ------------------------------- Component/s: component-input = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0269888926309588825==-- From jira-events at lists.jboss.org Mon Nov 4 12:20:04 2013 Content-Type: multipart/mixed; boundary="===============0589372863748931052==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 12:20:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============0589372863748931052== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850598#com= ment-12850598 ] = Brian Leathem commented on RF-13312: ------------------------------------ +1. [~lfryc] any idea why this would have started failing in RF 4.5? = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0589372863748931052==-- From jira-events at lists.jboss.org Mon Nov 4 12:20:06 2013 Content-Type: multipart/mixed; boundary="===============2299644362893362620==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13311) Make Push independent of BaseComponent Date: Mon, 04 Nov 2013 12:20:02 -0500 Message-ID: In-Reply-To: JIRA.12511012.1383558111000@jira02.app.mwc.hst.phx2.redhat.com --===============2299644362893362620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13311?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13311: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Make Push independent of BaseComponent > -------------------------------------- > > Key: RF-13311 > URL: https://issues.jboss.org/browse/RF-13311 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Affects Versions: 5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Currently Push extends BaseComponent but since BaseComponent is not a par= t of core the extending fails. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2299644362893362620==-- From jira-events at lists.jboss.org Mon Nov 4 12:22:02 2013 Content-Type: multipart/mixed; boundary="===============8264082914054291570==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13310) Upgrade Graphene and Warp in 4.3 branch Date: Mon, 04 Nov 2013 12:22:02 -0500 Message-ID: In-Reply-To: JIRA.12510980.1383338818000@jira02.app.mwc.hst.phx2.redhat.com --===============8264082914054291570== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13310?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13310: ------------------------------- Fix Version/s: 4.3.5 = > Upgrade Graphene and Warp in 4.3 branch > --------------------------------------- > > Key: RF-13310 > URL: https://issues.jboss.org/browse/RF-13310 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 4.3.5 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3.5 > > > The state of 4.3 branch framework tests is not as stable as 5.0, thus I t= rack this as a separate issue. > Why we want to upgrade: > * Graphene =3D Final version API changes changes > * Warp =3D ease of debugging > I don't think this is absolutely necessary, I doesn;'t work with 4.3.x te= sts regularly and QE doesn't run them afaik. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8264082914054291570==-- From jira-events at lists.jboss.org Mon Nov 4 12:22:02 2013 Content-Type: multipart/mixed; boundary="===============7873045230429069368==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13310) Upgrade Graphene and Warp in 4.3 branch Date: Mon, 04 Nov 2013 12:22:02 -0500 Message-ID: In-Reply-To: JIRA.12510980.1383338818000@jira02.app.mwc.hst.phx2.redhat.com --===============7873045230429069368== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13310?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850601#com= ment-12850601 ] = Brian Leathem commented on RF-13310: ------------------------------------ Better to keep things current and consistent IMO, We will be supporting RF= 4.3 for a while yet. = > Upgrade Graphene and Warp in 4.3 branch > --------------------------------------- > > Key: RF-13310 > URL: https://issues.jboss.org/browse/RF-13310 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 4.3.5 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3.5 > > > The state of 4.3 branch framework tests is not as stable as 5.0, thus I t= rack this as a separate issue. > Why we want to upgrade: > * Graphene =3D Final version API changes changes > * Warp =3D ease of debugging > I don't think this is absolutely necessary, I doesn;'t work with 4.3.x te= sts regularly and QE doesn't run them afaik. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7873045230429069368==-- From jira-events at lists.jboss.org Mon Nov 4 12:22:03 2013 Content-Type: multipart/mixed; boundary="===============3086786953319283076==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Mon, 04 Nov 2013 12:22:02 -0500 Message-ID: In-Reply-To: JIRA.12509603.1383315889000@jira02.app.mwc.hst.phx2.redhat.com --===============3086786953319283076== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13309?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13309: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Autocomplete doesn't work correctly when r:ajax bound to selectitem event > ------------------------------------------------------------------------- > > Key: RF-13309 > URL: https://issues.jboss.org/browse/RF-13309 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/ajaxOnSelectitem.xhtml > # type "a" into autocomplete > # select "Alabama" > # check output below the autocomplete > # check output of value change listener in page's header > result: > * there is "Your selection: alabama" below the autocomplete instead of "Y= our selection: Alabama" with upper case A > * value change listener's output contains "alabama" instead of "Alabama":= * 1 value changed: null -> alabama > * it works fine on page http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml which is exactly the same but uses event= =3Dchange in r:ajax > * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3086786953319283076==-- From jira-events at lists.jboss.org Mon Nov 4 12:24:02 2013 Content-Type: multipart/mixed; boundary="===============3795052797838073871==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13307) Support java.util.Set in iteration components Date: Mon, 04 Nov 2013 12:24:02 -0500 Message-ID: In-Reply-To: JIRA.12509268.1383301701000@jira02.app.mwc.hst.phx2.redhat.com --===============3795052797838073871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13307?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13307: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Support java.util.Set in iteration components > --------------------------------------------- > > Key: RF-13307 > URL: https://issues.jboss.org/browse/RF-13307 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.5-Tracking, 5.0.0.Alpha3 > Environment: Wildfly-8.0.0.Beta1 > Reporter: Matti Bickel > Labels: jsf22 > Fix For: 5.0.0.Alpha3 > > > JSF-2.2 now supports iteration over sets as in > {code:xml} > > #{elem.name} > > {code} > Using RF iteration components this is currently not possible as UISequenc= e.java doesn't detect Sets and treats them as scalar values. > Would be nice if RF catches up with JSF here. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3795052797838073871==-- From jira-events at lists.jboss.org Mon Nov 4 12:24:02 2013 Content-Type: multipart/mixed; boundary="===============8496229388569546218==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Mon, 04 Nov 2013 12:24:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============8496229388569546218== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13308: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8496229388569546218==-- From jira-events at lists.jboss.org Mon Nov 4 12:24:02 2013 Content-Type: multipart/mixed; boundary="===============6634738517376448331==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13307) Support java.util.Set in iteration components Date: Mon, 04 Nov 2013 12:24:02 -0500 Message-ID: In-Reply-To: JIRA.12509268.1383301701000@jira02.app.mwc.hst.phx2.redhat.com --===============6634738517376448331== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13307?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13307: ------------------------------- Labels: jsf22 (was: ) = > Support java.util.Set in iteration components > --------------------------------------------- > > Key: RF-13307 > URL: https://issues.jboss.org/browse/RF-13307 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.5-Tracking, 5.0.0.Alpha3 > Environment: Wildfly-8.0.0.Beta1 > Reporter: Matti Bickel > Labels: jsf22 > > JSF-2.2 now supports iteration over sets as in > {code:xml} > > #{elem.name} > > {code} > Using RF iteration components this is currently not possible as UISequenc= e.java doesn't detect Sets and treats them as scalar values. > Would be nice if RF catches up with JSF here. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6634738517376448331==-- From jira-events at lists.jboss.org Mon Nov 4 12:24:03 2013 Content-Type: multipart/mixed; boundary="===============8159380840441271398==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13307) Support java.util.Set in iteration components Date: Mon, 04 Nov 2013 12:24:02 -0500 Message-ID: In-Reply-To: JIRA.12509268.1383301701000@jira02.app.mwc.hst.phx2.redhat.com --===============8159380840441271398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13307?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13307: ------------------------------- Affects Version/s: 5.0.0.Alpha1 4.3.4 (was: 5.0.0.Alpha3) (was: 4.5-Tracking) = > Support java.util.Set in iteration components > --------------------------------------------- > > Key: RF-13307 > URL: https://issues.jboss.org/browse/RF-13307 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: Wildfly-8.0.0.Beta1 > Reporter: Matti Bickel > Labels: jsf22 > Fix For: 5.0.0.Alpha3 > > > JSF-2.2 now supports iteration over sets as in > {code:xml} > > #{elem.name} > > {code} > Using RF iteration components this is currently not possible as UISequenc= e.java doesn't detect Sets and treats them as scalar values. > Would be nice if RF catches up with JSF here. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8159380840441271398==-- From jira-events at lists.jboss.org Mon Nov 4 12:26:02 2013 Content-Type: multipart/mixed; boundary="===============5877063834087914680==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: ignored API call .setValue('') Date: Mon, 04 Nov 2013 12:26:02 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============5877063834087914680== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13306: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D [~lfryc] please assess the proposed fix and schedule accordingly. = > Autocomplete: ignored API call .setValue('') > -------------------------------------------- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5877063834087914680==-- From jira-events at lists.jboss.org Mon Nov 4 12:28:02 2013 Content-Type: multipart/mixed; boundary="===============8262160584592363106==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13305) Autocomplete: i must press button twice for popup window Date: Mon, 04 Nov 2013 12:28:02 -0500 Message-ID: In-Reply-To: JIRA.12509249.1383274376000@jira02.app.mwc.hst.phx2.redhat.com --===============8262160584592363106== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13305?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13305: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D [~lfryc] please assess the proposed fix and schedule accordingly. = > Autocomplete: i must press button twice for popup window > -------------------------------------------------------- > > Key: RF-13305 > URL: https://issues.jboss.org/browse/RF-13305 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233971 > I try repeat: > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
= > {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on cancel button(img/cancel.png), then after that, if user= clicks on show button(/img/arrow.png) popup not showing, user must clicks = twice on this button. > *This problem shows if i use showButton from rich:autocomplete instead my= show button.* > I think i found a solution of this problem: > Autocomplete.js has this code: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && oldValue !=3D subValue) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > }; = > {code} > for show popup this must be true: = > {code} > oldValue !=3D subValue > {code} > but in this part of code = > oldValue is ''(empty string) and subValue is ''(empty string), > so this condition = > {code} > oldValue !=3D subValue > {code} > return false! > = > i replace this code by this: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && (oldValue !=3D subValue || (oldValue =3D=3D=3D '' && subValue =3D=3D= =3D ''))) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > = > }; = > {code} > so, than oldValue=3D'' and subValue=3D=3D'' callAjax.call will be called = and popup will be showing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8262160584592363106==-- From jira-events at lists.jboss.org Mon Nov 4 12:44:02 2013 Content-Type: multipart/mixed; boundary="===============2517110787624458192==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 12:44:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============2517110787624458192== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850622#com= ment-12850622 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13312 at 11/4/13 12:43 PM: ----------------------------------------------------------- This can be caused by re-mapping of org.richfaces.* library to resource ser= vlet: RF-13078 Not sure how it's related yet though. = was (Author: lfryc): This can be caused by re-mapping of org.richfaces.* library to resource= servlet: RF-13078 = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2517110787624458192==-- From jira-events at lists.jboss.org Mon Nov 4 12:44:02 2013 Content-Type: multipart/mixed; boundary="===============6421388629279940681==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 12:44:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============6421388629279940681== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850622#com= ment-12850622 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13312: --------------------------------- This can be caused by re-mapping of org.richfaces.* library to resource ser= vlet: RF-13078 = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6421388629279940681==-- From jira-events at lists.jboss.org Mon Nov 4 12:48:02 2013 Content-Type: multipart/mixed; boundary="===============4530354515942304033==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Mon, 04 Nov 2013 12:48:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============4530354515942304033== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13312: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4530354515942304033==-- From jira-events at lists.jboss.org Tue Nov 5 02:54:02 2013 Content-Type: multipart/mixed; boundary="===============7459370595635783453==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13288) EDT: sortOrder gets re-set when resizing a column Date: Tue, 05 Nov 2013 02:54:01 -0500 Message-ID: In-Reply-To: JIRA.12508688.1382618301000@jira02.app.mwc.hst.phx2.redhat.com --===============7459370595635783453== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13288?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13288. ----------------------------- Fix Version/s: 4.3.4 Resolution: Out of Date [~jtrantin] confirmed offline that the issue is fixed in 4.3.4. = > EDT: sortOrder gets re-set when resizing a column > ------------------------------------------------- > > Key: RF-13288 > URL: https://issues.jboss.org/browse/RF-13288 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.2 > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: waiting_on_user > Fix For: 4.3.4 > > Attachments: reproducer.tar.gz > > > I have the following extendedDataTable: > {noformat} > keepSaved=3D"true" var=3D"workitem" i= d=3D"table"> > sortOrder=3D"#{sandboxHandler.sortingBean.so= rtsOrders['entryPD']}"> > > > sortBy=3D"entryPD" render=3D= "table" /> > > > > > > > {noformat} > The issue is the sorting stops working after resizing a column. It gets s= tuck at ASC or DESC. This is caused by ELResolver, that is setting sandboxH= andler.sortingBean.sortsOrders['entryPD'] back to the old value right after= the SortingBean has done its job and set the right sort order. > Note that before resizing the column everything works fine and nobody (ex= cept SortingBean) touches the sortOrders map. > Please see the attached reproducer app, that is debug-friendly and shows = the behaviour. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7459370595635783453==-- From jira-events at lists.jboss.org Tue Nov 5 02:54:02 2013 Content-Type: multipart/mixed; boundary="===============2762108504672842635==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13288) EDT: sortOrder gets re-set when resizing a column Date: Tue, 05 Nov 2013 02:54:02 -0500 Message-ID: In-Reply-To: JIRA.12508688.1382618301000@jira02.app.mwc.hst.phx2.redhat.com --===============2762108504672842635== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13288?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13288: ---------------------------- Fix Version/s: (was: 4.3.4) = > EDT: sortOrder gets re-set when resizing a column > ------------------------------------------------- > > Key: RF-13288 > URL: https://issues.jboss.org/browse/RF-13288 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.2 > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: waiting_on_user > Attachments: reproducer.tar.gz > > > I have the following extendedDataTable: > {noformat} > keepSaved=3D"true" var=3D"workitem" i= d=3D"table"> > sortOrder=3D"#{sandboxHandler.sortingBean.so= rtsOrders['entryPD']}"> > > > sortBy=3D"entryPD" render=3D= "table" /> > > > > > > > {noformat} > The issue is the sorting stops working after resizing a column. It gets s= tuck at ASC or DESC. This is caused by ELResolver, that is setting sandboxH= andler.sortingBean.sortsOrders['entryPD'] back to the old value right after= the SortingBean has done its job and set the right sort order. > Note that before resizing the column everything works fine and nobody (ex= cept SortingBean) touches the sortOrders map. > Please see the attached reproducer app, that is debug-friendly and shows = the behaviour. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2762108504672842635==-- From jira-events at lists.jboss.org Tue Nov 5 04:57:02 2013 Content-Type: multipart/mixed; boundary="===============7938567206855135752==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Tue, 05 Nov 2013 04:57:01 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379710@jira02.app.mwc.hst.phx2.redhat.com --===============7938567206855135752== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13315: ------------------------------- Summary: bridgeBase: bears orderingList specific event namespa= cing and has wrong name of destroy method Key: RF-13315 URL: https://issues.jboss.org/browse/RF-13315 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D {code} $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { {code} {code} destroy : function() { {code} should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7938567206855135752==-- From jira-events at lists.jboss.org Tue Nov 5 05:28:02 2013 Content-Type: multipart/mixed; boundary="===============7304762751876583948==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:28:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269982@jira02.app.mwc.hst.phx2.redhat.com --===============7304762751876583948== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Jon=C3=A1=C5=A1 Trantina created RF-13316: ----------------------------------- Summary: PDF is rendered on top of components Key: RF-13316 URL: https://issues.jboss.org/browse/RF-13316 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.3.4, 4.3.2 Environment: Internet Explorer with Adobe Reader plugin Reporter: Jon=C3=A1=C5=A1 Trantina If I try to display RichFaces components over a PDF object (either PDF in i= frame, or object or embed tag) in Internet Explorer with Adobe Reader plugi= n, the PDF is either always on top of everything or some components are ove= r the PDF and some are under (e.g. when using overlapEmbedObjects attribute= ). Take a look at images attached to this case, also there is a reproducer app= attached. This seems as a issue with Adobe Reader and IE, as in Linux environment in= Chrome there is no problem with that setup, components are rendered on top= , even without the overlapEmbedObjects option. Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7304762751876583948==-- From jira-events at lists.jboss.org Tue Nov 5 05:30:05 2013 Content-Type: multipart/mixed; boundary="===============3941393862076035042==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:30:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============3941393862076035042== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jon=C3=A1=C5=A1 Trantina updated RF-13316: -------------------------------- Attachment: reproducer.zip Reproducer application. = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3941393862076035042==-- From jira-events at lists.jboss.org Tue Nov 5 05:30:12 2013 Content-Type: multipart/mixed; boundary="===============1837190829738222748==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:30:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============1837190829738222748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jon=C3=A1=C5=A1 Trantina updated RF-13316: -------------------------------- Attachment: incorrect.jpg = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1837190829738222748==-- From jira-events at lists.jboss.org Tue Nov 5 05:30:13 2013 Content-Type: multipart/mixed; boundary="===============0040711005341994835==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:30:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============0040711005341994835== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jon=C3=A1=C5=A1 Trantina updated RF-13316: -------------------------------- Attachment: correct.jpg = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0040711005341994835==-- From jira-events at lists.jboss.org Tue Nov 5 05:36:02 2013 Content-Type: multipart/mixed; boundary="===============1644935294866914475==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:36:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============1644935294866914475== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jon=C3=A1=C5=A1 Trantina updated RF-13316: -------------------------------- Comment: was deleted (was: A comment with security level 'Red Hat' was removed.) = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1644935294866914475==-- From jira-events at lists.jboss.org Tue Nov 5 05:36:02 2013 Content-Type: multipart/mixed; boundary="===============4687094751830627843==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 05:36:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============4687094751830627843== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jon=C3=A1=C5=A1 Trantina updated RF-13316: -------------------------------- Attachment: (was: pdf_popup_fehler.zip) = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4687094751830627843==-- From jira-events at lists.jboss.org Tue Nov 5 05:58:02 2013 Content-Type: multipart/mixed; boundary="===============2726430703035288136==" MIME-Version: 1.0 From: Matti Bickel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() Date: Tue, 05 Nov 2013 05:58:01 -0500 Message-ID: In-Reply-To: JIRA.12518007.1383648996868@jira02.app.mwc.hst.phx2.redhat.com --===============2726430703035288136== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matti Bickel created RF-13317: --------------------------------- Summary: ExtendedPartialViewContextImpl should specify correct= javax.faces.ViewState id in startUpdate() Key: RF-13317 URL: https://issues.jboss.org/browse/RF-13317 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.3.4 Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 Reporter: Matti Bickel I'm using several {{}} fields in a {{}}, but hav= e noticed the issue with several other AJAX requests: When the response comes back, the data is fine but I get a JSF error saying bq. During update: javax.faces.ViewState not found Following that, no componentData is available to the Autocomplete component= and no suggestions get displayed. For reference the javadoc for ResponseStateManager.VIEW_STATE_PARAM says: {quote} Implementations must use this constant field value as the name of the clien= t parameter in which to save the state between requests. The id attribute m= ust be a concatenation of the return from UIComponent.getContainerClientId(= javax.faces.context.FacesContext), the return from UINamingContainer.getSep= aratorChar(javax.faces.context.FacesContext), this constant field value, th= e separator char, and a number that is guaranteed to be unique with respect= to all the other instances of this kind of client parameter in the view. {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2726430703035288136==-- From jira-events at lists.jboss.org Tue Nov 5 06:37:02 2013 Content-Type: multipart/mixed; boundary="===============1159623688086811806==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() Date: Tue, 05 Nov 2013 06:37:02 -0500 Message-ID: In-Reply-To: JIRA.12518007.1383648996000@jira02.app.mwc.hst.phx2.redhat.com --===============1159623688086811806== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13317?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850807#com= ment-12850807 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13317: --------------------------------- VIEW_STATE_MARKER is inserted [1] but it is not prefixed with clientId as s= pecified above. [1] https://github.com/richfaces4/core/blob/master/impl/src/main/java/org/r= ichfaces/context/ExtendedPartialViewContextImpl.java#L415 = > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewSta= te id in startUpdate() > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Labels: jsf22 > > I'm using several {{}} fields in a {{}}, but h= ave noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error sayi= ng > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete compone= nt and no suggestions get displayed. > For reference the javadoc for ResponseStateManager.VIEW_STATE_PARAM says: > {quote} > Implementations must use this constant field value as the name of the cli= ent parameter in which to save the state between requests. The id attribute= must be a concatenation of the return from UIComponent.getContainerClientI= d(javax.faces.context.FacesContext), the return from UINamingContainer.getS= eparatorChar(javax.faces.context.FacesContext), this constant field value, = the separator char, and a number that is guaranteed to be unique with respe= ct to all the other instances of this kind of client parameter in the view. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1159623688086811806==-- From jira-events at lists.jboss.org Tue Nov 5 06:37:02 2013 Content-Type: multipart/mixed; boundary="===============0829436832636824583==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() Date: Tue, 05 Nov 2013 06:37:02 -0500 Message-ID: In-Reply-To: JIRA.12518007.1383648996000@jira02.app.mwc.hst.phx2.redhat.com --===============0829436832636824583== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13317?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13317: ---------------------------- Priority: Critical (was: Major) = > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewSta= te id in startUpdate() > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Priority: Critical > Labels: jsf22 > Fix For: 4.3.5 > > > I'm using several {{}} fields in a {{}}, but h= ave noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error sayi= ng > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete compone= nt and no suggestions get displayed. > For reference the javadoc for ResponseStateManager.VIEW_STATE_PARAM says: > {quote} > Implementations must use this constant field value as the name of the cli= ent parameter in which to save the state between requests. The id attribute= must be a concatenation of the return from UIComponent.getContainerClientI= d(javax.faces.context.FacesContext), the return from UINamingContainer.getS= eparatorChar(javax.faces.context.FacesContext), this constant field value, = the separator char, and a number that is guaranteed to be unique with respe= ct to all the other instances of this kind of client parameter in the view. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0829436832636824583==-- From jira-events at lists.jboss.org Tue Nov 5 06:37:02 2013 Content-Type: multipart/mixed; boundary="===============1541422899983120801==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() Date: Tue, 05 Nov 2013 06:37:02 -0500 Message-ID: In-Reply-To: JIRA.12518007.1383648996000@jira02.app.mwc.hst.phx2.redhat.com --===============1541422899983120801== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13317?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13317: ---------------------------- Fix Version/s: 4.3.5 = > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewSta= te id in startUpdate() > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Labels: jsf22 > Fix For: 4.3.5 > > > I'm using several {{}} fields in a {{}}, but h= ave noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error sayi= ng > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete compone= nt and no suggestions get displayed. > For reference the javadoc for ResponseStateManager.VIEW_STATE_PARAM says: > {quote} > Implementations must use this constant field value as the name of the cli= ent parameter in which to save the state between requests. The id attribute= must be a concatenation of the return from UIComponent.getContainerClientI= d(javax.faces.context.FacesContext), the return from UINamingContainer.getS= eparatorChar(javax.faces.context.FacesContext), this constant field value, = the separator char, and a number that is guaranteed to be unique with respe= ct to all the other instances of this kind of client parameter in the view. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1541422899983120801==-- From jira-events at lists.jboss.org Tue Nov 5 06:43:02 2013 Content-Type: multipart/mixed; boundary="===============0887490896244651264==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 06:43:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============0887490896244651264== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13316. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Resolution: Rejected Rejecting as this is not a RichFaces bug. = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0887490896244651264==-- From jira-events at lists.jboss.org Tue Nov 5 06:43:02 2013 Content-Type: multipart/mixed; boundary="===============1885132043665037251==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 06:43:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============1885132043665037251== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850808#com= ment-12850808 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13316: --------------------------------- Hey Jonas, does this answer your concerns? http://stackoverflow.com/questions/12974115/to-open-pdf-file-in-iframe ---- Please, avoid posting general questions that are not related to how RichFac= es works. Valid report would be "feature request" for * New component for displaying PDF in a page That component we could make to work in interoperable fashion with other RF= components. Otherwise please look for other ways how to consult general questions such = as Stackoverflow or RichFaces forums. = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1885132043665037251==-- From jira-events at lists.jboss.org Tue Nov 5 07:34:02 2013 Content-Type: multipart/mixed; boundary="===============8993657829781901000==" MIME-Version: 1.0 From: =?utf-8?q?Jon=C3=A1=C5=A1_Trantina_=28JIRA=29_=3Cjira-events_at_lists=2Ej?= =?utf-8?q?boss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 07:34:02 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============8993657829781901000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850832#com= ment-12850832 ] = Jon=C3=A1=C5=A1 Trantina commented on RF-13316: ------------------------------------- I don't think you understand the issue. The issue is not displaying the PDF= itself, it is that some component are not rendered correctly when the PDF = is displayed. E.g. You have a page with rich:popupPanel as seen in the corr= ect.jpg. But when you add the PDF, the popupPanel is no longer rendered cor= rectly, even with the overlapEmbedObjects enabled (which I believe is just = the usercase for this feature), as seen in the incorrect.jpg. Do you sugges= t RichFaces components are not supported in this usecase? = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8993657829781901000==-- From jira-events at lists.jboss.org Tue Nov 5 10:05:02 2013 Content-Type: multipart/mixed; boundary="===============8519273932016012528==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 10:05:01 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============8519273932016012528== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850966#com= ment-12850966 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13316: --------------------------------- Jonas, in my opinion, this is still issue that comes from browser-specific = rendering engine and is not really an issue of RichFaces implementation. I = guess other implementations of modal panels will behave same. It is possible that there is some workaround. Could you please investigate = general solutions and see if some could be applied to RichFaces? If yes, feel free to reopen this issue. = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8519273932016012528==-- From jira-events at lists.jboss.org Tue Nov 5 10:07:02 2013 Content-Type: multipart/mixed; boundary="===============6945894871342589963==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13316) PDF is rendered on top of components Date: Tue, 05 Nov 2013 10:07:01 -0500 Message-ID: In-Reply-To: JIRA.12518002.1383647269000@jira02.app.mwc.hst.phx2.redhat.com --===============6945894871342589963== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13316?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12850966#com= ment-12850966 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13316 at 11/5/13 10:05 AM: ----------------------------------------------------------- Jonas, in my opinion, this is still issue that comes from browser-specific = rendering engine and is not really an issue of RichFaces implementation. I = guess other implementations of modal panels will behave same. It is possible that there is some workaround. Could you please investigate general solutions and see if some could be app= lied to RichFaces? If yes, feel free to reopen this issue. = was (Author: lfryc): Jonas, in my opinion, this is still issue that comes from browser-speci= fic rendering engine and is not really an issue of RichFaces implementation= . I guess other implementations of modal panels will behave same. It is possible that there is some workaround. Could you please investigate = general solutions and see if some could be applied to RichFaces? If yes, feel free to reopen this issue. = > PDF is rendered on top of components > ------------------------------------ > > Key: RF-13316 > URL: https://issues.jboss.org/browse/RF-13316 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.2, 4.3.4 > Environment: Internet Explorer with Adobe Reader plugin > Reporter: Jon=C3=A1=C5=A1 Trantina > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Attachments: correct.jpg, incorrect.jpg, reproducer.zip > > > If I try to display RichFaces components over a PDF object (either PDF in= iframe, or object or embed tag) in Internet Explorer with Adobe Reader plu= gin, the PDF is either always on top of everything or some components are o= ver the PDF and some are under (e.g. when using overlapEmbedObjects attribu= te). > Take a look at images attached to this case, also there is a reproducer a= pp attached. > This seems as a issue with Adobe Reader and IE, as in Linux environment = in Chrome there is no problem with that setup, components are rendered on t= op, even without the overlapEmbedObjects option. > Let me know if you need anything. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6945894871342589963==-- From jira-events at lists.jboss.org Tue Nov 5 12:42:04 2013 Content-Type: multipart/mixed; boundary="===============3272832938398597387==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13318) Update Autocomplete with refactored Autocomplete widget Date: Tue, 05 Nov 2013 12:42:04 -0500 Message-ID: In-Reply-To: JIRA.12518058.1383673289545@jira02.app.mwc.hst.phx2.redhat.com --===============3272832938398597387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13318: ------------------------------- Summary: Update Autocomplete with refactored Autocomplete widg= et Key: RF-13318 URL: https://issues.jboss.org/browse/RF-13318 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3272832938398597387==-- From jira-events at lists.jboss.org Tue Nov 5 12:42:04 2013 Content-Type: multipart/mixed; boundary="===============4503574936769277891==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13318) Update Autocomplete with refactored Autocomplete widget Date: Tue, 05 Nov 2013 12:42:04 -0500 Message-ID: In-Reply-To: JIRA.12518058.1383673289000@jira02.app.mwc.hst.phx2.redhat.com --===============4503574936769277891== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13318?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13318: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > Update Autocomplete with refactored Autocomplete widget > ------------------------------------------------------- > > Key: RF-13318 > URL: https://issues.jboss.org/browse/RF-13318 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4503574936769277891==-- From jira-events at lists.jboss.org Tue Nov 5 12:44:02 2013 Content-Type: multipart/mixed; boundary="===============0357921795371214575==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13311) Make Push independent of BaseComponent Date: Tue, 05 Nov 2013 12:44:02 -0500 Message-ID: In-Reply-To: JIRA.12511012.1383558111000@jira02.app.mwc.hst.phx2.redhat.com --===============0357921795371214575== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13311?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13311. ----------------------------- Resolution: Done = > Make Push independent of BaseComponent > -------------------------------------- > > Key: RF-13311 > URL: https://issues.jboss.org/browse/RF-13311 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Affects Versions: 5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Currently Push extends BaseComponent but since BaseComponent is not a par= t of core the extending fails. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0357921795371214575==-- From jira-events at lists.jboss.org Tue Nov 5 12:46:03 2013 Content-Type: multipart/mixed; boundary="===============7622008865552501282==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13280) RF 5 packed resources cause conflict in RF 4.5 Date: Tue, 05 Nov 2013 12:46:02 -0500 Message-ID: In-Reply-To: JIRA.12508458.1382446287000@jira02.app.mwc.hst.phx2.redhat.com --===============7622008865552501282== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13280?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13280. ----------------------------- Resolution: Done = > RF 5 packed resources cause conflict in RF 4.5 > ---------------------------------------------- > > Key: RF-13280 > URL: https://issues.jboss.org/browse/RF-13280 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Showcase uses resource from RF 5 core instead of using the proper ones fr= om RF 4.5 components. (e.g. packed.js) > The solution is to split core and ui resources in RF 5. RF 4.5 will only = generate ui resources and use core resources from RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7622008865552501282==-- From jira-events at lists.jboss.org Tue Nov 5 12:46:03 2013 Content-Type: multipart/mixed; boundary="===============0135179799382645386==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13280) RF 5 packed resources cause conflict in RF 4.5 Date: Tue, 05 Nov 2013 12:46:03 -0500 Message-ID: In-Reply-To: JIRA.12508458.1382446287000@jira02.app.mwc.hst.phx2.redhat.com --===============0135179799382645386== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13280?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-13280: ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Michal Petrov) = > RF 5 packed resources cause conflict in RF 4.5 > ---------------------------------------------- > > Key: RF-13280 > URL: https://issues.jboss.org/browse/RF-13280 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Showcase uses resource from RF 5 core instead of using the proper ones fr= om RF 4.5 components. (e.g. packed.js) > The solution is to split core and ui resources in RF 5. RF 4.5 will only = generate ui resources and use core resources from RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0135179799382645386==-- From jira-events at lists.jboss.org Tue Nov 5 12:46:03 2013 Content-Type: multipart/mixed; boundary="===============2476714476716980342==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13280) RF 5 packed resources cause conflict in RF 4.5 Date: Tue, 05 Nov 2013 12:46:03 -0500 Message-ID: In-Reply-To: JIRA.12508458.1382446287000@jira02.app.mwc.hst.phx2.redhat.com --===============2476714476716980342== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13280?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13280: ---------------------------- Assignee: Michal Petrov (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > RF 5 packed resources cause conflict in RF 4.5 > ---------------------------------------------- > > Key: RF-13280 > URL: https://issues.jboss.org/browse/RF-13280 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Showcase uses resource from RF 5 core instead of using the proper ones fr= om RF 4.5 components. (e.g. packed.js) > The solution is to split core and ui resources in RF 5. RF 4.5 will only = generate ui resources and use core resources from RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2476714476716980342==-- From jira-events at lists.jboss.org Tue Nov 5 13:58:02 2013 Content-Type: multipart/mixed; boundary="===============9003862291874664495==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13318) Update Autocomplete with refactored Autocomplete widget Date: Tue, 05 Nov 2013 13:58:01 -0500 Message-ID: In-Reply-To: JIRA.12518058.1383673289000@jira02.app.mwc.hst.phx2.redhat.com --===============9003862291874664495== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13318?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13318. ----------------------------- Resolution: Done = > Update Autocomplete with refactored Autocomplete widget > ------------------------------------------------------- > > Key: RF-13318 > URL: https://issues.jboss.org/browse/RF-13318 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9003862291874664495==-- From jira-events at lists.jboss.org Wed Nov 6 01:55:03 2013 Content-Type: multipart/mixed; boundary="===============3514448849689331041==" MIME-Version: 1.0 From: =?utf-8?q?Ronny_Sch=C3=B6ne_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2E?= =?utf-8?q?org=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Wed, 06 Nov 2013 01:55:02 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821030@jira02.app.mwc.hst.phx2.redhat.com --===============3514448849689331041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ronny Sch=C3=B6ne created RF-13319: --------------------------------- Summary: Strange scroll behavier of rich:autocomplete field in= IE9/10 Key: RF-13319 URL: https://issues.jboss.org/browse/RF-13319 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Ronny Sch=C3=B6ne Hi i have a strange scroll behavier in a rich:autocomplete list. The list has a lot of elements so the list has a scrollbar. If i open the list and scroll a little bit with the scrollbar and move the = mouse to the elemets, an other element which is not within the viewport of = the list is shown in the textfield. Here is the sorce code, there is nothing special: = Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3514448849689331041==-- From jira-events at lists.jboss.org Wed Nov 6 07:27:02 2013 Content-Type: multipart/mixed; boundary="===============0270009750724240503==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13280) RF 5 packed resources cause conflict in RF 4.5 Date: Wed, 06 Nov 2013 07:27:02 -0500 Message-ID: In-Reply-To: JIRA.12508458.1382446287000@jira02.app.mwc.hst.phx2.redhat.com --===============0270009750724240503== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13280?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov resolved RF-13280. -------------------------------- Resolution: Done = > RF 5 packed resources cause conflict in RF 4.5 > ---------------------------------------------- > > Key: RF-13280 > URL: https://issues.jboss.org/browse/RF-13280 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Showcase uses resource from RF 5 core instead of using the proper ones fr= om RF 4.5 components. (e.g. packed.js) > The solution is to split core and ui resources in RF 5. RF 4.5 will only = generate ui resources and use core resources from RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0270009750724240503==-- From jira-events at lists.jboss.org Wed Nov 6 07:57:02 2013 Content-Type: multipart/mixed; boundary="===============3664311929141948310==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Run framework QUnit tests using Arquillian extension Date: Wed, 06 Nov 2013 07:57:01 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============3664311929141948310== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851353#com= ment-12851353 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12913: --------------------------------- [~bleathem] I would consider using our `src/main/js` Grunt-based infrastruc= ture for testing framework resources such as {{richfaces.js}}. = > Run framework QUnit tests using Arquillian extension > ---------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3664311929141948310==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============8071186278076016184==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509603.1383315889000@jira02.app.mwc.hst.phx2.redhat.com --===============8071186278076016184== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13309?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13309: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > Autocomplete doesn't work correctly when r:ajax bound to selectitem event > ------------------------------------------------------------------------- > > Key: RF-13309 > URL: https://issues.jboss.org/browse/RF-13309 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/ajaxOnSelectitem.xhtml > # type "a" into autocomplete > # select "Alabama" > # check output below the autocomplete > # check output of value change listener in page's header > result: > * there is "Your selection: alabama" below the autocomplete instead of "Y= our selection: Alabama" with upper case A > * value change listener's output contains "alabama" instead of "Alabama":= * 1 value changed: null -> alabama > * it works fine on page http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml which is exactly the same but uses event= =3Dchange in r:ajax > * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8071186278076016184==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============4108164598950151462==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509202.1383227643000@jira02.app.mwc.hst.phx2.redhat.com --===============4108164598950151462== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13304?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13304: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > Autocomplete: value change listener doesn't work > ------------------------------------------------ > > Key: RF-13304 > URL: https://issues.jboss.org/browse/RF-13304 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19-jbossorg-1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml in Firefox 24 > # type 'h' into autocomplete > # select 'Hawaii' > # click outside the autocomplete so that the value is sent to the server > # check phases panel in header > result: > * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed"= for a short while > * after ca. 1s yet another ajax request is done and only "* 2 value chang= ed" is visible > * in Chrome 30, the second ajax request is not fired > * in Chrome 30, when you select some nonexisting value in autocomplete, e= .g. "xxx", it behaves the same as Firefox 24 > * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a = regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4108164598950151462==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============2687719635063721962==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============2687719635063721962== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13308: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2687719635063721962==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============6194444588327839181==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509202.1383227643000@jira02.app.mwc.hst.phx2.redhat.com --===============6194444588327839181== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13304?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13304: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Autocomplete: value change listener doesn't work > ------------------------------------------------ > > Key: RF-13304 > URL: https://issues.jboss.org/browse/RF-13304 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19-jbossorg-1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml in Firefox 24 > # type 'h' into autocomplete > # select 'Hawaii' > # click outside the autocomplete so that the value is sent to the server > # check phases panel in header > result: > * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed"= for a short while > * after ca. 1s yet another ajax request is done and only "* 2 value chang= ed" is visible > * in Chrome 30, the second ajax request is not fired > * in Chrome 30, when you select some nonexisting value in autocomplete, e= .g. "xxx", it behaves the same as Firefox 24 > * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a = regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6194444588327839181==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============3313457020430014210==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============3313457020430014210== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13308: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3313457020430014210==-- From jira-events at lists.jboss.org Wed Nov 6 07:59:02 2013 Content-Type: multipart/mixed; boundary="===============8626348642590257474==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Wed, 06 Nov 2013 07:59:02 -0500 Message-ID: In-Reply-To: JIRA.12509603.1383315889000@jira02.app.mwc.hst.phx2.redhat.com --===============8626348642590257474== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13309?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13309: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Autocomplete doesn't work correctly when r:ajax bound to selectitem event > ------------------------------------------------------------------------- > > Key: RF-13309 > URL: https://issues.jboss.org/browse/RF-13309 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/ajaxOnSelectitem.xhtml > # type "a" into autocomplete > # select "Alabama" > # check output below the autocomplete > # check output of value change listener in page's header > result: > * there is "Your selection: alabama" below the autocomplete instead of "Y= our selection: Alabama" with upper case A > * value change listener's output contains "alabama" instead of "Alabama":= * 1 value changed: null -> alabama > * it works fine on page http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml which is exactly the same but uses event= =3Dchange in r:ajax > * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8626348642590257474==-- From jira-events at lists.jboss.org Wed Nov 6 09:03:02 2013 Content-Type: multipart/mixed; boundary="===============4837571223319930342==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Wed, 06 Nov 2013 09:03:02 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573531@jira02.app.mwc.hst.phx2.redhat.com --===============4837571223319930342== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13320: ------------------------------- Summary: Update OrderingList/PickList with refactored Widgets Key: RF-13320 URL: https://issues.jboss.org/browse/RF-13320 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4837571223319930342==-- From jira-events at lists.jboss.org Wed Nov 6 09:05:04 2013 Content-Type: multipart/mixed; boundary="===============8050732602203819545==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Wed, 06 Nov 2013 09:05:04 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============8050732602203819545== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13320: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8050732602203819545==-- From jira-events at lists.jboss.org Wed Nov 6 09:09:02 2013 Content-Type: multipart/mixed; boundary="===============5046630307521551926==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename orderingList/pickList bridge and templates file names to use dashes instead of camelCase Date: Wed, 06 Nov 2013 09:09:02 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834717@jira02.app.mwc.hst.phx2.redhat.com --===============5046630307521551926== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13321: ------------------------------- Summary: Rename orderingList/pickList bridge and templates fil= e names to use dashes instead of camelCase Key: RF-13321 URL: https://issues.jboss.org/browse/RF-13321 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D We have renamed orderingList/pickList to ordering-list/pick-list in RW. I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5046630307521551926==-- From jira-events at lists.jboss.org Wed Nov 6 09:18:03 2013 Content-Type: multipart/mixed; boundary="===============8263167533971120528==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Wed, 06 Nov 2013 09:18:03 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============8263167533971120528== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851380#com= ment-12851380 ] = Michal Petrov commented on RF-13313: ------------------------------------ The resource is being incorrectly handled The request path looks like this: {{/showcase/org.richfaces.resources/javax.faces.resource/org.richfaces/file= UploadProgress?rf_fu_uid_alt=3D0.4089094325900078}} but it should be this: {{/showcase/rfRes/fileUploadProgress.jsf?ln=3Dorg.richfaces&rf_fu_uid_alt= =3D0.4089094325900078}} = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8263167533971120528==-- From jira-events at lists.jboss.org Wed Nov 6 09:18:04 2013 Content-Type: multipart/mixed; boundary="===============3392680703858394630==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Wed, 06 Nov 2013 09:18:03 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============3392680703858394630== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13313: ---------------------------------- Assignee: Michal Petrov = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3392680703858394630==-- From jira-events at lists.jboss.org Wed Nov 6 11:18:02 2013 Content-Type: multipart/mixed; boundary="===============3034029853753404083==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename orderingList/pickList bridge and templates file names to use dashes instead of camelCase Date: Wed, 06 Nov 2013 11:18:02 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============3034029853753404083== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13321: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Rename orderingList/pickList bridge and templates file names to use dashe= s instead of camelCase > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3034029853753404083==-- From jira-events at lists.jboss.org Wed Nov 6 11:20:05 2013 Content-Type: multipart/mixed; boundary="===============5071041350393563515==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Wed, 06 Nov 2013 11:20:02 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821000@jira02.app.mwc.hst.phx2.redhat.com --===============5071041350393563515== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13319?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13319: ------------------------------- Description: = Hi i have a strange scroll behaviour in a rich:autocomplete list. The list has a lot of elements so the list has a scrollbar. If i open the list and scroll a little bit with the scrollbar and move the = mouse to the elements, an other element which is not within the viewport of= the list is shown in the textfield. Here is the source code, there is nothing special: {code} = {code} Link to a example video: https://vimeo.com/78525787 was: Hi i have a strange scroll behavier in a rich:autocomplete list. The list has a lot of elements so the list has a scrollbar. If i open the list and scroll a little bit with the scrollbar and move the = mouse to the elemets, an other element which is not within the viewport of = the list is shown in the textfield. Here is the sorce code, there is nothing special: = Link to a example video: https://vimeo.com/78525787 = > Strange scroll behavier of rich:autocomplete field in IE9/10 > ------------------------------------------------------------ > > Key: RF-13319 > URL: https://issues.jboss.org/browse/RF-13319 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Ronny Sch=C3=B6ne > > Hi > i have a strange scroll behaviour in a rich:autocomplete list. > The list has a lot of elements so the list has a scrollbar. > If i open the list and scroll a little bit with the scrollbar and move th= e mouse to the elements, an other element which is not within the viewport = of the list is shown in the textfield. > Here is the source code, there is nothing special: > {code} > id=3D"inField" = > requiredMessage=3D"Add value." = > style=3D"vertical-align: middle" = > mode=3D"client" selectFirst=3D"false" = > showButton=3D"true" minChars=3D"1" = > value=3D"${bean.input}" = > autocompleteList=3D"${bean.definedInputList}" = > onblur=3D"#{rich:component('inField')}.hidePopup();" /> = > {code} > Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5071041350393563515==-- From jira-events at lists.jboss.org Wed Nov 6 11:22:02 2013 Content-Type: multipart/mixed; boundary="===============0199703267775818436==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Wed, 06 Nov 2013 11:22:01 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821000@jira02.app.mwc.hst.phx2.redhat.com --===============0199703267775818436== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13319?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13319: ------------------------------- Forum Reference: https://community.jboss.org/thread/234145 = > Strange scroll behavier of rich:autocomplete field in IE9/10 > ------------------------------------------------------------ > > Key: RF-13319 > URL: https://issues.jboss.org/browse/RF-13319 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Ronny Sch=C3=B6ne > > Hi > i have a strange scroll behaviour in a rich:autocomplete list. > The list has a lot of elements so the list has a scrollbar. > If i open the list and scroll a little bit with the scrollbar and move th= e mouse to the elements, an other element which is not within the viewport = of the list is shown in the textfield. > Here is the source code, there is nothing special: > {code} > id=3D"inField" = > requiredMessage=3D"Add value." = > style=3D"vertical-align: middle" = > mode=3D"client" selectFirst=3D"false" = > showButton=3D"true" minChars=3D"1" = > value=3D"${bean.input}" = > autocompleteList=3D"${bean.definedInputList}" = > onblur=3D"#{rich:component('inField')}.hidePopup();" /> = > {code} > Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0199703267775818436==-- From jira-events at lists.jboss.org Wed Nov 6 11:22:02 2013 Content-Type: multipart/mixed; boundary="===============6306550076140086183==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Wed, 06 Nov 2013 11:22:02 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821000@jira02.app.mwc.hst.phx2.redhat.com --===============6306550076140086183== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13319?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13319: ------------------------------- Component/s: component-input = > Strange scroll behavier of rich:autocomplete field in IE9/10 > ------------------------------------------------------------ > > Key: RF-13319 > URL: https://issues.jboss.org/browse/RF-13319 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Ronny Sch=C3=B6ne > > Hi > i have a strange scroll behaviour in a rich:autocomplete list. > The list has a lot of elements so the list has a scrollbar. > If i open the list and scroll a little bit with the scrollbar and move th= e mouse to the elements, an other element which is not within the viewport = of the list is shown in the textfield. > Here is the source code, there is nothing special: > {code} > id=3D"inField" = > requiredMessage=3D"Add value." = > style=3D"vertical-align: middle" = > mode=3D"client" selectFirst=3D"false" = > showButton=3D"true" minChars=3D"1" = > value=3D"${bean.input}" = > autocompleteList=3D"${bean.definedInputList}" = > onblur=3D"#{rich:component('inField')}.hidePopup();" /> = > {code} > Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6306550076140086183==-- From jira-events at lists.jboss.org Wed Nov 6 11:22:02 2013 Content-Type: multipart/mixed; boundary="===============4554402179610151104==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Wed, 06 Nov 2013 11:22:02 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821000@jira02.app.mwc.hst.phx2.redhat.com --===============4554402179610151104== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13319?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13319: ------------------------------- Fix Version/s: 4.5-Tracking = > Strange scroll behavier of rich:autocomplete field in IE9/10 > ------------------------------------------------------------ > > Key: RF-13319 > URL: https://issues.jboss.org/browse/RF-13319 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Ronny Sch=C3=B6ne > Fix For: 4.5-Tracking > > > Hi > i have a strange scroll behaviour in a rich:autocomplete list. > The list has a lot of elements so the list has a scrollbar. > If i open the list and scroll a little bit with the scrollbar and move th= e mouse to the elements, an other element which is not within the viewport = of the list is shown in the textfield. > Here is the source code, there is nothing special: > {code} > id=3D"inField" = > requiredMessage=3D"Add value." = > style=3D"vertical-align: middle" = > mode=3D"client" selectFirst=3D"false" = > showButton=3D"true" minChars=3D"1" = > value=3D"${bean.input}" = > autocompleteList=3D"${bean.definedInputList}" = > onblur=3D"#{rich:component('inField')}.hidePopup();" /> = > {code} > Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4554402179610151104==-- From jira-events at lists.jboss.org Wed Nov 6 11:24:02 2013 Content-Type: multipart/mixed; boundary="===============7979117142635634837==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Wed, 06 Nov 2013 11:24:01 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379000@jira02.app.mwc.hst.phx2.redhat.com --===============7979117142635634837== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13315?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13315: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > bridgeBase: bears orderingList specific event namespacing and has wrong n= ame of destroy method > -------------------------------------------------------------------------= --------------------- > > Key: RF-13315 > URL: https://issues.jboss.org/browse/RF-13315 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {code} > $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { > {code} > {code} > destroy : function() { > {code} > should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7979117142635634837==-- From jira-events at lists.jboss.org Wed Nov 6 11:28:02 2013 Content-Type: multipart/mixed; boundary="===============2593926427801548121==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Wed, 06 Nov 2013 11:28:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============2593926427801548121== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851454#com= ment-12851454 ] = Brian Leathem commented on RF-13313: ------------------------------------ Thanks for digging in Michal, do you have any idea of how to resolve this? = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2593926427801548121==-- From jira-events at lists.jboss.org Wed Nov 6 11:32:02 2013 Content-Type: multipart/mixed; boundary="===============3970911519546550583==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Run framework QUnit tests using Arquillian extension Date: Wed, 06 Nov 2013 11:32:02 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============3970911519546550583== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851455#com= ment-12851455 ] = Brian Leathem commented on RF-12913: ------------------------------------ +1 - can you change the summary and description accordingly? = > Run framework QUnit tests using Arquillian extension > ---------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3970911519546550583==-- From jira-events at lists.jboss.org Wed Nov 6 13:19:04 2013 Content-Type: multipart/mixed; boundary="===============8889892069607254950==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts Date: Wed, 06 Nov 2013 13:19:03 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============8889892069607254950== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12913: ---------------------------- Summary: Use Grunt/Karma to run tests for RichFaces bridge and core Jav= aScripts (was: Run framework QUnit tests using Arquillian extension) = > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8889892069607254950==-- From jira-events at lists.jboss.org Wed Nov 6 13:21:02 2013 Content-Type: multipart/mixed; boundary="===============4567902987796860130==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts Date: Wed, 06 Nov 2013 13:21:02 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============4567902987796860130== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851497#com= ment-12851497 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12913 at 11/6/13 1:20 PM: ---------------------------------------------------------- Automation of such a solution assumes we will integrate Grunt build into Ma= ven build. We can make running of those tests part of release process so far. = was (Author: lfryc): Automation of such a solution assumes we will integrate Grunt into our = build. We can make it part of release process so far. = > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4567902987796860130==-- From jira-events at lists.jboss.org Wed Nov 6 13:21:02 2013 Content-Type: multipart/mixed; boundary="===============8400767421222943362==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts Date: Wed, 06 Nov 2013 13:21:02 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============8400767421222943362== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851497#com= ment-12851497 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12913: --------------------------------- Automation of such a solution assumes we will integrate Grunt into our buil= d. We can make it part of release process so far. = > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: qe, tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8400767421222943362==-- From jira-events at lists.jboss.org Thu Nov 7 02:36:03 2013 Content-Type: multipart/mixed; boundary="===============8614992382493427530==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload fileuploadprogress unavailable in RF 4.5 Date: Thu, 07 Nov 2013 02:36:03 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============8614992382493427530== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13313: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > rich:fileupload fileuploadprogress unavailable in RF 4.5 > -------------------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8614992382493427530==-- From jira-events at lists.jboss.org Thu Nov 7 02:36:03 2013 Content-Type: multipart/mixed; boundary="===============3793759299214221019==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Thu, 07 Nov 2013 02:36:03 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============3793759299214221019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13312: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4 = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3793759299214221019==-- From jira-events at lists.jboss.org Thu Nov 7 03:31:02 2013 Content-Type: multipart/mixed; boundary="===============5228882129911497497==" MIME-Version: 1.0 From: =?utf-8?q?Ronny_Sch=C3=B6ne_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2E?= =?utf-8?q?org=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13319) Strange scroll behavier of rich:autocomplete field in IE9/10 Date: Thu, 07 Nov 2013 03:31:02 -0500 Message-ID: In-Reply-To: JIRA.12518095.1383720821000@jira02.app.mwc.hst.phx2.redhat.com --===============5228882129911497497== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13319?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ronny Sch=C3=B6ne updated RF-13319: ------------------------------ Description: = Hi i have a strange scroll behaviour in a rich:autocomplete list. The list has a lot of elements so the list has a scrollbar. If i open the list and scroll a little bit with the scrollbar and move the = mouse to the elements, an other element which is not within the viewport of= the list is shown in the textfield and the list scrolls automatically. Here is the source code, there is nothing special: {code} = {code} Link to a example video: https://vimeo.com/78525787 was: Hi i have a strange scroll behaviour in a rich:autocomplete list. The list has a lot of elements so the list has a scrollbar. If i open the list and scroll a little bit with the scrollbar and move the = mouse to the elements, an other element which is not within the viewport of= the list is shown in the textfield. Here is the source code, there is nothing special: {code} = {code} Link to a example video: https://vimeo.com/78525787 = > Strange scroll behavier of rich:autocomplete field in IE9/10 > ------------------------------------------------------------ > > Key: RF-13319 > URL: https://issues.jboss.org/browse/RF-13319 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Ronny Sch=C3=B6ne > Fix For: 4.5-Tracking > > > Hi > i have a strange scroll behaviour in a rich:autocomplete list. > The list has a lot of elements so the list has a scrollbar. > If i open the list and scroll a little bit with the scrollbar and move th= e mouse to the elements, an other element which is not within the viewport = of the list is shown in the textfield and the list scrolls automatically. > Here is the source code, there is nothing special: > {code} > id=3D"inField" = > requiredMessage=3D"Add value." = > style=3D"vertical-align: middle" = > mode=3D"client" selectFirst=3D"false" = > showButton=3D"true" minChars=3D"1" = > value=3D"${bean.input}" = > autocompleteList=3D"${bean.definedInputList}" = > onblur=3D"#{rich:component('inField')}.hidePopup();" /> = > {code} > Link to a example video: https://vimeo.com/78525787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5228882129911497497==-- From jira-events at lists.jboss.org Thu Nov 7 03:42:02 2013 Content-Type: multipart/mixed; boundary="===============2899156406392190956==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work Date: Thu, 07 Nov 2013 03:42:02 -0500 Message-ID: In-Reply-To: JIRA.12509202.1383227643000@jira02.app.mwc.hst.phx2.redhat.com --===============2899156406392190956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13304?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13304. ----------------------------- Resolution: Done = > Autocomplete: value change listener doesn't work > ------------------------------------------------ > > Key: RF-13304 > URL: https://issues.jboss.org/browse/RF-13304 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19-jbossorg-1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml in Firefox 24 > # type 'h' into autocomplete > # select 'Hawaii' > # click outside the autocomplete so that the value is sent to the server > # check phases panel in header > result: > * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed"= for a short while > * after ca. 1s yet another ajax request is done and only "* 2 value chang= ed" is visible > * in Chrome 30, the second ajax request is not fired > * in Chrome 30, when you select some nonexisting value in autocomplete, e= .g. "xxx", it behaves the same as Firefox 24 > * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a = regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2899156406392190956==-- From jira-events at lists.jboss.org Thu Nov 7 03:47:02 2013 Content-Type: multipart/mixed; boundary="===============6731020462742951364==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Thu, 07 Nov 2013 03:47:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============6731020462742951364== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13308. ----------------------------- Resolution: Cannot Reproduce Bug [~ppitonak], I have checked with Firefox 24 and 25 and everything works fi= ne. Could you please verify? = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6731020462742951364==-- From jira-events at lists.jboss.org Thu Nov 7 03:47:03 2013 Content-Type: multipart/mixed; boundary="===============1674003383255785058==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Thu, 07 Nov 2013 03:47:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============1674003383255785058== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12851622#com= ment-12851622 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13308 at 11/7/13 3:46 AM: ---------------------------------------------------------- [~ppitonak], I have checked with Firefox 24 and 25, following exactly the = instructions you have given, and everything works fine. Could you please verify? = was (Author: lfryc): [~ppitonak], I have checked with Firefox 24 and 25 and everything work= s fine. Could you please verify? = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1674003383255785058==-- From jira-events at lists.jboss.org Thu Nov 7 03:54:02 2013 Content-Type: multipart/mixed; boundary="===============2398568250095503949==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Thu, 07 Nov 2013 03:54:02 -0500 Message-ID: In-Reply-To: JIRA.12509603.1383315889000@jira02.app.mwc.hst.phx2.redhat.com --===============2398568250095503949== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13309?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13309. ----------------------------- Resolution: Cannot Reproduce Bug Hey [~ppitonak], I can't reproduce this issue with Chrome 30. Is it possible that it is already fixed? = > Autocomplete doesn't work correctly when r:ajax bound to selectitem event > ------------------------------------------------------------------------- > > Key: RF-13309 > URL: https://issues.jboss.org/browse/RF-13309 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/ajaxOnSelectitem.xhtml > # type "a" into autocomplete > # select "Alabama" > # check output below the autocomplete > # check output of value change listener in page's header > result: > * there is "Your selection: alabama" below the autocomplete instead of "Y= our selection: Alabama" with upper case A > * value change listener's output contains "alabama" instead of "Alabama":= * 1 value changed: null -> alabama > * it works fine on page http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml which is exactly the same but uses event= =3Dchange in r:ajax > * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2398568250095503949==-- From jira-events at lists.jboss.org Thu Nov 7 07:20:02 2013 Content-Type: multipart/mixed; boundary="===============8751524766340583041==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13322) Tree: selectionchange event fired twice inside r:region Date: Thu, 07 Nov 2013 07:20:02 -0500 Message-ID: In-Reply-To: JIRA.12524458.1383826726260@jira02.app.mwc.hst.phx2.redhat.com --===============8751524766340583041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13322: ---------------------------------- Summary: Tree: selectionchange event fired twice inside r:regi= on Key: RF-13322 URL: https://issues.jboss.org/browse/RF-13322 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tree Affects Versions: 5.0.0.Alpha1, 4.3.4 Environment: RichFaces 4.3.4.Final-redhat-1 Metamer 4.3.5-SNAPSHOT JBoss Application Server: Weld Integration 7.2.1.Final-redhat-10 JBoss AS 7.2.1.Final-redhat-10 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 30.0.1599.114 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chTree/simpleSwingTreeNode.xhtml?templates=3Da4jRegion # set attribute onselectionchange=3Dalert('changed') # select first node in tree ("Europe") result: * alert is displayed twice * you can also run Metamer tests = {code} mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestTreeAttributes#testOns= electionchange -Dtemplates=3Da4jRegion {code} * all other templates work fine -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8751524766340583041==-- From jira-events at lists.jboss.org Thu Nov 7 07:50:02 2013 Content-Type: multipart/mixed; boundary="===============0873700091803655455==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13289) inputspinner : setting the value to empty/null Date: Thu, 07 Nov 2013 07:50:02 -0500 Message-ID: In-Reply-To: JIRA.12508761.1382687176000@jira02.app.mwc.hst.phx2.redhat.com --===============0873700091803655455== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13289?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13289: ---------------------------------- Assignee: Juraj H=C3=BAska (was: Pavol Pitonak) = > inputspinner : setting the value to empty/null > ----------------------------------------------- > > Key: RF-13289 > URL: https://issues.jboss.org/browse/RF-13289 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.3 > Reporter: liumin hu > Assignee: Juraj H=C3=BAska > > can put empty/null value in a spinner, everytime the spinner changes emp= ty to 0. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0873700091803655455==-- From jira-events at lists.jboss.org Thu Nov 7 08:08:02 2013 Content-Type: multipart/mixed; boundary="===============7348240876206431034==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 08:08:01 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============7348240876206431034== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reopened RF-13320: ------------------------------ [~lfryc] could also apply the renaming introduced with https://github.com/r= ichwidgets/richwidgets/commit/cd7f1ac77f5298aa033d1ed182da6f694ae6b533 `_dumpState()` >>> `uiHash()` to `orderingListBridge.js`? = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7348240876206431034==-- From jira-events at lists.jboss.org Thu Nov 7 08:14:02 2013 Content-Type: multipart/mixed; boundary="===============0915432421178758956==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 08:14:02 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============0915432421178758956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921256#com= ment-12921256 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13320 at 11/7/13 8:13 AM: ----------------------------------------------------------- [~lfryc] could also apply the renaming introduced with this [commint|https:= //github.com/richwidgets/richwidgets/commit/cd7f1ac77f5298aa033d1ed182da6f6= 94ae6b533] to _orderingListBridge.js_? ( renaming of _dumpState()_ to _uiHash()_ ) = was (Author: jstefek): [~lfryc] could also apply the renaming introduced with https://github.c= om/richwidgets/richwidgets/commit/cd7f1ac77f5298aa033d1ed182da6f694ae6b533 `_dumpState()` >>> `uiHash()` to `orderingListBridge.js`? = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0915432421178758956==-- From jira-events at lists.jboss.org Thu Nov 7 08:26:03 2013 Content-Type: multipart/mixed; boundary="===============6621199005897492529==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 08:26:02 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============6621199005897492529== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921270#com= ment-12921270 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13320: --------------------------------- [~jstefek] could you please modify the OrderingList framework tests so that= fail due to such problem? In my opinion, there should really be a test that fails when OrderingList f= ails to update server-side model. = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6621199005897492529==-- From jira-events at lists.jboss.org Thu Nov 7 08:42:17 2013 Content-Type: multipart/mixed; boundary="===============1657531544311683937==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 08:42:17 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============1657531544311683937== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921287#com= ment-12921287 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13320: ---------------------------------- OK, I'll do that as a part of [RFPL-3053|https://issues.jboss.org/browse/RF= PL-3053]. = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1657531544311683937==-- From jira-events at lists.jboss.org Thu Nov 7 09:47:02 2013 Content-Type: multipart/mixed; boundary="===============8663858750132782529==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Thu, 07 Nov 2013 09:47:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============8663858750132782529== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13313: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8663858750132782529==-- From jira-events at lists.jboss.org Thu Nov 7 09:47:02 2013 Content-Type: multipart/mixed; boundary="===============5337524997163017393==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Thu, 07 Nov 2013 09:47:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============5337524997163017393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13313: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Michal Petrov) = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5337524997163017393==-- From jira-events at lists.jboss.org Thu Nov 7 09:47:02 2013 Content-Type: multipart/mixed; boundary="===============1264279809046996680==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Thu, 07 Nov 2013 09:47:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============1264279809046996680== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13313: ---------------------------- Summary: rich:fileupload - progress bar doesn't show up (was: rich:fil= eupload fileuploadprogress unavailable in RF 4.5) = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1264279809046996680==-- From jira-events at lists.jboss.org Thu Nov 7 10:07:02 2013 Content-Type: multipart/mixed; boundary="===============3631516647490550864==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Thu, 07 Nov 2013 10:07:02 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============3631516647490550864== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13313. ----------------------------- Resolution: Done = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3631516647490550864==-- From jira-events at lists.jboss.org Thu Nov 7 10:07:02 2013 Content-Type: multipart/mixed; boundary="===============7267770605309239155==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Thu, 07 Nov 2013 10:07:02 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============7267770605309239155== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13312. ----------------------------- Resolution: Done = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7267770605309239155==-- From jira-events at lists.jboss.org Thu Nov 7 10:17:03 2013 Content-Type: multipart/mixed; boundary="===============9104033361173111825==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13154) Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coyote.http11.upgrade.UpgradeInbound on latest EAP 6) Date: Thu, 07 Nov 2013 10:17:02 -0500 Message-ID: In-Reply-To: JIRA.12499404.1377547327000@jira02.app.mwc.hst.phx2.redhat.com --===============9104033361173111825== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13154?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921395#com= ment-12921395 ] = RH Bugzilla Integration commented on RF-13154: ---------------------------------------------- Ken Finnigan changed the Status of [bug 1002971|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D1002971] from ASSIGNED to MODIFI= ED = > Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coy= ote.http11.upgrade.UpgradeInbound on latest EAP 6) > -------------------------------------------------------------------------= -------------------------------------------------- > > Key: RF-13154 > URL: https://issues.jboss.org/browse/RF-13154 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.3 > Environment: EAP 6.1.1.ER7 > Reporter: Ken Finnigan > Assignee: Brian Leathem > Fix For: 4.3.4 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > When accessing a4j:push example in showcase on EAP 6.1.1.ER7 the network = tab of the developer console in Chrome shows failed network attempts for ri= chfaces push and the following exception in the server logs: > {code} > 15:21:29,295 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[AutoRegisteredPushServlet]] (http-/127.0.0.1:8080= -2) JBWEB000236: Servlet.service() for servlet AutoRegisteredPushServlet th= rew exception: java.lang.ClassNotFoundException: org.apache.coyote.http11.u= pgrade.UpgradeInbound from [Module "deployment.richfaces-showcase-4.3.3.Fin= al-jbas71.war:main" from Service Module Loader] > at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:= 196) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(Con= currentClassLoader.java:444) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(Concu= rrentClassLoader.java:432) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentCl= assLoader.java:374) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoad= er.java:119) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.atmosphere.container.Tomcat7AsyncSupportWithWebSocket.service(Tom= cat7AsyncSupportWithWebSocket.java:59) [atmosphere-runtime-1.0.10.jar:1.0.1= 0] > at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFrame= work.java:1370) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:29= 3) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279= ) [atmosphere-runtime-1.0.10.jar:1.0.10] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:295) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:246) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:230) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:149) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:169) [jboss-as-web-7.2.1.Final-redhat-10.j= ar:7.2.1.Final-redhat-10] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:145) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:97) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:102) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:336) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :856) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:653) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-= redhat-1] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:92= 0) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} > Running the exact same showcase example war on EAP 6.1.0.GA works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9104033361173111825==-- From jira-events at lists.jboss.org Thu Nov 7 10:17:03 2013 Content-Type: multipart/mixed; boundary="===============1505539634924082545==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13154) Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coyote.http11.upgrade.UpgradeInbound on latest EAP 6) Date: Thu, 07 Nov 2013 10:17:03 -0500 Message-ID: In-Reply-To: JIRA.12499404.1377547327000@jira02.app.mwc.hst.phx2.redhat.com --===============1505539634924082545== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13154?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921396#com= ment-12921396 ] = RH Bugzilla Integration commented on RF-13154: ---------------------------------------------- Ken Finnigan made a comment on [bug 1002971|https:/= /bugzilla.redhat.com/show_bug.cgi?id=3D1002971] Resolved with upgrade to RichFaces 4.3.4.Final = > Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coy= ote.http11.upgrade.UpgradeInbound on latest EAP 6) > -------------------------------------------------------------------------= -------------------------------------------------- > > Key: RF-13154 > URL: https://issues.jboss.org/browse/RF-13154 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.3 > Environment: EAP 6.1.1.ER7 > Reporter: Ken Finnigan > Assignee: Brian Leathem > Fix For: 4.3.4 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > When accessing a4j:push example in showcase on EAP 6.1.1.ER7 the network = tab of the developer console in Chrome shows failed network attempts for ri= chfaces push and the following exception in the server logs: > {code} > 15:21:29,295 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[AutoRegisteredPushServlet]] (http-/127.0.0.1:8080= -2) JBWEB000236: Servlet.service() for servlet AutoRegisteredPushServlet th= rew exception: java.lang.ClassNotFoundException: org.apache.coyote.http11.u= pgrade.UpgradeInbound from [Module "deployment.richfaces-showcase-4.3.3.Fin= al-jbas71.war:main" from Service Module Loader] > at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:= 196) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(Con= currentClassLoader.java:444) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(Concu= rrentClassLoader.java:432) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentCl= assLoader.java:374) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoad= er.java:119) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.atmosphere.container.Tomcat7AsyncSupportWithWebSocket.service(Tom= cat7AsyncSupportWithWebSocket.java:59) [atmosphere-runtime-1.0.10.jar:1.0.1= 0] > at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFrame= work.java:1370) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:29= 3) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279= ) [atmosphere-runtime-1.0.10.jar:1.0.10] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:295) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:246) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:230) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:149) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:169) [jboss-as-web-7.2.1.Final-redhat-10.j= ar:7.2.1.Final-redhat-10] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:145) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:97) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:102) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:336) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :856) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:653) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-= redhat-1] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:92= 0) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} > Running the exact same showcase example war on EAP 6.1.0.GA works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1505539634924082545==-- From jira-events at lists.jboss.org Thu Nov 7 10:21:03 2013 Content-Type: multipart/mixed; boundary="===============8715354954880850083==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Thu, 07 Nov 2013 10:21:03 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379000@jira02.app.mwc.hst.phx2.redhat.com --===============8715354954880850083== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13315?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13315: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > bridgeBase: bears orderingList specific event namespacing and has wrong n= ame of destroy method > -------------------------------------------------------------------------= --------------------- > > Key: RF-13315 > URL: https://issues.jboss.org/browse/RF-13315 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {code} > $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { > {code} > {code} > destroy : function() { > {code} > should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8715354954880850083==-- From jira-events at lists.jboss.org Thu Nov 7 10:21:03 2013 Content-Type: multipart/mixed; boundary="===============8663359554334726300==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Thu, 07 Nov 2013 10:21:03 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============8663359554334726300== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13299: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8663359554334726300==-- From jira-events at lists.jboss.org Thu Nov 7 10:21:04 2013 Content-Type: multipart/mixed; boundary="===============4686743788937836622==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13300) Page Fragments: refine module dependencies Date: Thu, 07 Nov 2013 10:21:03 -0500 Message-ID: In-Reply-To: JIRA.12509046.1383080055000@jira02.app.mwc.hst.phx2.redhat.com --===============4686743788937836622== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13300?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13300: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Page Fragments: refine module dependencies > ------------------------------------------ > > Key: RF-13300 > URL: https://issues.jboss.org/browse/RF-13300 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > During the review, I have found out we may need to fine module dependenci= es: > https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 > ---- > {code} > joda-time:2.3 > - DateTime > commons-lang:2.6 > - Validate.isTrue > - StringEscapeUtils.unescapeJava > json-simple:1.1.1 > - JSONParser > org.jodah:typetools:0.3.0 > - TypeResolver.resolveRawArguments > {code} > I'm fine with {{DateTime}}, since it's going to be standardized - even th= ough we may consider making it optional dependency and provide alternative = in form of {{java.util.Date}}. > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few suggestions for dependency free Java-unescaping. > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of JSR-353. > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider shading it. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4686743788937836622==-- From jira-events at lists.jboss.org Thu Nov 7 10:21:04 2013 Content-Type: multipart/mixed; boundary="===============5312578218554533756==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13301) Favor use of Page Fragments in Framework Tests Date: Thu, 07 Nov 2013 10:21:03 -0500 Message-ID: In-Reply-To: JIRA.12509047.1383080150000@jira02.app.mwc.hst.phx2.redhat.com --===============5312578218554533756== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13301?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13301: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Favor use of Page Fragments in Framework Tests > ---------------------------------------------- > > Key: RF-13301 > URL: https://issues.jboss.org/browse/RF-13301 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > > Since we have introduced Page Fragments in Alpha2, we could favor their u= sage in fragment tests. > We could start to refactor tests for components rewritten in Alpha2 and = continue as we rewrite other components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5312578218554533756==-- From jira-events at lists.jboss.org Thu Nov 7 10:21:04 2013 Content-Type: multipart/mixed; boundary="===============1429952518855211068==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename orderingList/pickList bridge and templates file names to use dashes instead of camelCase Date: Thu, 07 Nov 2013 10:21:03 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============1429952518855211068== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13321: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Rename orderingList/pickList bridge and templates file names to use dashe= s instead of camelCase > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1429952518855211068==-- From jira-events at lists.jboss.org Thu Nov 7 10:34:03 2013 Content-Type: multipart/mixed; boundary="===============8496619670207912801==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 10:34:02 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============8496619670207912801== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921413#com= ment-12921413 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13320: --------------------------------- Thanks [~jstefek], nice catch btw. :-) And don't hesitate to send a PR for such a trivial fixes! = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8496619670207912801==-- From jira-events at lists.jboss.org Thu Nov 7 12:07:02 2013 Content-Type: multipart/mixed; boundary="===============1170845426367848143==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13320) Update OrderingList/PickList with refactored Widgets Date: Thu, 07 Nov 2013 12:07:02 -0500 Message-ID: In-Reply-To: JIRA.12518147.1383746573000@jira02.app.mwc.hst.phx2.redhat.com --===============1170845426367848143== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13320?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13320. ----------------------------- Resolution: Done = > Update OrderingList/PickList with refactored Widgets > ---------------------------------------------------- > > Key: RF-13320 > URL: https://issues.jboss.org/browse/RF-13320 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1170845426367848143==-- From jira-events at lists.jboss.org Thu Nov 7 18:03:01 2013 Content-Type: multipart/mixed; boundary="===============7476034763639989140==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13322) Tree: selectionchange event fired twice inside r:region Date: Thu, 07 Nov 2013 18:03:01 -0500 Message-ID: In-Reply-To: JIRA.12524458.1383826726000@jira02.app.mwc.hst.phx2.redhat.com --===============7476034763639989140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13322?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921588#com= ment-12921588 ] = Brian Leathem commented on RF-13322: ------------------------------------ [~ppitonak] is this a regression or the result of a new test? = > Tree: selectionchange event fired twice inside r:region > ------------------------------------------------------- > > Key: RF-13322 > URL: https://issues.jboss.org/browse/RF-13322 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: RichFaces 4.3.4.Final-redhat-1 > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.2.1.Final-redhat-10 > JBoss AS 7.2.1.Final-redhat-10 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richTree/simpleSwingTreeNode.xhtml?templates=3Da4jRegion > # set attribute onselectionchange=3Dalert('changed') > # select first node in tree ("Europe") > result: > * alert is displayed twice > * you can also run Metamer tests = > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestTreeAttributes#testO= nselectionchange -Dtemplates=3Da4jRegion > {code} > * all other templates work fine -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7476034763639989140==-- From jira-events at lists.jboss.org Fri Nov 8 02:40:02 2013 Content-Type: multipart/mixed; boundary="===============2189706881560691027==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13322) Tree: selectionchange event fired twice inside r:region Date: Fri, 08 Nov 2013 02:40:01 -0500 Message-ID: In-Reply-To: JIRA.12524458.1383826726000@jira02.app.mwc.hst.phx2.redhat.com --===============2189706881560691027== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13322?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921638#com= ment-12921638 ] = Pavol Pitonak commented on RF-13322: ------------------------------------ I was able to reproduce in 4.3.4.Final so it looks like a result of a new t= est. = > Tree: selectionchange event fired twice inside r:region > ------------------------------------------------------- > > Key: RF-13322 > URL: https://issues.jboss.org/browse/RF-13322 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: RichFaces 4.3.4.Final-redhat-1 > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.2.1.Final-redhat-10 > JBoss AS 7.2.1.Final-redhat-10 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richTree/simpleSwingTreeNode.xhtml?templates=3Da4jRegion > # set attribute onselectionchange=3Dalert('changed') > # select first node in tree ("Europe") > result: > * alert is displayed twice > * you can also run Metamer tests = > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestTreeAttributes#testO= nselectionchange -Dtemplates=3Da4jRegion > {code} > * all other templates work fine -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2189706881560691027==-- From jira-events at lists.jboss.org Fri Nov 8 03:42:02 2013 Content-Type: multipart/mixed; boundary="===============3863656186172494203==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Fri, 08 Nov 2013 03:42:02 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080840@jira02.app.mwc.hst.phx2.redhat.com --===============3863656186172494203== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Mohammad Weshah created RF-13323: ------------------------------------ Summary: FileUploadEvent listener reset the list value with Vi= ewscope Key: RF-13323 URL: https://issues.jboss.org/browse/RF-13323 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.3.4 Environment: Jboss 7.1 Richfaces 4.3.4 JSF 2.1.9 = Reporter: Mohammad Weshah Hello All, i make an example of upload file from richfaces showcase it is working succ= essfully , but i notice if i changed the backing bean to viewscope the file= s list inside the FileUploadEvent listener will be rest every time that i u= pload new file , the code as follow : = protected List files =3D new ArrayList(); = = public void FileUploadlistener(FileUploadEvent event) throws Exception { = UploadedFile item =3D event.getUploadedFile(); = UploadedImage file =3D new UploadedImage(); = file.setLength(item.getData().length); = file.setName(item.getName()); = file.setData(item.getData()); = = files.add(file); = } = = but when i changed the scope to session the files still contain the old fil= es, is it mandatory to the backing be session or there is something wrong ? = Regards Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3863656186172494203==-- From jira-events at lists.jboss.org Fri Nov 8 03:55:02 2013 Content-Type: multipart/mixed; boundary="===============3119054653308673953==" MIME-Version: 1.0 From: Balaji S (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13324) Dispaly year's and month's as Dropdown Date: Fri, 08 Nov 2013 03:55:02 -0500 Message-ID: In-Reply-To: JIRA.12524558.1383900897871@jira02.app.mwc.hst.phx2.redhat.com --===============3119054653308673953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Balaji S created RF-13324: ----------------------------- Summary: Dispaly year's and month's as Dropdown = Key: RF-13324 URL: https://issues.jboss.org/browse/RF-13324 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component Affects Versions: 4.3.0.Final Reporter: Balaji S Fix For: 4.3.0.Final = It would be better to display year's and month's as List in Rich calender l= ike below = = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3119054653308673953==-- From jira-events at lists.jboss.org Fri Nov 8 03:59:02 2013 Content-Type: multipart/mixed; boundary="===============3460512086639340209==" MIME-Version: 1.0 From: Balaji S (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13324) Dispaly year's and month's as Dropdown Date: Fri, 08 Nov 2013 03:59:01 -0500 Message-ID: In-Reply-To: JIRA.12524558.1383900897000@jira02.app.mwc.hst.phx2.redhat.com --===============3460512086639340209== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13324?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Balaji S updated RF-13324: -------------------------- Description: = = It would be better to display year's and month's as List in Rich calender l= ike bel = was: = It would be better to display year's and month's as List in Rich calender l= ike below = = = > Dispaly year's and month's as Dropdown = > --------------------------------------- > > Key: RF-13324 > URL: https://issues.jboss.org/browse/RF-13324 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.0.Final > Reporter: Balaji S > Fix For: 4.3.0.Final > > > = > It would be better to display year's and month's as List in Rich calender= like bel > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3460512086639340209==-- From jira-events at lists.jboss.org Fri Nov 8 04:01:05 2013 Content-Type: multipart/mixed; boundary="===============0882594942057582092==" MIME-Version: 1.0 From: Balaji S (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13324) Dispaly year's and month's as Dropdown Date: Fri, 08 Nov 2013 04:01:05 -0500 Message-ID: In-Reply-To: JIRA.12524558.1383900897000@jira02.app.mwc.hst.phx2.redhat.com --===============0882594942057582092== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13324?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Balaji S updated RF-13324: -------------------------- Description: = = It would be better to display year's and month's as List in Rich calender = was: = It would be better to display year's and month's as List in Rich calender l= ike bel = = > Dispaly year's and month's as Dropdown = > --------------------------------------- > > Key: RF-13324 > URL: https://issues.jboss.org/browse/RF-13324 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.0.Final > Reporter: Balaji S > Fix For: 4.3.0.Final > > > = > It would be better to display year's and month's as List in Rich calender > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0882594942057582092==-- From jira-events at lists.jboss.org Fri Nov 8 04:49:02 2013 Content-Type: multipart/mixed; boundary="===============2043365849419238433==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout is triggered even when pointer button is not moved out from element Date: Fri, 08 Nov 2013 04:49:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100788@jira02.app.mwc.hst.phx2.redhat.com --===============2043365849419238433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13325: -------------------------------- Summary: pickList: onmouseout is triggered even when pointer b= utton is not moved out from element Key: RF-13325 URL: https://issues.jboss.org/browse/RF-13325 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska {{r:pickList}} event callback for *onmouseout* is called even when the mous= e pointer does not leave the {{r:pickList}} element itself. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2043365849419238433==-- From jira-events at lists.jboss.org Fri Nov 8 04:53:02 2013 Content-Type: multipart/mixed; boundary="===============3769380885641418190==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 04:53:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============3769380885641418190== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13325: ----------------------------- Description: = {{r:pickList}} event callback for *onmouseout* and *onmouseover* is called = even when the mouse pointer does not leave the {{r:pickList}} element itsel= f. I believe issue for both event handlers is the same, as both occurs when mo= ving the mouse pointer in one of the lists (source list or target list). Th= ey should not. was:{{r:pickList}} event callback for *onmouseout* and *onmouseover* is c= alled even when the mouse pointer does not leave the {{r:pickList}} element= itself. = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3769380885641418190==-- From jira-events at lists.jboss.org Fri Nov 8 04:53:02 2013 Content-Type: multipart/mixed; boundary="===============8164336542985936501==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 04:53:01 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============8164336542985936501== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13325: ----------------------------- Summary: pickList: onmouseout/onmouseover is triggered even when pointe= r button is not moved out/over element (was: pickList: onmouseout is trigg= ered even when pointer button is not moved out from element) = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{r:pickList}} event callback for *onmouseout* is called even when the mo= use pointer does not leave the {{r:pickList}} element itself. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8164336542985936501==-- From jira-events at lists.jboss.org Fri Nov 8 04:53:02 2013 Content-Type: multipart/mixed; boundary="===============3259568998129045841==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 04:53:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============3259568998129045841== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13325: ----------------------------- Description: {{r:pickList}} event callback for *onmouseout* and *onmous= eover* is called even when the mouse pointer does not leave the {{r:pickLis= t}} element itself. (was: {{r:pickList}} event callback for *onmouseout* i= s called even when the mouse pointer does not leave the {{r:pickList}} elem= ent itself.) = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3259568998129045841==-- From jira-events at lists.jboss.org Fri Nov 8 04:55:02 2013 Content-Type: multipart/mixed; boundary="===============6335774373921764570==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 04:55:01 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============6335774373921764570== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921688#com= ment-12921688 ] = Juraj H=C3=BAska commented on RF-13325: ---------------------------------- Just tell me if you feel like there should be two issues for these two even= ts. IMHO it is the same issue, with the same root cause. = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6335774373921764570==-- From jira-events at lists.jboss.org Fri Nov 8 04:55:02 2013 Content-Type: multipart/mixed; boundary="===============3180145588670961962==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 04:55:01 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============3180145588670961962== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13325: ----------------------------- Steps to Reproduce: = # deploy metamer and load: http://localhost:8080/metamer/faces/components/r= ichPickList/simple.xhtml # register callback to _onmouseout_ event handler # focus the pickList, e.g. point the mouse to source list # move the mouse inside the source list # see that the *onmouseout* call back is called even when the source list i= s not leaved The similar apply for *onmouseover*. was: # deploy metamer and load: http://localhost:8080/metamer/faces/components/r= ichPickList/simple.xhtml # register callback to _onmouseout_ event handler # focus the pickList, e.g. point the mouse to source list # move the mouse inside the source list # see that the *onmouseout* call back is called even when the source list i= s not leaved = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3180145588670961962==-- From jira-events at lists.jboss.org Fri Nov 8 07:38:02 2013 Content-Type: multipart/mixed; boundary="===============3557612737246956271==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work Date: Fri, 08 Nov 2013 07:38:02 -0500 Message-ID: In-Reply-To: JIRA.12509202.1383227643000@jira02.app.mwc.hst.phx2.redhat.com --===============3557612737246956271== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13304?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12921753#com= ment-12921753 ] = Pavol Pitonak commented on RF-13304: ------------------------------------ Verified = > Autocomplete: value change listener doesn't work > ------------------------------------------------ > > Key: RF-13304 > URL: https://issues.jboss.org/browse/RF-13304 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19-jbossorg-1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml in Firefox 24 > # type 'h' into autocomplete > # select 'Hawaii' > # click outside the autocomplete so that the value is sent to the server > # check phases panel in header > result: > * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed"= for a short while > * after ca. 1s yet another ajax request is done and only "* 2 value chang= ed" is visible > * in Chrome 30, the second ajax request is not fired > * in Chrome 30, when you select some nonexisting value in autocomplete, e= .g. "xxx", it behaves the same as Firefox 24 > * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a = regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3557612737246956271==-- From jira-events at lists.jboss.org Fri Nov 8 07:38:02 2013 Content-Type: multipart/mixed; boundary="===============8983298456975331445==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13304) Autocomplete: value change listener doesn't work Date: Fri, 08 Nov 2013 07:38:02 -0500 Message-ID: In-Reply-To: JIRA.12509202.1383227643000@jira02.app.mwc.hst.phx2.redhat.com --===============8983298456975331445== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13304?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13304. ------------------------------ = > Autocomplete: value change listener doesn't work > ------------------------------------------------ > > Key: RF-13304 > URL: https://issues.jboss.org/browse/RF-13304 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19-jbossorg-1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml in Firefox 24 > # type 'h' into autocomplete > # select 'Hawaii' > # click outside the autocomplete so that the value is sent to the server > # check phases panel in header > result: > * you can see "* 1 value changed: null -> Hawaii" and "* 2 value changed"= for a short while > * after ca. 1s yet another ajax request is done and only "* 2 value chang= ed" is visible > * in Chrome 30, the second ajax request is not fired > * in Chrome 30, when you select some nonexisting value in autocomplete, e= .g. "xxx", it behaves the same as Firefox 24 > * in RichFaces 4.3.4.Final, output of both listeners is visible, it is a = regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8983298456975331445==-- From jira-events at lists.jboss.org Fri Nov 8 07:42:02 2013 Content-Type: multipart/mixed; boundary="===============5056605884777758629==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13308) Autocomplete: clientFilterFunction doesn't work in Firefox Date: Fri, 08 Nov 2013 07:42:02 -0500 Message-ID: In-Reply-To: JIRA.12509275.1383305248000@jira02.app.mwc.hst.phx2.redhat.com --===============5056605884777758629== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13308?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13308. ------------------------------ I cannot reproduce anymore. = > Autocomplete: clientFilterFunction doesn't work in Firefox > ---------------------------------------------------------- > > Key: RF-13308 > URL: https://issues.jboss.org/browse/RF-13308 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Firefox 24 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/filtering.xhtml > # set attribute mode to "client" > # set attribute clientFilterFunction to "customClientFilterFunction" > # type "no" to the autocomplete > # select "Raleigh of North Carolina" > # click outside of autocomplete in order to send selected value to the se= rver > # check that output contains "North Carolina" > result: > * works fine in Chrome 30 > * in Firefox 24, after you type "no", popup with suggestions is not displ= ayed > * works fine in RichFaces 4.3.4.Final -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5056605884777758629==-- From jira-events at lists.jboss.org Fri Nov 8 07:44:02 2013 Content-Type: multipart/mixed; boundary="===============7272161784221528899==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13309) Autocomplete doesn't work correctly when r:ajax bound to selectitem event Date: Fri, 08 Nov 2013 07:44:02 -0500 Message-ID: In-Reply-To: JIRA.12509603.1383315889000@jira02.app.mwc.hst.phx2.redhat.com --===============7272161784221528899== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13309?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13309. ------------------------------ I cannot reproduce anymore. = > Autocomplete doesn't work correctly when r:ajax bound to selectitem event > ------------------------------------------------------------------------- > > Key: RF-13309 > URL: https://issues.jboss.org/browse/RF-13309 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19 > EAP 6.1.1 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/ajaxOnSelectitem.xhtml > # type "a" into autocomplete > # select "Alabama" > # check output below the autocomplete > # check output of value change listener in page's header > result: > * there is "Your selection: alabama" below the autocomplete instead of "Y= our selection: Alabama" with upper case A > * value change listener's output contains "alabama" instead of "Alabama":= * 1 value changed: null -> alabama > * it works fine on page http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml which is exactly the same but uses event= =3Dchange in r:ajax > * works fine in RichFaces 4.3.4, it is a regression -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7272161784221528899==-- From jira-events at lists.jboss.org Fri Nov 8 08:12:02 2013 Content-Type: multipart/mixed; boundary="===============7275405108372587115==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Fri, 08 Nov 2013 08:12:02 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208217@jira02.app.mwc.hst.phx2.redhat.com --===============7275405108372587115== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13326: -------------------------------- Summary: pickList - caption attribute is not rendered in to it= s faces-config Key: RF-13326 URL: https://issues.jboss.org/browse/RF-13326 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska There should be attribute {{caption}} in the {{pickList}} faces-config. It = is not. The attribute is defined in [AbstractOrderingList|https://github.com/richfa= ces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select/o= rderingList/AbstractOrderingList.java], which is the ancestor of {{Abstract= PickList}}. Is it caused because {{orderingList}} has also that attribute and it is som= ehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit weird Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7275405108372587115==-- From jira-events at lists.jboss.org Fri Nov 8 08:18:02 2013 Content-Type: multipart/mixed; boundary="===============8662400135883992178==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 08 Nov 2013 08:18:02 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680834@jira02.app.mwc.hst.phx2.redhat.com --===============8662400135883992178== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13327: -------------------------------- Summary: pickList - setting of multiple attributes does not ha= ve any effect on the component Key: RF-13327 URL: https://issues.jboss.org/browse/RF-13327 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska Setting of these attributes on a {{pickList}} has no effect on the rendered= component (I am trying to group them somehow). *Buttons text* * addAllText * addText * removeAllText * removeText * downBottomText * downText * upText * upTopText *List style* * maxListHeight * minListHeight * style * columnClasses *Other RW options* * switchByClick * switchByDblClick *Callbacks* * onremoveitems * value * valueChangeListener I guess that it is because they are not passed in the [renderer template|ht= tps://github.com/richfaces/richfaces/blob/master/framework/src/main/java/or= g/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8662400135883992178==-- From jira-events at lists.jboss.org Fri Nov 8 08:44:02 2013 Content-Type: multipart/mixed; boundary="===============8703355184857246617==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 08 Nov 2013 08:44:02 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============8703355184857246617== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13327: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8703355184857246617==-- From jira-events at lists.jboss.org Fri Nov 8 08:46:02 2013 Content-Type: multipart/mixed; boundary="===============6147675340522403673==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Fri, 08 Nov 2013 08:46:01 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============6147675340522403673== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13326: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6147675340522403673==-- From jira-events at lists.jboss.org Fri Nov 8 08:46:02 2013 Content-Type: multipart/mixed; boundary="===============0223822750293175518==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13324) Dispaly year's and month's as Dropdown Date: Fri, 08 Nov 2013 08:46:02 -0500 Message-ID: In-Reply-To: JIRA.12524558.1383900897000@jira02.app.mwc.hst.phx2.redhat.com --===============0223822750293175518== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13324?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13324: ------------------------------- Fix Version/s: 5-Tracking (was: 4.3.0.Final) = > Dispaly year's and month's as Dropdown = > --------------------------------------- > > Key: RF-13324 > URL: https://issues.jboss.org/browse/RF-13324 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.0.Final > Reporter: Balaji S > Fix For: 5-Tracking > > > = > It would be better to display year's and month's as List in Rich calender > = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0223822750293175518==-- From jira-events at lists.jboss.org Fri Nov 8 08:46:02 2013 Content-Type: multipart/mixed; boundary="===============7024774033675315743==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 08:46:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============7024774033675315743== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13325: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7024774033675315743==-- From jira-events at lists.jboss.org Fri Nov 8 09:00:09 2013 Content-Type: multipart/mixed; boundary="===============3291592748202764577==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Fri, 08 Nov 2013 09:00:04 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============3291592748202764577== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13323: ------------------------------- Description: = Hello All, i make an example of upload file from richfaces showcase it is working succ= essfully , but i notice if i changed the backing bean to viewscope the file= s list inside the FileUploadEvent listener will be rest every time that i u= pload new file , the code as follow : = {code} protected List files =3D new ArrayList(); = = public void FileUploadlistener(FileUploadEvent event) throws Exception { = UploadedFile item =3D event.getUploadedFile(); = UploadedImage file =3D new UploadedImage(); = file.setLength(item.getData().length); = file.setName(item.getName()); = file.setData(item.getData()); = = files.add(file); = } = {code} = but when i changed the scope to session the files still contain the old fil= es, is it mandatory to the backing be session or there is something wrong ? = Regards Wish79 was: Hello All, i make an example of upload file from richfaces showcase it is working succ= essfully , but i notice if i changed the backing bean to viewscope the file= s list inside the FileUploadEvent listener will be rest every time that i u= pload new file , the code as follow : = protected List files =3D new ArrayList(); = = public void FileUploadlistener(FileUploadEvent event) throws Exception { = UploadedFile item =3D event.getUploadedFile(); = UploadedImage file =3D new UploadedImage(); = file.setLength(item.getData().length); = file.setName(item.getName()); = file.setData(item.getData()); = = files.add(file); = } = = but when i changed the scope to session the files still contain the old fil= es, is it mandatory to the backing be session or there is something wrong ? = Regards Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Labels: rich:fileUpload > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3291592748202764577==-- From jira-events at lists.jboss.org Fri Nov 8 09:00:09 2013 Content-Type: multipart/mixed; boundary="===============1046904490009871438==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Fri, 08 Nov 2013 09:00:04 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============1046904490009871438== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13323: ---------------------------------- Assignee: Pavol Pitonak QA would you please verify whether the fileupload component works with a Vi= ewScoped backing bean? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Pavol Pitonak > Labels: rich:fileUpload > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1046904490009871438==-- From jira-events at lists.jboss.org Fri Nov 8 09:04:02 2013 Content-Type: multipart/mixed; boundary="===============5300865275777983564==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13322) Tree: selectionchange event fired twice inside r:region Date: Fri, 08 Nov 2013 09:04:02 -0500 Message-ID: In-Reply-To: JIRA.12524458.1383826726000@jira02.app.mwc.hst.phx2.redhat.com --===============5300865275777983564== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13322?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13322: ------------------------------- Fix Version/s: 5-Tracking = > Tree: selectionchange event fired twice inside r:region > ------------------------------------------------------- > > Key: RF-13322 > URL: https://issues.jboss.org/browse/RF-13322 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: RichFaces 4.3.4.Final-redhat-1 > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.2.1.Final-redhat-10 > JBoss AS 7.2.1.Final-redhat-10 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 30.0.1599.114 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5-Tracking > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richTree/simpleSwingTreeNode.xhtml?templates=3Da4jRegion > # set attribute onselectionchange=3Dalert('changed') > # select first node in tree ("Europe") > result: > * alert is displayed twice > * you can also run Metamer tests = > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestTreeAttributes#testO= nselectionchange -Dtemplates=3Da4jRegion > {code} > * all other templates work fine -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5300865275777983564==-- From jira-events at lists.jboss.org Fri Nov 8 09:06:04 2013 Content-Type: multipart/mixed; boundary="===============1619067758643012576==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13284) Create showcase samples for the chart components Date: Fri, 08 Nov 2013 09:06:03 -0500 Message-ID: In-Reply-To: JIRA.12508522.1382476109000@jira02.app.mwc.hst.phx2.redhat.com --===============1619067758643012576== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13284?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13284: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4, 5.0.0.Alpha2 - Sprint 5 (was: 5.0.0.A= lpha2 - Sprint 4) = > Create showcase samples for the chart components > ------------------------------------------------ > > Key: RF-13284 > URL: https://issues.jboss.org/browse/RF-13284 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1619067758643012576==-- From jira-events at lists.jboss.org Fri Nov 8 09:06:04 2013 Content-Type: multipart/mixed; boundary="===============5497986181413627545==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13281) orderingList: ordering button's text overflows the button on Firefox Date: Fri, 08 Nov 2013 09:06:04 -0500 Message-ID: In-Reply-To: JIRA.12508466.1382449117000@jira02.app.mwc.hst.phx2.redhat.com --===============5497986181413627545== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13281?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13281: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4, 5.0.0.Alpha2 - Sprint 5 (was: 5.0.0.A= lpha2 - Sprint 4) = > orderingList: ordering button's text overflows the button on Firefox > -------------------------------------------------------------------- > > Key: RF-13281 > URL: https://issues.jboss.org/browse/RF-13281 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Environment: RichFaces 5.0.0-SNAPSHOT > Firefox 24 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Attachments: OL.png > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The ordering button's text overflows the button. > Works in Chrome. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5497986181413627545==-- From jira-events at lists.jboss.org Fri Nov 8 09:06:04 2013 Content-Type: multipart/mixed; boundary="===============4529246069595993770==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13283) Move the chart components from the sandbox into the framework Date: Fri, 08 Nov 2013 09:06:03 -0500 Message-ID: In-Reply-To: JIRA.12508521.1382475986000@jira02.app.mwc.hst.phx2.redhat.com --===============4529246069595993770== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13283?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13283: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 4, 5.0.0.Alpha2 - Sprint 5 (was: 5.0.0.A= lpha2 - Sprint 4) = > Move the chart components from the sandbox into the framework > ------------------------------------------------------------- > > Key: RF-13283 > URL: https://issues.jboss.org/browse/RF-13283 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4529246069595993770==-- From jira-events at lists.jboss.org Fri Nov 8 09:08:02 2013 Content-Type: multipart/mixed; boundary="===============1642820039208466263==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 09:08:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============1642820039208466263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13325: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1642820039208466263==-- From jira-events at lists.jboss.org Fri Nov 8 09:08:02 2013 Content-Type: multipart/mixed; boundary="===============0341192526400697797==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 08 Nov 2013 09:08:02 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============0341192526400697797== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13327: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0341192526400697797==-- From jira-events at lists.jboss.org Fri Nov 8 09:08:03 2013 Content-Type: multipart/mixed; boundary="===============4896392776398777211==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Fri, 08 Nov 2013 09:08:02 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============4896392776398777211== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13326: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4896392776398777211==-- From jira-events at lists.jboss.org Fri Nov 8 09:08:03 2013 Content-Type: multipart/mixed; boundary="===============6616080491290022236==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Fri, 08 Nov 2013 09:08:03 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============6616080491290022236== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13299: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6616080491290022236==-- From jira-events at lists.jboss.org Fri Nov 8 09:08:03 2013 Content-Type: multipart/mixed; boundary="===============0376915022134886069==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13300) Page Fragments: refine module dependencies Date: Fri, 08 Nov 2013 09:08:03 -0500 Message-ID: In-Reply-To: JIRA.12509046.1383080055000@jira02.app.mwc.hst.phx2.redhat.com --===============0376915022134886069== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13300?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13300: ------------------------------- Original Estimate: 30 minutes Remaining Estimate: 30 minutes = > Page Fragments: refine module dependencies > ------------------------------------------ > > Key: RF-13300 > URL: https://issues.jboss.org/browse/RF-13300 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > During the review, I have found out we may need to fine module dependenci= es: > https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 > ---- > {code} > joda-time:2.3 > - DateTime > commons-lang:2.6 > - Validate.isTrue > - StringEscapeUtils.unescapeJava > json-simple:1.1.1 > - JSONParser > org.jodah:typetools:0.3.0 > - TypeResolver.resolveRawArguments > {code} > I'm fine with {{DateTime}}, since it's going to be standardized - even th= ough we may consider making it optional dependency and provide alternative = in form of {{java.util.Date}}. > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few suggestions for dependency free Java-unescaping. > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of JSR-353. > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider shading it. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0376915022134886069==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:02 2013 Content-Type: multipart/mixed; boundary="===============0072508171194659137==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============0072508171194659137== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13325: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0072508171194659137==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:02 2013 Content-Type: multipart/mixed; boundary="===============4711699351726055699==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============4711699351726055699== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13326: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4711699351726055699==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:02 2013 Content-Type: multipart/mixed; boundary="===============3645285473290042055==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13301) Favor use of Page Fragments in Framework Tests Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12509047.1383080150000@jira02.app.mwc.hst.phx2.redhat.com --===============3645285473290042055== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13301?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13301: ------------------------------- Sprint: (was: 5.0.0.Alpha2 - Sprint 5) = > Favor use of Page Fragments in Framework Tests > ---------------------------------------------- > > Key: RF-13301 > URL: https://issues.jboss.org/browse/RF-13301 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > > Since we have introduced Page Fragments in Alpha2, we could favor their u= sage in fragment tests. > We could start to refactor tests for components rewritten in Alpha2 and = continue as we rewrite other components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3645285473290042055==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:02 2013 Content-Type: multipart/mixed; boundary="===============1187771817850950665==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379000@jira02.app.mwc.hst.phx2.redhat.com --===============1187771817850950665== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13315?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13315: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > bridgeBase: bears orderingList specific event namespacing and has wrong n= ame of destroy method > -------------------------------------------------------------------------= --------------------- > > Key: RF-13315 > URL: https://issues.jboss.org/browse/RF-13315 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {code} > $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { > {code} > {code} > destroy : function() { > {code} > should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1187771817850950665==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:02 2013 Content-Type: multipart/mixed; boundary="===============0322848555769954595==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename orderingList/pickList bridge and templates file names to use dashes instead of camelCase Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============0322848555769954595== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13321: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Rename orderingList/pickList bridge and templates file names to use dashe= s instead of camelCase > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0322848555769954595==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:03 2013 Content-Type: multipart/mixed; boundary="===============4311425070750156744==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 08 Nov 2013 09:10:03 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============4311425070750156744== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13327: ---------------------------------- Assignee: Brian Leathem = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4311425070750156744==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:03 2013 Content-Type: multipart/mixed; boundary="===============8965723184631264912==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Fri, 08 Nov 2013 09:10:03 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============8965723184631264912== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13326: ---------------------------------- Assignee: Brian Leathem = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8965723184631264912==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:03 2013 Content-Type: multipart/mixed; boundary="===============8398260690448485530==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Fri, 08 Nov 2013 09:10:03 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============8398260690448485530== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13325: ---------------------------------- Assignee: Brian Leathem = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8398260690448485530==-- From jira-events at lists.jboss.org Fri Nov 8 09:10:03 2013 Content-Type: multipart/mixed; boundary="===============5940362878767637831==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 08 Nov 2013 09:10:02 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============5940362878767637831== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13327: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5940362878767637831==-- From jira-events at lists.jboss.org Fri Nov 8 09:18:02 2013 Content-Type: multipart/mixed; boundary="===============4591799942462286859==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13328) Investigate and impose consistent change event behaviour for all components Date: Fri, 08 Nov 2013 09:18:02 -0500 Message-ID: In-Reply-To: JIRA.12524624.1383920246816@jira02.app.mwc.hst.phx2.redhat.com --===============4591799942462286859== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-13328: ---------------------------------- Summary: Investigate and impose consistent change event behavi= our for all components Key: RF-13328 URL: https://issues.jboss.org/browse/RF-13328 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component Reporter: Brian Leathem Fix For: 5.0.0.Alpha3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4591799942462286859==-- From jira-events at lists.jboss.org Fri Nov 8 10:42:02 2013 Content-Type: multipart/mixed; boundary="===============7401140068653327519==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Fri, 08 Nov 2013 10:42:02 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284927@jira02.app.mwc.hst.phx2.redhat.com --===============7401140068653327519== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13329: -------------------------------- Summary: Delete old 4.x and below pickList and orderingList re= sources from RF5 Key: RF-13329 URL: https://issues.jboss.org/browse/RF-13329 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska Now it should be safe to delete the old resources for {{pickList}} and {{or= deringList}}. I mean {{.js}} and {{.ecss}} files from this folder: https://github.com/richfaces/richfaces/tree/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7401140068653327519==-- From jira-events at lists.jboss.org Fri Nov 8 10:58:02 2013 Content-Type: multipart/mixed; boundary="===============1367217129839509824==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Fri, 08 Nov 2013 10:58:02 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============1367217129839509824== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13329: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1367217129839509824==-- From jira-events at lists.jboss.org Sat Nov 9 11:30:06 2013 Content-Type: multipart/mixed; boundary="===============2572584421631912900==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Sat, 09 Nov 2013 11:30:06 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379000@jira02.app.mwc.hst.phx2.redhat.com --===============2572584421631912900== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13315?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13315: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > bridgeBase: bears orderingList specific event namespacing and has wrong n= ame of destroy method > -------------------------------------------------------------------------= --------------------- > > Key: RF-13315 > URL: https://issues.jboss.org/browse/RF-13315 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {code} > $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { > {code} > {code} > destroy : function() { > {code} > should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2572584421631912900==-- From jira-events at lists.jboss.org Sat Nov 9 11:32:06 2013 Content-Type: multipart/mixed; boundary="===============8262938900717868528==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename orderingList/pickList bridge and templates file names to use dashes instead of camelCase Date: Sat, 09 Nov 2013 11:32:05 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============8262938900717868528== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13321: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Rename orderingList/pickList bridge and templates file names to use dashe= s instead of camelCase > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8262938900717868528==-- From jira-events at lists.jboss.org Sat Nov 9 11:32:06 2013 Content-Type: multipart/mixed; boundary="===============0698441250987069647==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13300) Page Fragments: refine module dependencies Date: Sat, 09 Nov 2013 11:32:06 -0500 Message-ID: In-Reply-To: JIRA.12509046.1383080055000@jira02.app.mwc.hst.phx2.redhat.com --===============0698441250987069647== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13300?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13300: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Page Fragments: refine module dependencies > ------------------------------------------ > > Key: RF-13300 > URL: https://issues.jboss.org/browse/RF-13300 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > During the review, I have found out we may need to fine module dependenci= es: > https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 > ---- > {code} > joda-time:2.3 > - DateTime > commons-lang:2.6 > - Validate.isTrue > - StringEscapeUtils.unescapeJava > json-simple:1.1.1 > - JSONParser > org.jodah:typetools:0.3.0 > - TypeResolver.resolveRawArguments > {code} > I'm fine with {{DateTime}}, since it's going to be standardized - even th= ough we may consider making it optional dependency and provide alternative = in form of {{java.util.Date}}. > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few suggestions for dependency free Java-unescaping. > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of JSR-353. > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider shading it. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0698441250987069647==-- From jira-events at lists.jboss.org Sat Nov 9 11:40:06 2013 Content-Type: multipart/mixed; boundary="===============6523642366758746262==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Sat, 09 Nov 2013 11:40:06 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============6523642366758746262== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13299: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6523642366758746262==-- From jira-events at lists.jboss.org Sat Nov 9 11:40:06 2013 Content-Type: multipart/mixed; boundary="===============1691949931832641499==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13284) Create showcase samples for the chart components Date: Sat, 09 Nov 2013 11:40:06 -0500 Message-ID: In-Reply-To: JIRA.12508522.1382476109000@jira02.app.mwc.hst.phx2.redhat.com --===============1691949931832641499== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13284?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13284: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Luk=C3=A1=C5=A1 Macko) = > Create showcase samples for the chart components > ------------------------------------------------ > > Key: RF-13284 > URL: https://issues.jboss.org/browse/RF-13284 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1691949931832641499==-- From jira-events at lists.jboss.org Sat Nov 9 11:40:06 2013 Content-Type: multipart/mixed; boundary="===============9217102051697427721==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13283) Move the chart components from the sandbox into the framework Date: Sat, 09 Nov 2013 11:40:06 -0500 Message-ID: In-Reply-To: JIRA.12508521.1382475986000@jira02.app.mwc.hst.phx2.redhat.com --===============9217102051697427721== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13283?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13283: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Luk=C3=A1=C5=A1 Macko) = > Move the chart components from the sandbox into the framework > ------------------------------------------------------------- > > Key: RF-13283 > URL: https://issues.jboss.org/browse/RF-13283 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9217102051697427721==-- From jira-events at lists.jboss.org Sat Nov 9 11:50:06 2013 Content-Type: multipart/mixed; boundary="===============9171407094244953526==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename bridges, bridge-base and templates file names to use dashes instead of camelCase Date: Sat, 09 Nov 2013 11:50:05 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============9171407094244953526== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13321: ---------------------------- Summary: Rename bridges, bridge-base and templates file names to use da= shes instead of camelCase (was: Rename orderingList/pickList bridge and te= mplates file names to use dashes instead of camelCase) = > Rename bridges, bridge-base and templates file names to use dashes instea= d of camelCase > -------------------------------------------------------------------------= -------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9171407094244953526==-- From jira-events at lists.jboss.org Sat Nov 9 12:42:06 2013 Content-Type: multipart/mixed; boundary="===============0833195174283531853==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Sat, 09 Nov 2013 12:42:06 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============0833195174283531853== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13299: ---------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0833195174283531853==-- From jira-events at lists.jboss.org Sun Nov 10 09:50:06 2013 Content-Type: multipart/mixed; boundary="===============5247362264316104595==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13321) Rename bridges, bridge-base and templates file names to use dashes instead of camelCase Date: Sun, 10 Nov 2013 09:50:06 -0500 Message-ID: In-Reply-To: JIRA.12518149.1383746834000@jira02.app.mwc.hst.phx2.redhat.com --===============5247362264316104595== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13321?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13321. ----------------------------- Resolution: Done = > Rename bridges, bridge-base and templates file names to use dashes instea= d of camelCase > -------------------------------------------------------------------------= -------------- > > Key: RF-13321 > URL: https://issues.jboss.org/browse/RF-13321 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > We have renamed orderingList/pickList to ordering-list/pick-list in RW. > I think we should update naming in RF. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5247362264316104595==-- From jira-events at lists.jboss.org Sun Nov 10 09:54:06 2013 Content-Type: multipart/mixed; boundary="===============5357929463496787919==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Sun, 10 Nov 2013 09:54:06 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223318@jira02.app.mwc.hst.phx2.redhat.com --===============5357929463496787919== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13330: ------------------------------- Summary: RichFaces.jQuery should be used in CDK templates inst= ead of $ Key: RF-13330 URL: https://issues.jboss.org/browse/RF-13330 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/autoc= omplete.template.xml#L44 https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/orde= ring-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5357929463496787919==-- From jira-events at lists.jboss.org Sun Nov 10 09:56:06 2013 Content-Type: multipart/mixed; boundary="===============2735685905641280180==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Sun, 10 Nov 2013 09:56:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============2735685905641280180== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13330: ---------------------------- Description: = RichFaces make use of non-conflicting jQuery reference to avoid collisions = with user-specific use of jQuery. https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/autoc= omplete.template.xml#L44 https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/orde= ring-list.template.xml#L92 was: https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/autoc= omplete.template.xml#L44 https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f3441= bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/orde= ring-list.template.xml#L92 = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2735685905641280180==-- From jira-events at lists.jboss.org Sun Nov 10 09:56:06 2013 Content-Type: multipart/mixed; boundary="===============5947130007813255794==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Sun, 10 Nov 2013 09:56:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============5947130007813255794== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922125#com= ment-12922125 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13330: --------------------------------- RichFaces.jQuery is too long expression considering it needs to be transfer= ed with each request. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5947130007813255794==-- From jira-events at lists.jboss.org Sun Nov 10 10:02:06 2013 Content-Type: multipart/mixed; boundary="===============7409918320563947772==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13315) bridgeBase: bears orderingList specific event namespacing and has wrong name of destroy method Date: Sun, 10 Nov 2013 10:02:05 -0500 Message-ID: In-Reply-To: JIRA.12518001.1383645379000@jira02.app.mwc.hst.phx2.redhat.com --===============7409918320563947772== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13315?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13315. ----------------------------- Resolution: Done = > bridgeBase: bears orderingList specific event namespacing and has wrong n= ame of destroy method > -------------------------------------------------------------------------= --------------------- > > Key: RF-13315 > URL: https://issues.jboss.org/browse/RF-13315 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {code} > $('body').on("cleanDom.orderingList.bootstrap.RICH", function(event, ui) { > {code} > {code} > destroy : function() { > {code} > should be {{_destroy}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7409918320563947772==-- From jira-events at lists.jboss.org Mon Nov 11 03:11:06 2013 Content-Type: multipart/mixed; boundary="===============6757073375884241438==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Mon, 11 Nov 2013 03:11:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============6757073375884241438== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13323: ---------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek (was: Pavol Pitonak) = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6757073375884241438==-- From jira-events at lists.jboss.org Mon Nov 11 06:26:06 2013 Content-Type: multipart/mixed; boundary="===============4231704930275098459==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Mon, 11 Nov 2013 06:26:06 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============4231704930275098459== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13299: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4231704930275098459==-- From jira-events at lists.jboss.org Mon Nov 11 07:10:06 2013 Content-Type: multipart/mixed; boundary="===============5084785247661968638==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Mon, 11 Nov 2013 07:10:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============5084785247661968638== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13331: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5084785247661968638==-- From jira-events at lists.jboss.org Mon Nov 11 07:10:06 2013 Content-Type: multipart/mixed; boundary="===============5154326359421181178==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Mon, 11 Nov 2013 07:10:05 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743220@jira02.app.mwc.hst.phx2.redhat.com --===============5154326359421181178== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13331: ------------------------------- Summary: Move tests for Chart component from Sandbox to Framew= ork Tests Key: RF-13331 URL: https://issues.jboss.org/browse/RF-13331 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-output Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Macko Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5154326359421181178==-- From jira-events at lists.jboss.org Mon Nov 11 07:40:06 2013 Content-Type: multipart/mixed; boundary="===============1559397412391125856==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13332) Showcase: update what components are new in 5.0 Alpha2 Date: Mon, 11 Nov 2013 07:40:05 -0500 Message-ID: In-Reply-To: JIRA.12524763.1384173502298@jira02.app.mwc.hst.phx2.redhat.com --===============1559397412391125856== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13332: ------------------------------- Summary: Showcase: update what components are new in 5.0 Alpha2 Key: RF-13332 URL: https://issues.jboss.org/browse/RF-13332 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: showcase Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1559397412391125856==-- From jira-events at lists.jboss.org Mon Nov 11 07:40:06 2013 Content-Type: multipart/mixed; boundary="===============0367433926848443921==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13333) Charts: click server handlers throws exception Date: Mon, 11 Nov 2013 07:40:05 -0500 Message-ID: In-Reply-To: JIRA.12524764.1384173557811@jira02.app.mwc.hst.phx2.redhat.com --===============0367433926848443921== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13333: ------------------------------- Summary: Charts: click server handlers throws exception Key: RF-13333 URL: https://issues.jboss.org/browse/RF-13333 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Stack trace: {code} 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.application= ] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compone= nt-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Obje= ct to JavaScript at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:194)= [:] at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [:] at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSerialize= rImpl.java:32) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions(E= xtendedPartialViewContextImpl.java:531) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRend= erPhase(ExtendedPartialViewContextImpl.java:327) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:222) [:] at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(F= aceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHan= dler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase= .java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [j= sf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persist= enceLifecycle.java:66) [:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextV= alve.java:161) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] Caused by: java.lang.NoSuchMethodException: Read method for property 'JSONA= rray' not found at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtils.= java:74) [:] at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:191)= [:] ... 37 more {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0367433926848443921==-- From jira-events at lists.jboss.org Mon Nov 11 07:44:06 2013 Content-Type: multipart/mixed; boundary="===============1425730217771485971==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13333) Charts: click server handlers throws exception Date: Mon, 11 Nov 2013 07:44:06 -0500 Message-ID: In-Reply-To: JIRA.12524764.1384173557000@jira02.app.mwc.hst.phx2.redhat.com --===============1425730217771485971== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13333?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13333: ---------------------------- Fix Version/s: 5.0.0.Alpha2 Description: = Steps to reproduce: 1. open r:chart -> Event handling demo http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dchart&= sample=3Devents&skin=3DblueSky 2. click on one of points on the chart FAIL: there is an error in the server console {{NoSuchMethodException: Read method for property 'JSONArray' not found}} Stack trace: {code} 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.application= ] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compone= nt-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Obje= ct to JavaScript at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:194)= [:] at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [:] at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSerialize= rImpl.java:32) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions(E= xtendedPartialViewContextImpl.java:531) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRend= erPhase(ExtendedPartialViewContextImpl.java:327) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:222) [:] at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(F= aceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHan= dler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase= .java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [j= sf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persist= enceLifecycle.java:66) [:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextV= alve.java:161) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] Caused by: java.lang.NoSuchMethodException: Read method for property 'JSONA= rray' not found at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtils.= java:74) [:] at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:191)= [:] ... 37 more {code} was: Stack trace: {code} 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.application= ] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compone= nt-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Obje= ct to JavaScript at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:194)= [:] at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [:] at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSerialize= rImpl.java:32) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions(E= xtendedPartialViewContextImpl.java:531) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRend= erPhase(ExtendedPartialViewContextImpl.java:327) [:] at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(Ext= endedPartialViewContextImpl.java:222) [:] at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(F= aceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHan= dler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase= .java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [j= sf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persist= enceLifecycle.java:66) [:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextV= alve.java:161) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] Caused by: java.lang.NoSuchMethodException: Read method for property 'JSONA= rray' not found at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtils.= java:74) [:] at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:191)= [:] ... 37 more {code} Assignee: Luk=C3=A1=C5=A1 Macko Affects Version/s: 5.0.0.Alpha2 Component/s: component-output = > Charts: click server handlers throws exception > ---------------------------------------------- > > Key: RF-13333 > URL: https://issues.jboss.org/browse/RF-13333 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Steps to reproduce: > 1. open r:chart -> Event handling demo > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dchar= t&sample=3Devents&skin=3DblueSky > 2. click on one of points on the chart > FAIL: there is an error in the server console > {{NoSuchMethodException: Read method for property 'JSONArray' not found}} > Stack trace: > {code} > 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.applicati= on] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compo= nent-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Ob= ject to JavaScript > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 4) [:] > at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [= :] > at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSeriali= zerImpl.java:32) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions= (ExtendedPartialViewContextImpl.java:531) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRe= nderPhase(ExtendedPartialViewContextImpl.java:327) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:222) [:] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) = [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView= (FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewH= andler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha= se.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) = [jsf-impl-2.1.7-jbossorg-2.jar:] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persi= stenceLifecycle.java:66) [:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.__invoke(StandardContex= tValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > Caused by: java.lang.NoSuchMethodException: Read method for property 'JSO= NArray' not found > at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtil= s.java:74) [:] > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 1) [:] > ... 37 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1425730217771485971==-- From jira-events at lists.jboss.org Mon Nov 11 07:46:06 2013 Content-Type: multipart/mixed; boundary="===============3414418621108809545==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13333) Charts: click server handlers throws exception Date: Mon, 11 Nov 2013 07:46:05 -0500 Message-ID: In-Reply-To: JIRA.12524764.1384173557000@jira02.app.mwc.hst.phx2.redhat.com --===============3414418621108809545== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13333?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13333: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Charts: click server handlers throws exception > ---------------------------------------------- > > Key: RF-13333 > URL: https://issues.jboss.org/browse/RF-13333 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Steps to reproduce: > 1. open r:chart -> Event handling demo > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dchar= t&sample=3Devents&skin=3DblueSky > 2. click on one of points on the chart > FAIL: there is an error in the server console > {{NoSuchMethodException: Read method for property 'JSONArray' not found}} > Stack trace: > {code} > 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.applicati= on] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compo= nent-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Ob= ject to JavaScript > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 4) [:] > at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [= :] > at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSeriali= zerImpl.java:32) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions= (ExtendedPartialViewContextImpl.java:531) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRe= nderPhase(ExtendedPartialViewContextImpl.java:327) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:222) [:] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) = [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView= (FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewH= andler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha= se.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) = [jsf-impl-2.1.7-jbossorg-2.jar:] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persi= stenceLifecycle.java:66) [:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.__invoke(StandardContex= tValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > Caused by: java.lang.NoSuchMethodException: Read method for property 'JSO= NArray' not found > at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtil= s.java:74) [:] > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 1) [:] > ... 37 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3414418621108809545==-- From jira-events at lists.jboss.org Mon Nov 11 07:46:06 2013 Content-Type: multipart/mixed; boundary="===============6678240629605110953==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13332) Showcase: update what components are new in 5.0 Alpha2 Date: Mon, 11 Nov 2013 07:46:05 -0500 Message-ID: In-Reply-To: JIRA.12524763.1384173502000@jira02.app.mwc.hst.phx2.redhat.com --===============6678240629605110953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13332?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13332: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Showcase: update what components are new in 5.0 Alpha2 > ------------------------------------------------------ > > Key: RF-13332 > URL: https://issues.jboss.org/browse/RF-13332 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6678240629605110953==-- From jira-events at lists.jboss.org Mon Nov 11 08:48:06 2013 Content-Type: multipart/mixed; boundary="===============4559743911322864978==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 08:48:06 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============4559743911322864978== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13334: ---------------------------- Description: = RichWidgets issue: https://github.com/richwidgets/richwidgets/issues/99 was: RichWidgets issue: = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4559743911322864978==-- From jira-events at lists.jboss.org Mon Nov 11 08:48:06 2013 Content-Type: multipart/mixed; boundary="===============4110844150029019258==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 08:48:06 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649551@jira02.app.mwc.hst.phx2.redhat.com --===============4110844150029019258== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13334: ------------------------------- Summary: Upgrade jQuery UI to 1.10.3 Key: RF-13334 URL: https://issues.jboss.org/browse/RF-13334 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: third-party Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D RichWidgets issue: -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4110844150029019258==-- From jira-events at lists.jboss.org Mon Nov 11 09:11:06 2013 Content-Type: multipart/mixed; boundary="===============0870530279657896098==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 09:11:05 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============0870530279657896098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922349#com= ment-12922349 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13334: --------------------------------- Opened feature branch: https://github.com/richfaces/richfaces/tree/RF-13334-upgrade-jquery-ui-1-10= -3 DND test fails: {code} Tests in error: = test_dnd(org.richfaces.ui.drag.ITDnd): Request type 'XHR' was expected, b= ut type 'NONE' was done instead Tests run: 38, Failures: 0, Errors: 1, Skipped: 4 {code} = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0870530279657896098==-- From jira-events at lists.jboss.org Mon Nov 11 09:17:05 2013 Content-Type: multipart/mixed; boundary="===============5059490533524028719==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 09:17:05 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============5059490533524028719== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922349#com= ment-12922349 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13334 at 11/11/13 9:15 AM: ----------------------------------------------------------- Opened feature branch: https://github.com/richfaces/richfaces/tree/RF-13334-upgrade-jquery-ui-1-10= -3 DND test fails: {code} Tests in error: = test_dnd(org.richfaces.ui.drag.ITDnd): Request type 'XHR' was expected, b= ut type 'NONE' was done instead Tests run: 38, Failures: 0, Errors: 1, Skipped: 4 {code} The DND demo in showcase works for first drag-drop action, but then it fail= s to start dragging. = was (Author: lfryc): Opened feature branch: https://github.com/richfaces/richfaces/tree/RF-13334-upgrade-jquery-ui-1-10= -3 DND test fails: {code} Tests in error: = test_dnd(org.richfaces.ui.drag.ITDnd): Request type 'XHR' was expected, b= ut type 'NONE' was done instead Tests run: 38, Failures: 0, Errors: 1, Skipped: 4 {code} = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5059490533524028719==-- From jira-events at lists.jboss.org Mon Nov 11 09:37:06 2013 Content-Type: multipart/mixed; boundary="===============7884829264526556215==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13332) Showcase: update what components are new in 5.0 Alpha2 Date: Mon, 11 Nov 2013 09:37:06 -0500 Message-ID: In-Reply-To: JIRA.12524763.1384173502000@jira02.app.mwc.hst.phx2.redhat.com --===============7884829264526556215== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13332?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13332. ----------------------------- Resolution: Done = > Showcase: update what components are new in 5.0 Alpha2 > ------------------------------------------------------ > > Key: RF-13332 > URL: https://issues.jboss.org/browse/RF-13332 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7884829264526556215==-- From jira-events at lists.jboss.org Mon Nov 11 09:59:06 2013 Content-Type: multipart/mixed; boundary="===============3819461739461883699==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Mon, 11 Nov 2013 09:59:05 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============3819461739461883699== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13292: ---------------------------------- Assignee: Michal Petrov = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3819461739461883699==-- From jira-events at lists.jboss.org Mon Nov 11 10:01:06 2013 Content-Type: multipart/mixed; boundary="===============5201974587205327186==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Mon, 11 Nov 2013 10:01:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============5201974587205327186== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov updated RF-13292: ------------------------------- Component/s: component-input = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5201974587205327186==-- From jira-events at lists.jboss.org Mon Nov 11 10:05:06 2013 Content-Type: multipart/mixed; boundary="===============3570251537696060024==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Mon, 11 Nov 2013 10:05:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============3570251537696060024== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922374#com= ment-12922374 ] = Michal Petrov commented on RF-13292: ------------------------------------ Looks like Opera 12.10 decided to fix its odd behaviour of keydown/keypress= ed. This also affects {{list}} and {{inputBase}}. = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3570251537696060024==-- From jira-events at lists.jboss.org Mon Nov 11 10:13:06 2013 Content-Type: multipart/mixed; boundary="===============3553907422630134089==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13216) PoupPanel doesn't disappear when rendered="false" and rerender it. Date: Mon, 11 Nov 2013 10:13:06 -0500 Message-ID: In-Reply-To: JIRA.12501363.1380018548000@jira02.app.mwc.hst.phx2.redhat.com --===============3553907422630134089== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13216?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922383#com= ment-12922383 ] = RH Bugzilla Integration commented on RF-13216: ---------------------------------------------- Jiri Pallich changed the Status of [bug 1011466|htt= ps://bugzilla.redhat.com/show_bug.cgi?id=3D1011466] from NEW to ASSIGNED = > PoupPanel doesn't disappear when rendered=3D"false" and rerender it. > ------------------------------------------------------------------ > > Key: RF-13216 > URL: https://issues.jboss.org/browse/RF-13216 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.3 > Reporter: Takayuki Konishi > Labels: gss > Attachments: rf3_3_4-modalpanel.zip, rf4_3_3-popuppanel.zip > > > If you use the richfaces popupPanel in the default domElementAttachment= =3D"body" mode it will not disappear under specific conditions. > {code:xml} = > > > > > > > > > > > > > {code} = > In Richfaces 3.3.x, on the other hand, there was a component cleanup syst= em ({{memory.js _cleanComponentNodes}}) which was responsible to remove com= ponents after ajax calls if the component was removed from the current view= . = > Therefore the above example (revert {{popupPanel}} to {{modalPanel}}) wor= ks in RF3.3.4.Final. > Note: > In case {{domElementAttachment=3D"parent"}}, it will show [the other JSF2= bug|https://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-790] where th= e view state was lost, therefore you must click the action button twice to = really call the function. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3553907422630134089==-- From jira-events at lists.jboss.org Mon Nov 11 13:42:06 2013 Content-Type: multipart/mixed; boundary="===============7730771210783855764==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13333) Charts: click server handlers throws exception Date: Mon, 11 Nov 2013 13:42:06 -0500 Message-ID: In-Reply-To: JIRA.12524764.1384173557000@jira02.app.mwc.hst.phx2.redhat.com --===============7730771210783855764== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13333?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13333: ------------------------------- Priority: Critical (was: Major) = > Charts: click server handlers throws exception > ---------------------------------------------- > > Key: RF-13333 > URL: https://issues.jboss.org/browse/RF-13333 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > Steps to reproduce: > 1. open r:chart -> Event handling demo > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dchar= t&sample=3Devents&skin=3DblueSky > 2. click on one of points on the chart > FAIL: there is an error in the server console > {{NoSuchMethodException: Read method for property 'JSONArray' not found}} > Stack trace: > {code} > 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.applicati= on] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compo= nent-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Ob= ject to JavaScript > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 4) [:] > at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [= :] > at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSeriali= zerImpl.java:32) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions= (ExtendedPartialViewContextImpl.java:531) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRe= nderPhase(ExtendedPartialViewContextImpl.java:327) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:222) [:] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) = [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView= (FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewH= andler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha= se.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) = [jsf-impl-2.1.7-jbossorg-2.jar:] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persi= stenceLifecycle.java:66) [:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.__invoke(StandardContex= tValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > Caused by: java.lang.NoSuchMethodException: Read method for property 'JSO= NArray' not found > at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtil= s.java:74) [:] > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 1) [:] > ... 37 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7730771210783855764==-- From jira-events at lists.jboss.org Mon Nov 11 13:47:06 2013 Content-Type: multipart/mixed; boundary="===============8747506939834184150==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Mon, 11 Nov 2013 13:47:06 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============8747506939834184150== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922486#com= ment-12922486 ] = Brian Leathem commented on RF-13330: ------------------------------------ Can you suggest an alternative? IMO it's a small fraction of the payload, = and shaving a few characters off isn't worth the cost of increased obscurit= y. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8747506939834184150==-- From jira-events at lists.jboss.org Mon Nov 11 13:47:06 2013 Content-Type: multipart/mixed; boundary="===============5050322282884930623==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Mon, 11 Nov 2013 13:47:06 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============5050322282884930623== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13299: ---------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5050322282884930623==-- From jira-events at lists.jboss.org Mon Nov 11 13:49:06 2013 Content-Type: multipart/mixed; boundary="===============0535776309914124532==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Mon, 11 Nov 2013 13:49:05 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============0535776309914124532== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922487#com= ment-12922487 ] = Brian Leathem commented on RF-13299: ------------------------------------ [~lfryc] Assigning to me. = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0535776309914124532==-- From jira-events at lists.jboss.org Mon Nov 11 13:56:06 2013 Content-Type: multipart/mixed; boundary="===============1924550596608093150==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 13:56:05 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============1924550596608093150== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13334: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1924550596608093150==-- From jira-events at lists.jboss.org Mon Nov 11 13:58:06 2013 Content-Type: multipart/mixed; boundary="===============3137470846211642237==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Mon, 11 Nov 2013 13:58:05 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============3137470846211642237== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922488#com= ment-12922488 ] = Brian Leathem commented on RF-13334: ------------------------------------ Scheduling to 5.0.0.Alpha2 for further investigation. = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3137470846211642237==-- From jira-events at lists.jboss.org Tue Nov 12 02:35:06 2013 Content-Type: multipart/mixed; boundary="===============5479921240901565469==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Tue, 12 Nov 2013 02:35:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============5479921240901565469== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922613#com= ment-12922613 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13330: --------------------------------- We could hook into JSF DOM update process and replace $ reference in time o= f updating JSF component. It would probably bring more issues than savings. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5479921240901565469==-- From jira-events at lists.jboss.org Tue Nov 12 03:04:06 2013 Content-Type: multipart/mixed; boundary="===============6952307455813337227==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 03:04:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============6952307455813337227== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13335: ---------------------------- Description: = I didn't found reason to leave Validate.isTrue - this should be replaced by= more verbose but dependency free code. I did some googling for alternatives to StringEscapeUtils.unescapeJava and = found out few suggestions for dependency free Java-unescaping. = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave Validate.isTrue - this should be replaced = by more verbose but dependency free code. > I did some googling for alternatives to StringEscapeUtils.unescapeJava an= d found out few suggestions for dependency free Java-unescaping. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6952307455813337227==-- From jira-events at lists.jboss.org Tue Nov 12 03:04:06 2013 Content-Type: multipart/mixed; boundary="===============4631482344062284968==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 03:04:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427819@jira02.app.mwc.hst.phx2.redhat.com --===============4631482344062284968== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13335: ------------------------------- Summary: Page fragments: get rid of commons-lang dependency Key: RF-13335 URL: https://issues.jboss.org/browse/RF-13335 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4631482344062284968==-- From jira-events at lists.jboss.org Tue Nov 12 03:04:06 2013 Content-Type: multipart/mixed; boundary="===============3127729473869297776==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13300) Page Fragments: refine module dependencies Date: Tue, 12 Nov 2013 03:04:06 -0500 Message-ID: In-Reply-To: JIRA.12509046.1383080055000@jira02.app.mwc.hst.phx2.redhat.com --===============3127729473869297776== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13300?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13300: ---------------------------- Description: = During the review, I have found out we may need to fine module dependencies: https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 ---- {code} joda-time:2.3 - DateTime commons-lang:2.6 - Validate.isTrue - StringEscapeUtils.unescapeJava json-simple:1.1.1 - JSONParser org.jodah:typetools:0.3.0 - TypeResolver.resolveRawArguments {code} I'm fine with {{DateTime}}, since it's going to be standardized - even thou= gh we may consider making it optional dependency and provide alternative in= form of {{java.util.Date}}. I didn't found reason to leave {{Validate.isTrue}} - this should be replace= d by more verbose but dependency free code. I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}} = and found out few [suggestions for dependency free Java-unescaping|http://s= tackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-in-= java]. {{JSONParser}} seems to be necessary (even though we don;t use it extensive= ly yet), but I would favor standard APIs in form of [JSR-353|https://jsonp.= java.net/index.html]. I believe {{TypeResolver}} can be re-written from scratch, but since it's o= ne-class ASL dependency, we might consider [shading it|http://maven.apache.= org/plugins/maven-shade-plugin/]. was: During the review, I have found out we may need to fine module dependencies: https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 ---- {code} joda-time:2.3 - DateTime commons-lang:2.6 - Validate.isTrue - StringEscapeUtils.unescapeJava json-simple:1.1.1 - JSONParser org.jodah:typetools:0.3.0 - TypeResolver.resolveRawArguments {code} I'm fine with {{DateTime}}, since it's going to be standardized - even thou= gh we may consider making it optional dependency and provide alternative in= form of {{java.util.Date}}. I didn't found reason to leave {{Validate.isTrue}} - this should be replace= d by more verbose but dependency free code. I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}} = and found out few suggestions for dependency free Java-unescaping. {{JSONParser}} seems to be necessary (even though we don;t use it extensive= ly yet), but I would favor standard APIs in form of JSR-353. I believe {{TypeResolver}} can be re-written from scratch, but since it's o= ne-class ASL dependency, we might consider shading it. = > Page Fragments: refine module dependencies > ------------------------------------------ > > Key: RF-13300 > URL: https://issues.jboss.org/browse/RF-13300 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > During the review, I have found out we may need to fine module dependenci= es: > https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 > ---- > {code} > joda-time:2.3 > - DateTime > commons-lang:2.6 > - Validate.isTrue > - StringEscapeUtils.unescapeJava > json-simple:1.1.1 > - JSONParser > org.jodah:typetools:0.3.0 > - TypeResolver.resolveRawArguments > {code} > I'm fine with {{DateTime}}, since it's going to be standardized - even th= ough we may consider making it optional dependency and provide alternative = in form of {{java.util.Date}}. > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3127729473869297776==-- From jira-events at lists.jboss.org Tue Nov 12 03:06:06 2013 Content-Type: multipart/mixed; boundary="===============8581770500583164354==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13336) Page fragments: get rid of json-simple dependency Date: Tue, 12 Nov 2013 03:06:06 -0500 Message-ID: In-Reply-To: JIRA.12524850.1384243485696@jira02.app.mwc.hst.phx2.redhat.com --===============8581770500583164354== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13336: ------------------------------- Summary: Page fragments: get rid of json-simple dependency Key: RF-13336 URL: https://issues.jboss.org/browse/RF-13336 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8581770500583164354==-- From jira-events at lists.jboss.org Tue Nov 12 03:06:06 2013 Content-Type: multipart/mixed; boundary="===============2994590662068376511==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 03:06:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============2994590662068376511== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13335: ---------------------------- Description: = I didn't found reason to leave {{Validate.isTrue}} - this should be replace= d by more verbose but dependency free code. I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}} = and found out few [suggestions for dependency free Java-unescaping|http://s= tackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-in-= java]. was: I didn't found reason to leave Validate.isTrue - this should be replaced by= more verbose but dependency free code. I did some googling for alternatives to StringEscapeUtils.unescapeJava and = found out few suggestions for dependency free Java-unescaping. = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2994590662068376511==-- From jira-events at lists.jboss.org Tue Nov 12 03:06:08 2013 Content-Type: multipart/mixed; boundary="===============7196956980701347336==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Tue, 12 Nov 2013 03:06:06 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549274@jira02.app.mwc.hst.phx2.redhat.com --===============7196956980701347336== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13337: ------------------------------- Summary: Page fragments: get rid of typetools dependency Key: RF-13337 URL: https://issues.jboss.org/browse/RF-13337 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7196956980701347336==-- From jira-events at lists.jboss.org Tue Nov 12 03:06:08 2013 Content-Type: multipart/mixed; boundary="===============8025184632228484256==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Tue, 12 Nov 2013 03:06:06 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549000@jira02.app.mwc.hst.phx2.redhat.com --===============8025184632228484256== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13337?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13337: ---------------------------- Description: I believe {{TypeResolver}} can be re-written from scratch,= but since it's one-class ASL dependency, we might consider [shading it|htt= p://maven.apache.org/plugins/maven-shade-plugin/]. = > Page fragments: get rid of typetools dependency > ----------------------------------------------- > > Key: RF-13337 > URL: https://issues.jboss.org/browse/RF-13337 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8025184632228484256==-- From jira-events at lists.jboss.org Tue Nov 12 03:08:06 2013 Content-Type: multipart/mixed; boundary="===============7863900347317006025==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13336) Page fragments: get rid of json-simple dependency Date: Tue, 12 Nov 2013 03:08:05 -0500 Message-ID: In-Reply-To: JIRA.12524850.1384243485000@jira02.app.mwc.hst.phx2.redhat.com --===============7863900347317006025== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13336?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13336: ---------------------------- Description: {{JSONParser}} seems to be necessary (even though we don;t= use it extensively yet), but I would favor standard APIs in form of [JSR-3= 53|https://jsonp.java.net/index.html]. = > Page fragments: get rid of json-simple dependency > ------------------------------------------------- > > Key: RF-13336 > URL: https://issues.jboss.org/browse/RF-13336 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7863900347317006025==-- From jira-events at lists.jboss.org Tue Nov 12 03:12:07 2013 Content-Type: multipart/mixed; boundary="===============2595273443493808584==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 03:12:07 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============2595273443493808584== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922625#com= ment-12922625 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13335: --------------------------------- I came to conclusion that we should not need JSON parsing at all - in RichF= aces bridgeBase, we can retrieve options using following jQuery UI widget f= actory invocation: {code} $(element).pluginName("optionName"); {code} Unfortunately, RichFaces 4 BaseComponent doesn't allow to retrieve options = at runtime. I suggest to introduce method {{getOptions}} to [{{BaseComponent}}|https://= github.com/richfaces/richfaces/blob/0855b61d55533ad9c1b31555f222608911806cb= 0/framework/src/main/resources/META-INF/resources/org.richfaces/common/rich= faces-base-component.js#L193]: {code} function getOptions() { return this.options; } {code} This would need to be introduced in both, RF 4.3, RF 4.5 and RF 5.0. = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2595273443493808584==-- From jira-events at lists.jboss.org Tue Nov 12 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============3067633950246814414==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 03:14:05 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============3067633950246814414== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922625#com= ment-12922625 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13335 at 11/12/13 3:12 AM: ----------------------------------------------------------- I came to conclusion that we should not need JSON parsing at all - leveragi= ng RichFaces 5 {{bridgeBase}}, we can retrieve options using following jQue= ry UI widget factory invocation: {code} $(element).pluginName("optionName"); {code} Unfortunately, RichFaces 4 BaseComponent doesn't allow to retrieve options = at runtime. I suggest to introduce method {{getOptions}} to [{{BaseComponent}}|https://= github.com/richfaces/richfaces/blob/0855b61d55533ad9c1b31555f222608911806cb= 0/framework/src/main/resources/META-INF/resources/org.richfaces/common/rich= faces-base-component.js#L193]: {code} function getOptions() { return this.options; } {code} This would need to be introduced in both, RF 4.3, RF 4.5 and RF 5.0. = was (Author: lfryc): I came to conclusion that we should not need JSON parsing at all - in R= ichFaces bridgeBase, we can retrieve options using following jQuery UI widg= et factory invocation: {code} $(element).pluginName("optionName"); {code} Unfortunately, RichFaces 4 BaseComponent doesn't allow to retrieve options = at runtime. I suggest to introduce method {{getOptions}} to [{{BaseComponent}}|https://= github.com/richfaces/richfaces/blob/0855b61d55533ad9c1b31555f222608911806cb= 0/framework/src/main/resources/META-INF/resources/org.richfaces/common/rich= faces-base-component.js#L193]: {code} function getOptions() { return this.options; } {code} This would need to be introduced in both, RF 4.3, RF 4.5 and RF 5.0. = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3067633950246814414==-- From jira-events at lists.jboss.org Tue Nov 12 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============1505084041301563435==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 12 Nov 2013 03:14:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============1505084041301563435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13323: ----------------------------- Attachment: RF-13323-SessionScoped.png RF-13323-ViewScoped.png = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1505084041301563435==-- From jira-events at lists.jboss.org Tue Nov 12 03:18:06 2013 Content-Type: multipart/mixed; boundary="===============4213369988911176954==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13338) Page Fragments: change package from .tests.page.fragments.impl to .fragments Date: Tue, 12 Nov 2013 03:18:06 -0500 Message-ID: In-Reply-To: JIRA.12524852.1384244259425@jira02.app.mwc.hst.phx2.redhat.com --===============4213369988911176954== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13338: ------------------------------- Summary: Page Fragments: change package from .tests.page.fragm= ents.impl to .fragments Key: RF-13338 URL: https://issues.jboss.org/browse/RF-13338 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4213369988911176954==-- From jira-events at lists.jboss.org Tue Nov 12 03:54:07 2013 Content-Type: multipart/mixed; boundary="===============8781680159729163858==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 12 Nov 2013 03:54:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8781680159729163858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922655#com= ment-12922655 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- I tried this by changing the scope of the _FileUploadBean_ with the latest = RF4 showcase on AS 7.1 and EAP 6.1 and uploading the same picture for multi= ple times. = I have noticed, that when the scope was @ViewScoped: * uploaded image preview didn't show, * and encountered an error on the server side: = {code} ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/= showcase].[Faces Servlet]] (http--127.0.0.1-8080-23) Servlet.service() for = servlet Faces Servlet threw exception: java.lang.NullPointerException at com.sun.faces.mgbean.BeanManager$ScopeManager$ViewScopeHandler.getFromS= cope(BeanManager.java:563) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager$ScopeManager.getFromScope(BeanManager.= java:477) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager.getBeanFromScope(BeanManager.java:240)= [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.resolveBean(ManagedBeanELResolve= r.java:242) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.j= ava:116) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELRes= olver.java:176) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELReso= lver.java:203) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.apache.el.parser.AstIdentifier.getValue(AstIdentifier.java:72) [jbo= ssweb-7.0.13.Final.jar:] at org.apache.el.parser.AstValue.getTarget(AstValue.java:94) [jbossweb-7.0= .13.Final.jar:] at org.apache.el.parser.AstValue.invoke(AstValue.java:244) [jbossweb-7.0.1= 3.Final.jar:] at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278= ) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMeth= odExpression.java:39) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java= :50) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpressio= n.java:105) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.j= ava:62) [richfaces-components-ui-4.3.5-20131022.221155-19.jar:4.3.5-SNAPSHO= T] at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapp= erImpl.java:188) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4.3.5-SN= APSHOT] at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Resour= ceHandlerImpl.java:229) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4= .3.5-SNAPSHOT] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} But the list was updated as you can see on the images I've appended here. O= n the images you can also see that: * 2 request were made (bottom left), * scope of the bean (bottom right), = * the updated list (top right) (with or without the image preview). [~bleathem]: there is a problem, but it seems (from the stacktrace) that th= e bug is in MediaOutput(?) and is connected with Showcase sample not the Fi= leUpload component itself. In this case I can not reproduce the bug. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8781680159729163858==-- From jira-events at lists.jboss.org Tue Nov 12 03:56:06 2013 Content-Type: multipart/mixed; boundary="===============3623883038916533151==" MIME-Version: 1.0 From: =?utf-8?q?Fernando_Marin=C3=B2_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 03:56:06 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============3623883038916533151== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922656#comm= ent-12922656 ] = Fernando Marin=C3=B2 commented on RF-4491: ------------------------------------- I'm agree with Kloot Perwee. This s not the same bug as RF-2357, and its st= ill there in 4.3.4 final. Please fix it because is very annoying. = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Assignee: Nick Belaevski > Labels: disabled_selectItem, pickList > > selectItem components have a property 'disabled' to disable selection of = items. The RichFaces component pickList ignores this property. Disabled ite= ms can be selected in the source list and added to the target list. > For documentation of the disabed property see http://java.sun.com/javaee/= javaserverfaces/1.1_01/docs/api/javax/faces/model/SelectItem.html#isDisable= d() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3623883038916533151==-- From jira-events at lists.jboss.org Tue Nov 12 03:56:08 2013 Content-Type: multipart/mixed; boundary="===============7812601043199939049==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 12 Nov 2013 03:56:08 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============7812601043199939049== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922655#com= ment-12922655 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13323 at 11/12/13 3:55 AM: ------------------------------------------------------------ I tried this by changing the scope of the _FileUploadBean_ with the latest = RF4 showcase on AS 7.1 and EAP 6.1 and uploading the same picture for multi= ple times. = I have noticed, that when the scope was @ViewScoped: * uploaded image preview didn't show, * and encountered an error on the server side: = {code} ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/= showcase].[Faces Servlet]] (http--127.0.0.1-8080-23) Servlet.service() for = servlet Faces Servlet threw exception: java.lang.NullPointerException at com.sun.faces.mgbean.BeanManager$ScopeManager$ViewScopeHandler.getFromS= cope(BeanManager.java:563) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager$ScopeManager.getFromScope(BeanManager.= java:477) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager.getBeanFromScope(BeanManager.java:240)= [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.resolveBean(ManagedBeanELResolve= r.java:242) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.j= ava:116) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELRes= olver.java:176) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELReso= lver.java:203) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.apache.el.parser.AstIdentifier.getValue(AstIdentifier.java:72) [jbo= ssweb-7.0.13.Final.jar:] at org.apache.el.parser.AstValue.getTarget(AstValue.java:94) [jbossweb-7.0= .13.Final.jar:] at org.apache.el.parser.AstValue.invoke(AstValue.java:244) [jbossweb-7.0.1= 3.Final.jar:] at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278= ) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMeth= odExpression.java:39) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java= :50) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpressio= n.java:105) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.j= ava:62) [richfaces-components-ui-4.3.5-20131022.221155-19.jar:4.3.5-SNAPSHO= T] at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapp= erImpl.java:188) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4.3.5-SN= APSHOT] at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Resour= ceHandlerImpl.java:229) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4= .3.5-SNAPSHOT] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} But the list was updated as you can see on the images I've appended here. O= n the images you can also see that: * 2 request were made (bottom left), * scope of the bean (bottom right), = * the updated list (top right) (with or without the image preview). [~bleathem]: there is a problem, but it seems (from the stacktrace) that th= e bug is in MediaOutput(or not?) and is connected with Showcase sample not = the FileUpload component itself. In this case I can not reproduce the bug. = was (Author: jstefek): I tried this by changing the scope of the _FileUploadBean_ with the lat= est RF4 showcase on AS 7.1 and EAP 6.1 and uploading the same picture for m= ultiple times. = I have noticed, that when the scope was @ViewScoped: * uploaded image preview didn't show, * and encountered an error on the server side: = {code} ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/= showcase].[Faces Servlet]] (http--127.0.0.1-8080-23) Servlet.service() for = servlet Faces Servlet threw exception: java.lang.NullPointerException at com.sun.faces.mgbean.BeanManager$ScopeManager$ViewScopeHandler.getFromS= cope(BeanManager.java:563) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager$ScopeManager.getFromScope(BeanManager.= java:477) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.mgbean.BeanManager.getBeanFromScope(BeanManager.java:240)= [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.resolveBean(ManagedBeanELResolve= r.java:242) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver.j= ava:116) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELRes= olver.java:176) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELReso= lver.java:203) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.apache.el.parser.AstIdentifier.getValue(AstIdentifier.java:72) [jbo= ssweb-7.0.13.Final.jar:] at org.apache.el.parser.AstValue.getTarget(AstValue.java:94) [jbossweb-7.0= .13.Final.jar:] at org.apache.el.parser.AstValue.invoke(AstValue.java:244) [jbossweb-7.0.1= 3.Final.jar:] at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278= ) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMeth= odExpression.java:39) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java= :50) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpressio= n.java:105) [jsf-impl-2.1.7-jbossorg-2.jar:] at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.j= ava:62) [richfaces-components-ui-4.3.5-20131022.221155-19.jar:4.3.5-SNAPSHO= T] at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapp= erImpl.java:188) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4.3.5-SN= APSHOT] at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(Resour= ceHandlerImpl.java:229) [richfaces-core-impl-4.3.5-20131022.070629-12.jar:4= .3.5-SNAPSHOT] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Conversat= ionPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15= :31] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:1= 72) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmClo= serValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} But the list was updated as you can see on the images I've appended here. O= n the images you can also see that: * 2 request were made (bottom left), * scope of the bean (bottom right), = * the updated list (top right) (with or without the image preview). [~bleathem]: there is a problem, but it seems (from the stacktrace) that th= e bug is in MediaOutput(?) and is connected with Showcase sample not the Fi= leUpload component itself. In this case I can not reproduce the bug. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7812601043199939049==-- From jira-events at lists.jboss.org Tue Nov 12 03:58:06 2013 Content-Type: multipart/mixed; boundary="===============2472414065564455205==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 12 Nov 2013 03:58:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============2472414065564455205== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reassigned RF-13323: -------------------------------- Assignee: Brian Leathem (was: Ji=C5=99=C3=AD =C5=A0tefek) = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Brian Leathem > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2472414065564455205==-- From jira-events at lists.jboss.org Tue Nov 12 04:15:07 2013 Content-Type: multipart/mixed; boundary="===============4798882073051196991==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Tue, 12 Nov 2013 04:15:07 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============4798882073051196991== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13334: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4798882073051196991==-- From jira-events at lists.jboss.org Tue Nov 12 04:19:06 2013 Content-Type: multipart/mixed; boundary="===============6564406029236636544==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Tue, 12 Nov 2013 04:19:06 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============6564406029236636544== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13334: ---------------------------- Sprint: (was: 5.0.0.Alpha2 - Sprint 5) = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6564406029236636544==-- From jira-events at lists.jboss.org Tue Nov 12 04:19:06 2013 Content-Type: multipart/mixed; boundary="===============6363823701465526153==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13338) Page Fragments: change package from .tests.page.fragments.impl to .fragments Date: Tue, 12 Nov 2013 04:19:06 -0500 Message-ID: In-Reply-To: JIRA.12524852.1384244259000@jira02.app.mwc.hst.phx2.redhat.com --===============6363823701465526153== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13338?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13338: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > Page Fragments: change package from .tests.page.fragments.impl to .fragme= nts > -------------------------------------------------------------------------= --- > > Key: RF-13338 > URL: https://issues.jboss.org/browse/RF-13338 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6363823701465526153==-- From jira-events at lists.jboss.org Tue Nov 12 04:21:06 2013 Content-Type: multipart/mixed; boundary="===============7520332296524775482==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13336) Page fragments: get rid of json-simple dependency Date: Tue, 12 Nov 2013 04:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524850.1384243485000@jira02.app.mwc.hst.phx2.redhat.com --===============7520332296524775482== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13336?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13336. ----------------------------- Resolution: Done = > Page fragments: get rid of json-simple dependency > ------------------------------------------------- > > Key: RF-13336 > URL: https://issues.jboss.org/browse/RF-13336 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7520332296524775482==-- From jira-events at lists.jboss.org Tue Nov 12 04:21:06 2013 Content-Type: multipart/mixed; boundary="===============1289542761905413475==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Tue, 12 Nov 2013 04:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549000@jira02.app.mwc.hst.phx2.redhat.com --===============1289542761905413475== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13337?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13337. ----------------------------- Resolution: Done = > Page fragments: get rid of typetools dependency > ----------------------------------------------- > > Key: RF-13337 > URL: https://issues.jboss.org/browse/RF-13337 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1289542761905413475==-- From jira-events at lists.jboss.org Tue Nov 12 04:39:06 2013 Content-Type: multipart/mixed; boundary="===============5456049591938893967==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: ignored API call .setValue('') Date: Tue, 12 Nov 2013 04:39:05 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============5456049591938893967== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922677#com= ment-12922677 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13306: --------------------------------- The patch looks good, we may consider using one of Autocomplete methods to = set the value, but generally initializing the field from the DOM is a right= fix. = > Autocomplete: ignored API call .setValue('') > -------------------------------------------- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5456049591938893967==-- From jira-events at lists.jboss.org Tue Nov 12 04:39:06 2013 Content-Type: multipart/mixed; boundary="===============8932381297721446076==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 04:39:06 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============8932381297721446076== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13306: ---------------------------- Summary: Autocomplete: initialize value from DOM (was: ignored API call= .setValue('')) (was: Autocomplete: ignored API call .setValue('')) = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8932381297721446076==-- From jira-events at lists.jboss.org Tue Nov 12 04:41:06 2013 Content-Type: multipart/mixed; boundary="===============3066867842703673399==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 04:41:05 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============3066867842703673399== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922677#com= ment-12922677 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13306 at 11/12/13 4:39 AM: ----------------------------------------------------------- The patch looks good, we may consider using one of Autocomplete methods to = set the value, but generally initializing the field from the DOM is a right= fix. Btw the issue with {{setValue}} is here: https://github.com/richfaces4/components/blob/master/input/ui/src/main/reso= urces/META-INF/resources/org.richfaces/AutocompleteBase.js#L280 = was (Author: lfryc): The patch looks good, we may consider using one of Autocomplete methods= to set the value, but generally initializing the field from the DOM is a r= ight fix. = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3066867842703673399==-- From jira-events at lists.jboss.org Tue Nov 12 04:41:06 2013 Content-Type: multipart/mixed; boundary="===============3293569762082136647==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 04:41:06 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============3293569762082136647== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922678#com= ment-12922678 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13306: --------------------------------- Considering a small scope of a fix, I suggest to include it in 4.3.5. = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3293569762082136647==-- From jira-events at lists.jboss.org Tue Nov 12 04:41:06 2013 Content-Type: multipart/mixed; boundary="===============7956319099807363484==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 04:41:06 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============7956319099807363484== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13306: ---------------------------- Fix Version/s: 4.3.5 = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3.5 > > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7956319099807363484==-- From jira-events at lists.jboss.org Tue Nov 12 04:41:06 2013 Content-Type: multipart/mixed; boundary="===============3511780400381037574==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 04:41:06 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============3511780400381037574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13306: ------------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Fix For: 4.3.5 > > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3511780400381037574==-- From jira-events at lists.jboss.org Tue Nov 12 04:49:06 2013 Content-Type: multipart/mixed; boundary="===============3725147124293990871==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 04:49:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============3725147124293990871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov updated RF-13292: ------------------------------- Affects Version/s: 5.0.0.Alpha2 = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3725147124293990871==-- From jira-events at lists.jboss.org Tue Nov 12 04:51:07 2013 Content-Type: multipart/mixed; boundary="===============0270735055272275558==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13338) Page Fragments: change package from .tests.page.fragments.impl to .fragments Date: Tue, 12 Nov 2013 04:51:06 -0500 Message-ID: In-Reply-To: JIRA.12524852.1384244259000@jira02.app.mwc.hst.phx2.redhat.com --===============0270735055272275558== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13338?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13338: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Page Fragments: change package from .tests.page.fragments.impl to .fragme= nts > -------------------------------------------------------------------------= --- > > Key: RF-13338 > URL: https://issues.jboss.org/browse/RF-13338 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0270735055272275558==-- From jira-events at lists.jboss.org Tue Nov 12 04:57:06 2013 Content-Type: multipart/mixed; boundary="===============3788678727729994769==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 04:57:05 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============3788678727729994769== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov closed RF-13292. ------------------------------ Resolution: Done = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3788678727729994769==-- From jira-events at lists.jboss.org Tue Nov 12 05:05:06 2013 Content-Type: multipart/mixed; boundary="===============4273290786897286083==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13305) Autocomplete: i must press button twice for popup window Date: Tue, 12 Nov 2013 05:05:05 -0500 Message-ID: In-Reply-To: JIRA.12509249.1383274376000@jira02.app.mwc.hst.phx2.redhat.com --===============4273290786897286083== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13305?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922688#com= ment-12922688 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13305: --------------------------------- This fix generally allows to use AJAX call for populating list of suggestio= ns ({{showPopup()}}) when the current value of an input is empty. I'm fine with that solution. = > Autocomplete: i must press button twice for popup window > -------------------------------------------------------- > > Key: RF-13305 > URL: https://issues.jboss.org/browse/RF-13305 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > All described here https://community.jboss.org/thread/233971 > I try repeat: > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
= > {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on cancel button(img/cancel.png), then after that, if user= clicks on show button(/img/arrow.png) popup not showing, user must clicks = twice on this button. > *This problem shows if i use showButton from rich:autocomplete instead my= show button.* > I think i found a solution of this problem: > Autocomplete.js has this code: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && oldValue !=3D subValue) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > }; = > {code} > for show popup this must be true: = > {code} > oldValue !=3D subValue > {code} > but in this part of code = > oldValue is ''(empty string) and subValue is ''(empty string), > so this condition = > {code} > oldValue !=3D subValue > {code} > return false! > = > i replace this code by this: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && (oldValue !=3D subValue || (oldValue =3D=3D=3D '' && subValue =3D=3D= =3D ''))) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > = > }; = > {code} > so, than oldValue=3D'' and subValue=3D=3D'' callAjax.call will be called = and popup will be showing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4273290786897286083==-- From jira-events at lists.jboss.org Tue Nov 12 05:05:06 2013 Content-Type: multipart/mixed; boundary="===============6656344511967253855==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13305) Autocomplete: i must press button twice for popup window Date: Tue, 12 Nov 2013 05:05:06 -0500 Message-ID: In-Reply-To: JIRA.12509249.1383274376000@jira02.app.mwc.hst.phx2.redhat.com --===============6656344511967253855== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13305?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13305: ---------------------------- Fix Version/s: 4.3.5 = > Autocomplete: i must press button twice for popup window > -------------------------------------------------------- > > Key: RF-13305 > URL: https://issues.jboss.org/browse/RF-13305 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.3.5 > > > All described here https://community.jboss.org/thread/233971 > I try repeat: > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
= > {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on cancel button(img/cancel.png), then after that, if user= clicks on show button(/img/arrow.png) popup not showing, user must clicks = twice on this button. > *This problem shows if i use showButton from rich:autocomplete instead my= show button.* > I think i found a solution of this problem: > Autocomplete.js has this code: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && oldValue !=3D subValue) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > }; = > {code} > for show popup this must be true: = > {code} > oldValue !=3D subValue > {code} > but in this part of code = > oldValue is ''(empty string) and subValue is ''(empty string), > so this condition = > {code} > oldValue !=3D subValue > {code} > return false! > = > i replace this code by this: > {code} > var onChangeValue =3D function (event, value, callback) { = > selectItem.call(this, event); = > = > // value is undefined if called from AutocompleteBase onChange = > var subValue =3D (typeof value =3D=3D "undefined") ? this.__getSu= bValue() : value; = > var oldValue =3D this.value; = > this.value =3D subValue; = > = > if ((this.options.isCachedAjax || !this.options.ajaxMode) && = > this.cache && this.cache.isCached(subValue)) { = > ... = > } else { = > if (event.keyCode =3D=3D rf.KEYS.RETURN || event.type =3D=3D = "click") { = > this.__setInputValue(subValue); = > } = > if (subValue.length >=3D this.options.minChars) { = > if ((this.options.ajaxMode || this.options.lazyClientMode= ) && (oldValue !=3D subValue || (oldValue =3D=3D=3D '' && subValue =3D=3D= =3D ''))) { = > callAjax.call(this, event, callback); = > } = > } else { = > if (this.options.ajaxMode) { = > clearItems.call(this); = > this.__hide(event); = > } = > } = > } = > = > }; = > {code} > so, than oldValue=3D'' and subValue=3D=3D'' callAjax.call will be called = and popup will be showing. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6656344511967253855==-- From jira-events at lists.jboss.org Tue Nov 12 06:19:06 2013 Content-Type: multipart/mixed; boundary="===============8693040781323333249==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Tue, 12 Nov 2013 06:19:05 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087687@jira02.app.mwc.hst.phx2.redhat.com --===============8693040781323333249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13339: -------------------------------- Summary: orderingList: ordered values are reset after submit Key: RF-13339 URL: https://issues.jboss.org/browse/RF-13339 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Priority: Blocker -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8693040781323333249==-- From jira-events at lists.jboss.org Tue Nov 12 06:46:06 2013 Content-Type: multipart/mixed; boundary="===============4243124771539460252==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13300) Page Fragments: refine module dependencies Date: Tue, 12 Nov 2013 06:46:06 -0500 Message-ID: In-Reply-To: JIRA.12509046.1383080055000@jira02.app.mwc.hst.phx2.redhat.com --===============4243124771539460252== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13300?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13300. ----------------------------- Resolution: Done = > Page Fragments: refine module dependencies > ------------------------------------------ > > Key: RF-13300 > URL: https://issues.jboss.org/browse/RF-13300 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > During the review, I have found out we may need to fine module dependenci= es: > https://github.com/richfaces/richfaces/pull/55#issuecomment-27339441 > ---- > {code} > joda-time:2.3 > - DateTime > commons-lang:2.6 > - Validate.isTrue > - StringEscapeUtils.unescapeJava > json-simple:1.1.1 > - JSONParser > org.jodah:typetools:0.3.0 > - TypeResolver.resolveRawArguments > {code} > I'm fine with {{DateTime}}, since it's going to be standardized - even th= ough we may consider making it optional dependency and provide alternative = in form of {{java.util.Date}}. > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4243124771539460252==-- From jira-events at lists.jboss.org Tue Nov 12 06:46:07 2013 Content-Type: multipart/mixed; boundary="===============3988752100593522550==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13338) Page Fragments: change package from .tests.page.fragments.impl to .fragments Date: Tue, 12 Nov 2013 06:46:06 -0500 Message-ID: In-Reply-To: JIRA.12524852.1384244259000@jira02.app.mwc.hst.phx2.redhat.com --===============3988752100593522550== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13338?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13338: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Page Fragments: change package from .tests.page.fragments.impl to .fragme= nts > -------------------------------------------------------------------------= --- > > Key: RF-13338 > URL: https://issues.jboss.org/browse/RF-13338 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3988752100593522550==-- From jira-events at lists.jboss.org Tue Nov 12 06:52:06 2013 Content-Type: multipart/mixed; boundary="===============4234039702844197953==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13338) Page Fragments: change package from .tests.page.fragments.impl to .fragments Date: Tue, 12 Nov 2013 06:52:05 -0500 Message-ID: In-Reply-To: JIRA.12524852.1384244259000@jira02.app.mwc.hst.phx2.redhat.com --===============4234039702844197953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13338?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13338. ----------------------------- Resolution: Done = > Page Fragments: change package from .tests.page.fragments.impl to .fragme= nts > -------------------------------------------------------------------------= --- > > Key: RF-13338 > URL: https://issues.jboss.org/browse/RF-13338 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4234039702844197953==-- From jira-events at lists.jboss.org Tue Nov 12 07:04:06 2013 Content-Type: multipart/mixed; boundary="===============8161900273109322395==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of multiple attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:04:05 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806088@jira02.app.mwc.hst.phx2.redhat.com --===============8161900273109322395== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13340: -------------------------------- Summary: orderingList - setting of multiple attributes does no= t have any effect on the component Key: RF-13340 URL: https://issues.jboss.org/browse/RF-13340 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Assignee: Brian Leathem Fix For: 5.0.0.Alpha2 Setting of these attributes on a {{pickList}} has no effect on the rendered= component (I am trying to group them somehow). *Buttons text* * addAllText * addText * removeAllText * removeText * downBottomText * downText * upText * upTopText *List style* * maxListHeight * minListHeight * style * columnClasses *Other RW options* * switchByClick * switchByDblClick *Callbacks* * onremoveitems * value * valueChangeListener I guess that it is because they are not passed in the [renderer template|ht= tps://github.com/richfaces/richfaces/blob/master/framework/src/main/java/or= g/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8161900273109322395==-- From jira-events at lists.jboss.org Tue Nov 12 07:09:05 2013 Content-Type: multipart/mixed; boundary="===============1241877612903592436==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of multiple attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:09:05 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============1241877612903592436== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13340: ----------------------------- Description: = Setting of these attributes on a {{orderingList}} has no effect on the rend= ered component * style was: Setting of these attributes on a {{pickList}} has no effect on the rendered= component (I am trying to group them somehow). *Buttons text* * addAllText * addText * removeAllText * removeText * downBottomText * downText * upText * upTopText *List style* * maxListHeight * minListHeight * style * columnClasses *Other RW options* * switchByClick * switchByDblClick *Callbacks* * onremoveitems * value * valueChangeListener I guess that it is because they are not passed in the [renderer template|ht= tps://github.com/richfaces/richfaces/blob/master/framework/src/main/java/or= g/richfaces/ui/select/pickList/pickList.template.xml] ? = > orderingList - setting of multiple attributes does not have any effect on= the component > -------------------------------------------------------------------------= -------------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1241877612903592436==-- From jira-events at lists.jboss.org Tue Nov 12 07:09:06 2013 Content-Type: multipart/mixed; boundary="===============2610090478104045293==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:09:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============2610090478104045293== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13340: ----------------------------- Summary: orderingList - setting of some attributes does not have any ef= fect on the component (was: orderingList - setting of multiple attributes = does not have any effect on the component) = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2610090478104045293==-- From jira-events at lists.jboss.org Tue Nov 12 07:11:06 2013 Content-Type: multipart/mixed; boundary="===============3070539250588738228==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:11:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============3070539250588738228== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13340: ----------------------------- Original Estimate: (was: 1 hour) Remaining Estimate: (was: 1 hour) = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3070539250588738228==-- From jira-events at lists.jboss.org Tue Nov 12 07:11:06 2013 Content-Type: multipart/mixed; boundary="===============7252160151273160860==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:11:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============7252160151273160860== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13340: ----------------------------- Assignee: (was: Brian Leathem) = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7252160151273160860==-- From jira-events at lists.jboss.org Tue Nov 12 07:16:06 2013 Content-Type: multipart/mixed; boundary="===============5795202643986125100==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Tue, 12 Nov 2013 07:16:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============5795202643986125100== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13340: ----------------------------- Description: = Setting of these attributes on a {{orderingList}} has no effect on the rend= ered component * style * valueChangeListener was: Setting of these attributes on a {{orderingList}} has no effect on the rend= ered component * style = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style > * valueChangeListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5795202643986125100==-- From jira-events at lists.jboss.org Tue Nov 12 07:22:05 2013 Content-Type: multipart/mixed; boundary="===============7345126183010828732==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Tue, 12 Nov 2013 07:22:05 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============7345126183010828732== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13339: ----------------------------- Fix Version/s: 5.0.0.Alpha2 = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7345126183010828732==-- From jira-events at lists.jboss.org Tue Nov 12 10:11:06 2013 Content-Type: multipart/mixed; boundary="===============0316234710835388858==" MIME-Version: 1.0 From: Robert Siebeck (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11571) rich:extendedDataTable inside rich:collapsiblePanel and Google Chrome 12: dissappearing table Date: Tue, 12 Nov 2013 10:11:06 -0500 Message-ID: In-Reply-To: JIRA.12449805.1319032826000@jira02.app.mwc.hst.phx2.redhat.com --===============0316234710835388858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11571?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922820#com= ment-12922820 ] = Robert Siebeck commented on RF-11571: ------------------------------------- This problem not only occurs within rich:collapsiblePanel but also with ric= h:tabPanel and rich:tab. = > rich:extendedDataTable inside rich:collapsiblePanel and Google Chrome 12:= dissappearing table > -------------------------------------------------------------------------= -------------------- > > Key: RF-11571 > URL: https://issues.jboss.org/browse/RF-11571 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Environment: Google Chrome 12.0.742.112 > Reporter: Jan Papousek > Fix For: 5-Tracking > > Attachments: buggy-richfaces-snapshot.zip, google_chrome12-buggy.= png > > > Using Google Chrome 12, the rich:extendedDataTable disappears sometimes (= see steps to reproduce). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0316234710835388858==-- From jira-events at lists.jboss.org Tue Nov 12 10:11:06 2013 Content-Type: multipart/mixed; boundary="===============8390165230711644882==" MIME-Version: 1.0 From: Robert Siebeck (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11570) rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearing header Date: Tue, 12 Nov 2013 10:11:05 -0500 Message-ID: In-Reply-To: JIRA.12449798.1319031314000@jira02.app.mwc.hst.phx2.redhat.com --===============8390165230711644882== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11570?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922817#com= ment-12922817 ] = Robert Siebeck commented on RF-11570: ------------------------------------- I have the same problem with IE8 and IE9, both in standards and compatibili= ty mode. Could someone please reopen this? = > rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearin= g header > -------------------------------------------------------------------------= -------- > > Key: RF-11570 > URL: https://issues.jboss.org/browse/RF-11570 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Environment: IE 8 (strict mode) > Reporter: Jan Papousek > Attachments: buggy-richfaces-snapshot.zip, ie8_compatibilty-buggy= .png, ie8_strict-buggy.png > > > Using IE 8 in strict mode, the rich:extendedDataTable header disappears s= ometimes (see steps to reproduce). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8390165230711644882==-- From jira-events at lists.jboss.org Tue Nov 12 10:27:06 2013 Content-Type: multipart/mixed; boundary="===============0556330351882139117==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implements AjaxProps Date: Tue, 12 Nov 2013 10:27:05 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969795@jira02.app.mwc.hst.phx2.redhat.com --===============0556330351882139117== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Macko created RF-13341: -------------------------------- Summary: Charts: implements AjaxProps Key: RF-13341 URL: https://issues.jboss.org/browse/RF-13341 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-output Reporter: Luk=C3=A1=C5=A1 Macko Priority: Minor I think AbstractChart should implements AjaxProps since it uses server-side= listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0556330351882139117==-- From jira-events at lists.jboss.org Tue Nov 12 11:25:06 2013 Content-Type: multipart/mixed; boundary="===============2712157263982120017==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Tue, 12 Nov 2013 11:25:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============2712157263982120017== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922867#com= ment-12922867 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13335: --------------------------------- [Agreed on a team meeting|https://community.jboss.org/wiki/RichFacesTeamMee= tingAgenda2013-11-12]: {quote} AGREED: we will expose BaseComponent#getOptions() using defensive copy http= ://api.jquery.com/jQuery.extend/#jQuery-extend-deep-target-object1-objectN = (lfryc, 15:21:38) {quote} = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2712157263982120017==-- From jira-events at lists.jboss.org Tue Nov 12 11:25:06 2013 Content-Type: multipart/mixed; boundary="===============2409907792177978718==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Tue, 12 Nov 2013 11:25:06 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============2409907792177978718== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13334: ---------------------------- Fix Version/s: 5.0.0.Alpha3 (was: 5.0.0.Alpha2) = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2409907792177978718==-- From jira-events at lists.jboss.org Tue Nov 12 11:25:07 2013 Content-Type: multipart/mixed; boundary="===============4889144404023417855==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 Date: Tue, 12 Nov 2013 11:25:06 -0500 Message-ID: In-Reply-To: JIRA.12524778.1384177649000@jira02.app.mwc.hst.phx2.redhat.com --===============4889144404023417855== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13334?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922869#com= ment-12922869 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13334: --------------------------------- [As greed on team meeting|https://community.jboss.org/wiki/RichFacesTeamMee= tingAgenda2013-11-12]: {quote} AGREED: we will leave jQuery UI 1.10+ upgrade for RichWidgets 0.2 (lfryc, 1= 5:27:43) {quote} We don't want to de-stabilize RichFaces 4.5 at this point. = > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4889144404023417855==-- From jira-events at lists.jboss.org Tue Nov 12 11:33:06 2013 Content-Type: multipart/mixed; boundary="===============7401838049238554484==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Tue, 12 Nov 2013 11:33:05 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============7401838049238554484== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922874#com= ment-12922874 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13331: ---------------------------------- I've started to working on moving tests, however there are some problems, t= ests runs in chrome only at the moment. I'll have fix it before moving to t= he framework. = Currently I am not able to run test in sandbox because of the following exc= eption. I understand that sandbox is not priority, so I am thinking: = * should I report this as an issue or = * should I just use workaround and temporary move chartBridge.js to sandbox? {noformat} 16:40:38,682 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http-localhost-127.0.0.1-8080-4) JSF1064: Unable to find or serve resou= rce, bridge/output/chartBridge.js, from library, org.richfaces. 16:40:38,683 SEVERE [javax.enterprise.resource.webcontainer.jsf.application= ] (http-localhost-127.0.0.1-8080-4) Error Rendering View[/examples/events.x= html]: java.lang.reflect.UndeclaredThrowableException at com.sun.proxy.$Proxy68.createResource(Unknown Source) at org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resour= ceFactoryImpl.java:384) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resourc= eFactoryImpl.java:359) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFacto= ryImpl.java:342) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandl= erImpl.java:270) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandl= erImpl.java:280) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRende= rer.java:102) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:87= 5) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeHeadResources(Hea= dRenderer.java:105) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeEnd(HeadRenderer.= java:92) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:87= 5) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) [jbo= ss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(F= aceletViewHandlingStrategy.java:402) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHan= dler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrappe= r.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase= .java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-j= bossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [j= sf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-j= sf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Securi= tyContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Fin= al] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:8= 77) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930)= [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_40] Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.GeneratedMethodAccessor38.invoke(Unknown Source) [:1.7.0_40] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) [rt.jar:1.7.0_40] at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_40] at org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153)= [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] ... 34 more Caused by: java.lang.NullPointerException at org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(R= esourceServletMapping.java:90) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Res= ourceServletMapping.java:83) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(R= esourceServletMapping.java:72) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-SNAPSHOT] at org.richfaces.resource.external.MappedResourceFactoryImpl.createResourc= e(MappedResourceFactoryImpl.java:106) [richfaces-5.0.0-SNAPSHOT.jar:5.0.0-S= NAPSHOT] ... 38 more {noformat} = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7401838049238554484==-- From jira-events at lists.jboss.org Tue Nov 12 11:37:06 2013 Content-Type: multipart/mixed; boundary="===============6740961483883676275==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13333) Charts: click server handlers throws exception Date: Tue, 12 Nov 2013 11:37:06 -0500 Message-ID: In-Reply-To: JIRA.12524764.1384173557000@jira02.app.mwc.hst.phx2.redhat.com --===============6740961483883676275== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13333?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922876#com= ment-12922876 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13333: ---------------------------------- I've created issue https://issues.jboss.org/browse/RF-13341 to discuss if A= bstractChart should implements AjaxProps since it uses server-side listener= s. = > Charts: click server handlers throws exception > ---------------------------------------------- > > Key: RF-13333 > URL: https://issues.jboss.org/browse/RF-13333 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > Steps to reproduce: > 1. open r:chart -> Event handling demo > http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dchar= t&sample=3Devents&skin=3DblueSky > 2. click on one of points on the chart > FAIL: there is an error in the server console > {{NoSuchMethodException: Read method for property 'JSONArray' not found}} > Stack trace: > {code} > 13:37:19,467 SEVERE [javax.enterprise.resource.webcontainer.jsf.applicati= on] (http-localhost-127.0.0.1-8080-1) Error Rendering View[/richfaces/compo= nent-sample.xhtml]: javax.faces.FacesException: Error in conversion Java Ob= ject to JavaScript > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 4) [:] > at org.richfaces.javascript.ScriptUtils.toScript(ScriptUtils.java:241) [= :] > at org.richfaces.context.AjaxDataSerializerImpl.asString(AjaxDataSeriali= zerImpl.java:32) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.renderExtensions= (ExtendedPartialViewContextImpl.java:531) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRe= nderPhase(ExtendedPartialViewContextImpl.java:327) [:] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(E= xtendedPartialViewContextImpl.java:222) [:] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) = [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [j= boss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView= (FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewH= andler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrap= per.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePha= se.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7= -jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) = [jsf-impl-2.1.7-jbossorg-2.jar:] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.render(Persi= stenceLifecycle.java:66) [:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss= -jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(Convers= ationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 = 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.__invoke(StandardContex= tValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.1.1.Final.jar:7.1.1.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.F= inal] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 0) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > Caused by: java.lang.NoSuchMethodException: Read method for property 'JSO= NArray' not found > at org.richfaces.javascript.PropertyUtils.readPropertyValue(PropertyUtil= s.java:74) [:] > at org.richfaces.javascript.ScriptUtils.appendScript(ScriptUtils.java:19= 1) [:] > ... 37 more > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6740961483883676275==-- From jira-events at lists.jboss.org Tue Nov 12 14:50:07 2013 Content-Type: multipart/mixed; boundary="===============2136320721774981082==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 14:50:06 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============2136320721774981082== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-4491: ------------------------------- Assignee: (was: Nick Belaevski) = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: disabled_selectItem, pickList > > selectItem components have a property 'disabled' to disable selection of = items. The RichFaces component pickList ignores this property. Disabled ite= ms can be selected in the source list and added to the target list. > For documentation of the disabed property see http://java.sun.com/javaee/= javaserverfaces/1.1_01/docs/api/javax/faces/model/SelectItem.html#isDisable= d() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2136320721774981082==-- From jira-events at lists.jboss.org Tue Nov 12 14:52:06 2013 Content-Type: multipart/mixed; boundary="===============9192967844242122264==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 14:52:06 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============9192967844242122264== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4491: ------------------------------ Component/s: component-selects = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 3.2.2, 4.3.4 > Reporter: Martin H=C3=B6ller > Labels: disabled_selectItem, pickList > > _f:selectItem_ components have a 'disabled' property that disables the se= lection of items. The RichFaces component _pickList_ ignores this property.= Disabled items can be selected in the source list and added to the target = list. > For documentation of the disabled property see: > https://javaserverfaces.java.net/nonav/docs/2.1/javadocs/javax/faces/mode= l/SelectItem.html#isDisabled() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9192967844242122264==-- From jira-events at lists.jboss.org Tue Nov 12 14:52:06 2013 Content-Type: multipart/mixed; boundary="===============5441996516689973371==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 14:52:06 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============5441996516689973371== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4491: ------------------------------ Fix Version/s: 5.0.0.Alpha3 = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 3.2.2, 4.3.4 > Reporter: Martin H=C3=B6ller > Labels: disabled_selectItem, pickList > Fix For: 5.0.0.Alpha3 > > > _f:selectItem_ components have a 'disabled' property that disables the se= lection of items. The RichFaces component _pickList_ ignores this property.= Disabled items can be selected in the source list and added to the target = list. > For documentation of the disabled property see: > https://javaserverfaces.java.net/nonav/docs/2.1/javadocs/javax/faces/mode= l/SelectItem.html#isDisabled() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5441996516689973371==-- From jira-events at lists.jboss.org Tue Nov 12 14:52:06 2013 Content-Type: multipart/mixed; boundary="===============0651627235041205487==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 14:52:05 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============0651627235041205487== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4491: ------------------------------ Description: = _f:selectItem_ components have a 'disabled' property that disables the sele= ction of items. The RichFaces component _pickList_ ignores this property. D= isabled items can be selected in the source list and added to the target li= st. For documentation of the disabled property see: https://javaserverfaces.java.net/nonav/docs/2.1/javadocs/javax/faces/model/= SelectItem.html#isDisabled() was: selectItem components have a property 'disabled' to disable selection of it= ems. The RichFaces component pickList ignores this property. Disabled items= can be selected in the source list and added to the target list. For documentation of the disabed property see http://java.sun.com/javaee/ja= vaserverfaces/1.1_01/docs/api/javax/faces/model/SelectItem.html#isDisabled() = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: disabled_selectItem, pickList > > _f:selectItem_ components have a 'disabled' property that disables the se= lection of items. The RichFaces component _pickList_ ignores this property.= Disabled items can be selected in the source list and added to the target = list. > For documentation of the disabled property see: > https://javaserverfaces.java.net/nonav/docs/2.1/javadocs/javax/faces/mode= l/SelectItem.html#isDisabled() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0651627235041205487==-- From jira-events at lists.jboss.org Tue Nov 12 14:52:06 2013 Content-Type: multipart/mixed; boundary="===============9005857027070178887==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4491) pickList doesn't honor property 'disabled' of selectItems Date: Tue, 12 Nov 2013 14:52:06 -0500 Message-ID: In-Reply-To: JIRA.12367642.1221658985000@jira02.app.mwc.hst.phx2.redhat.com --===============9005857027070178887== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4491?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4491: ------------------------------ Affects Version/s: 4.3.4 = > pickList doesn't honor property 'disabled' of selectItems > --------------------------------------------------------- > > Key: RF-4491 > URL: https://issues.jboss.org/browse/RF-4491 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2, 4.3.4 > Reporter: Martin H=C3=B6ller > Labels: disabled_selectItem, pickList > > _f:selectItem_ components have a 'disabled' property that disables the se= lection of items. The RichFaces component _pickList_ ignores this property.= Disabled items can be selected in the source list and added to the target = list. > For documentation of the disabled property see: > https://javaserverfaces.java.net/nonav/docs/2.1/javadocs/javax/faces/mode= l/SelectItem.html#isDisabled() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9005857027070178887==-- From jira-events at lists.jboss.org Tue Nov 12 14:58:06 2013 Content-Type: multipart/mixed; boundary="===============3108024914552079162==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implement AjaxProps Date: Tue, 12 Nov 2013 14:58:05 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969000@jira02.app.mwc.hst.phx2.redhat.com --===============3108024914552079162== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13341?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13341: ------------------------------- Summary: Charts: implement AjaxProps (was: Charts: implements AjaxProp= s) = > Charts: implement AjaxProps > --------------------------- > > Key: RF-13341 > URL: https://issues.jboss.org/browse/RF-13341 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Priority: Minor > > I think AbstractChart should implements AjaxProps since it uses server-si= de listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3108024914552079162==-- From jira-events at lists.jboss.org Tue Nov 12 15:21:05 2013 Content-Type: multipart/mixed; boundary="===============4224714770371010950==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implement AjaxProps Date: Tue, 12 Nov 2013 15:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969000@jira02.app.mwc.hst.phx2.redhat.com --===============4224714770371010950== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13341?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922948#com= ment-12922948 ] = Brian Leathem commented on RF-13341: ------------------------------------ [AjaxProps|https://github.com/richfaces/richfaces/blob/master/framework/src= /main/java/org/richfaces/ui/attribute/AjaxProps.java] defines the attribute= s: * execute * render * limitRender * status * data So by implementing this interface, users would be able to initiate an ajax = execute/render from the chart component tag. This would be instead of nest= ing the AJAX behaviour in the chart component to achieve the same results. IMO nesting the ajax behaviour provides a nice encapsulation of the AJAX at= tributes, and I can't see a strong use case for adding this functionality d= irectly into the chart component. [~lukindo] do you have any use cases in mind? = > Charts: implement AjaxProps > --------------------------- > > Key: RF-13341 > URL: https://issues.jboss.org/browse/RF-13341 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Priority: Minor > > I think AbstractChart should implements AjaxProps since it uses server-si= de listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4224714770371010950==-- From jira-events at lists.jboss.org Tue Nov 12 15:23:06 2013 Content-Type: multipart/mixed; boundary="===============3694938272149280578==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Tue, 12 Nov 2013 15:23:05 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============3694938272149280578== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13339: ---------------------------------- Assignee: Brian Leathem = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3694938272149280578==-- From jira-events at lists.jboss.org Tue Nov 12 15:23:06 2013 Content-Type: multipart/mixed; boundary="===============9149292951054853724==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Tue, 12 Nov 2013 15:23:05 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============9149292951054853724== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13340: ---------------------------------- Assignee: Brian Leathem = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style > * valueChangeListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9149292951054853724==-- From jira-events at lists.jboss.org Tue Nov 12 15:27:06 2013 Content-Type: multipart/mixed; boundary="===============3653140639908593627==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Tue, 12 Nov 2013 15:27:05 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549000@jira02.app.mwc.hst.phx2.redhat.com --===============3653140639908593627== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13337?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-13337: -------------------------------- IMO shading is overkill for inclusion of a single class. Let's instead sim= ply copy the source into our source tree (preserving the ASL header) and up= dating the repositories NOTICE.txt: https://github.com/richfaces/richfaces/blob/master/NOTICE.txt = > Page fragments: get rid of typetools dependency > ----------------------------------------------- > > Key: RF-13337 > URL: https://issues.jboss.org/browse/RF-13337 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3653140639908593627==-- From jira-events at lists.jboss.org Tue Nov 12 15:29:05 2013 Content-Type: multipart/mixed; boundary="===============5830142480640301199==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13336) Page fragments: get rid of json-simple dependency Date: Tue, 12 Nov 2013 15:29:05 -0500 Message-ID: In-Reply-To: JIRA.12524850.1384243485000@jira02.app.mwc.hst.phx2.redhat.com --===============5830142480640301199== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13336?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922952#com= ment-12922952 ] = Brian Leathem commented on RF-13336: ------------------------------------ [~lfryc] I cannot find any commits referencing this issue. What code chang= es were involved in resolving this issue? = > Page fragments: get rid of json-simple dependency > ------------------------------------------------- > > Key: RF-13336 > URL: https://issues.jboss.org/browse/RF-13336 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5830142480640301199==-- From jira-events at lists.jboss.org Tue Nov 12 15:31:06 2013 Content-Type: multipart/mixed; boundary="===============7504774211423994650==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Tue, 12 Nov 2013 15:31:05 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============7504774211423994650== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922953#com= ment-12922953 ] = Brian Leathem commented on RF-13331: ------------------------------------ I suggest moving the tests to the framework and mark them with _(a)Category= (Failing.class)_ until they are passing. = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7504774211423994650==-- From jira-events at lists.jboss.org Tue Nov 12 15:33:05 2013 Content-Type: multipart/mixed; boundary="===============2011287534267766182==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Tue, 12 Nov 2013 15:33:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============2011287534267766182== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13330: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2011287534267766182==-- From jira-events at lists.jboss.org Tue Nov 12 15:54:07 2013 Content-Type: multipart/mixed; boundary="===============5745284025491409150==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 12 Nov 2013 15:54:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============5745284025491409150== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13323: ---------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek (was: Brian Leathem) Just to be sure, can you try with a standalone sample? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5745284025491409150==-- From jira-events at lists.jboss.org Tue Nov 12 15:57:05 2013 Content-Type: multipart/mixed; boundary="===============1033299861838511035==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 15:57:05 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============1033299861838511035== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922959#com= ment-12922959 ] = Brian Leathem commented on RF-13306: ------------------------------------ [~alixey] are you interested in preparing a github pull request with this f= ix? https://community.jboss.org/wiki/GuideToUsePullRequestsWithGitHubAndJIRA You'll have to first sign the CLA: https://cla.jboss.org/index.seam = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Fix For: 4.3.5 > > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1033299861838511035==-- From jira-events at lists.jboss.org Tue Nov 12 16:01:06 2013 Content-Type: multipart/mixed; boundary="===============1735856289483546248==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 16:01:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============1735856289483546248== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922961#com= ment-12922961 ] = Brian Leathem commented on RF-13292: ------------------------------------ Nice work [~michpetrov]. We should backport this fix to 4.3.4 (re-opening). = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Assignee: Michal Petrov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1735856289483546248==-- From jira-events at lists.jboss.org Tue Nov 12 16:01:06 2013 Content-Type: multipart/mixed; boundary="===============9218974774734900061==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 16:01:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============9218974774734900061== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-13292: -------------------------------- Assignee: (was: Michal Petrov) = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Fix For: 4.5-Tracking > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9218974774734900061==-- From jira-events at lists.jboss.org Tue Nov 12 16:01:06 2013 Content-Type: multipart/mixed; boundary="===============6998115685089121732==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 16:01:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============6998115685089121732== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922961#com= ment-12922961 ] = Brian Leathem edited comment on RF-13292 at 11/12/13 3:59 PM: -------------------------------------------------------------- Nice work [~michpetrov]. We should backport this fix to 4.3.x (re-opening). = was (Author: bleathem): Nice work [~michpetrov]. We should backport this fix to 4.3.4 (re-open= ing). = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Fix For: 4.3.5 > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6998115685089121732==-- From jira-events at lists.jboss.org Tue Nov 12 16:01:06 2013 Content-Type: multipart/mixed; boundary="===============2397523383486520878==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13292) Autocomplete: up and down arrow keys not working in Opera! Date: Tue, 12 Nov 2013 16:01:06 -0500 Message-ID: In-Reply-To: JIRA.12508918.1383023336000@jira02.app.mwc.hst.phx2.redhat.com --===============2397523383486520878== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13292?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13292: ------------------------------- Fix Version/s: 4.3.5 (was: 4.5-Tracking) = > Autocomplete: up and down arrow keys not working in Opera! > ---------------------------------------------------------- > > Key: RF-13292 > URL: https://issues.jboss.org/browse/RF-13292 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha2 > Reporter: alexey plotnikov > Fix For: 4.3.5 > > > Hello, i use Richfaces 4.3.4.Final. Up and down arrow keys not working(ig= noring) for Autocomplete component in Opera. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2397523383486520878==-- From jira-events at lists.jboss.org Tue Nov 12 16:03:06 2013 Content-Type: multipart/mixed; boundary="===============7051597106303712198==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11570) rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearing header Date: Tue, 12 Nov 2013 16:03:06 -0500 Message-ID: In-Reply-To: JIRA.12449798.1319031314000@jira02.app.mwc.hst.phx2.redhat.com --===============7051597106303712198== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11570?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-11570: -------------------------------- = > rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearin= g header > -------------------------------------------------------------------------= -------- > > Key: RF-11570 > URL: https://issues.jboss.org/browse/RF-11570 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Environment: IE 8 (strict mode) > Reporter: Jan Papousek > Attachments: buggy-richfaces-snapshot.zip, ie8_compatibilty-buggy= .png, ie8_strict-buggy.png > > > Using IE 8 in strict mode, the rich:extendedDataTable header disappears s= ometimes (see steps to reproduce). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7051597106303712198==-- From jira-events at lists.jboss.org Tue Nov 12 16:18:06 2013 Content-Type: multipart/mixed; boundary="===============7147014877888899808==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11570) rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearing header Date: Tue, 12 Nov 2013 16:18:06 -0500 Message-ID: In-Reply-To: JIRA.12449798.1319031314000@jira02.app.mwc.hst.phx2.redhat.com --===============7147014877888899808== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11570?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11570: ------------------------------- Fix Version/s: 5-Tracking = > rich:extendedDataTable inside rich:collapsiblePanel and IE 8: disappearin= g header > -------------------------------------------------------------------------= -------- > > Key: RF-11570 > URL: https://issues.jboss.org/browse/RF-11570 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.1.0.Milestone3 > Environment: IE 8 (strict mode) > Reporter: Jan Papousek > Fix For: 5-Tracking > > Attachments: buggy-richfaces-snapshot.zip, ie8_compatibilty-buggy= .png, ie8_strict-buggy.png > > > Using IE 8 in strict mode, the rich:extendedDataTable header disappears s= ometimes (see steps to reproduce). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7147014877888899808==-- From jira-events at lists.jboss.org Tue Nov 12 22:47:05 2013 Content-Type: multipart/mixed; boundary="===============4703210620631995997==" MIME-Version: 1.0 From: alexey plotnikov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13306) Autocomplete: initialize value from DOM (was: ignored API call .setValue('')) Date: Tue, 12 Nov 2013 22:47:05 -0500 Message-ID: In-Reply-To: JIRA.12509251.1383279199000@jira02.app.mwc.hst.phx2.redhat.com --===============4703210620631995997== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13306?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12922995#com= ment-12922995 ] = alexey plotnikov commented on RF-13306: --------------------------------------- Brian, i'll try do it today. = > Autocomplete: initialize value from DOM (was: ignored API call .setValue(= '')) > -------------------------------------------------------------------------= ---- > > Key: RF-13306 > URL: https://issues.jboss.org/browse/RF-13306 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Fix For: 4.3.5 > > > All described here https://community.jboss.org/thread/233973 > I have this autocomplete component: > {code} > = > = > = > = > = >
= > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.re= alName}" id=3D"provider-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeProvider(ev= ent.target)" style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.prov= iderName}" > = > = > = > = = > = > = > = > = > = > = > = > alt=3D""/> = > onclick=3D"#{rich:component('provider-suggestion= ')}.hidePopup();#{rich:component('provider-suggestion')}.setValue('');autoc= ompleteChangeProvider(null);" = > alt=3D"#{messages['pages.clear']}" title=3D"#{me= ssages['pages.clear']}"/> = > = >
> {code} > as you can see, i don't use showButton=3D"true", because i need another f= unctionality, i need erase input text before show popup window. > I use JavaScript function "autocompleteChangeProvider" for extract select= ed id. > I use separate button(/img/cancel.png) for erase input text, as you can s= ee this function just use Richfaces API. > = > And a problem: > if autocomplete.providerName not null and not empty(in rich:autocomplete)= and user clicks on show button(/img/arrow.png) than input text not erasing= , but i called #{rich:component('provider-suggestion')}.setValue('') !!! > = > I think i found a solution > AutocompleteBase.js has this code: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D ""; = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > as you can see this.currentValue =3D "" so JS thinks that this.currentVal= ue=3D"" so currentValue equal new value("" - empty string), so nothing happ= ens. > i replace this code by this: > {code} > rf.ui.AutocompleteBase =3D function(componentId, selectId, fieldId, optio= ns) { = > // call constructor of parent class = > $super.constructor.call(this, componentId); = > this.selectId =3D selectId; = > this.fieldId =3D fieldId; = > this.options =3D $.extend({}, defaultOptions, options); = > this.namespace =3D this.namespace || "." + rf.Event.createNamespa= ce(this.name, this.selectId); = > this.currentValue =3D $(rf.getDomElement(fieldId)).val(); = > this.tempValue =3D this.getValue(); = > this.isChanged =3D this.tempValue.length !=3D 0; = > bindEventHandlers.call(this); = > }; > {code} > and it works! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4703210620631995997==-- From jira-events at lists.jboss.org Wed Nov 13 02:50:06 2013 Content-Type: multipart/mixed; boundary="===============7854309046452070698==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 02:50:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============7854309046452070698== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13323: ----------------------------- Attachment: RF-13323.zip Attached simple project. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7854309046452070698==-- From jira-events at lists.jboss.org Wed Nov 13 03:12:06 2013 Content-Type: multipart/mixed; boundary="===============3729219960367649497==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 03:12:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============3729219960367649497== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923021#com= ment-12923021 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13323 at 11/13/13 3:11 AM: ------------------------------------------------------------ I've attached here a simple project with 2 samples, one is using @SessionSc= oped and the second @ViewScoped bean. Both backing beans work correctly. Tr= ied it on GlassFish 3.1.2.2, AS 7.1 with Chrome 30 and Firefox 25. So unles= s [~wish79] could give us a sample project, i cannot reproduce it. ---- But one thing I've noticed, when you place _fileUpload_ in the ajax rendere= d _outputPanel_ just like this: {code} {code} and you will upload a file, then the components list of uploaded files disa= ppears after each upload (doesn't matter which backing bean is used). [~ble= athem] is this an intention? Or should we file an issue? = was (Author: jstefek): I've attached here a simple project with 2 samples, one is using @Sessi= onScoped and the second @ViewScoped bean. Both backing beans work correctly= . Tried it on GlassFish 3.1.2.2, AS 7.1 with Chrome 30 and Firefox 25. So u= nless [~wish79] could give us a sample project, i cannot reproduce it. ---- But one thing I've noticed, when you place _fileUpload_ in the ajax rendere= d _outputPanel_ just like this: {code} {code} and you will upload a file, then the components list of uploaded/toBeUpload= ed files disappears after each upload (doesn't matter which backing bean is= used). [~bleathem] is this an intention? Or should we file an issue? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3729219960367649497==-- From jira-events at lists.jboss.org Wed Nov 13 03:12:06 2013 Content-Type: multipart/mixed; boundary="===============0768600801381335358==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 03:12:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============0768600801381335358== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923021#com= ment-12923021 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- I've attached here a simple project with 2 samples, one is using @SessionSc= oped and the second @ViewScoped bean. Both backing beans work correctly. Tr= ied it on GlassFish 3.1.2.2, AS 7.1 with Chrome 30 and Firefox 25. So unles= s [~wish79] could give us a sample project, i cannot reproduce it. ---- But one thing I've noticed, when you place _fileUpload_ in the ajax rendere= d _outputPanel_ just like this: {code} {code} and you will upload a file, then the components list of uploaded/toBeUpload= ed files disappears after each upload (doesn't matter which backing bean is= used). [~bleathem] is this an intention? Or should we file an issue? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0768600801381335358==-- From jira-events at lists.jboss.org Wed Nov 13 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============2339418315592843978==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 03:14:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============2339418315592843978== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923021#com= ment-12923021 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13323 at 11/13/13 3:13 AM: ------------------------------------------------------------ I've attached here a simple project with 2 samples, one is using @SessionSc= oped and the second @ViewScoped bean. Both samples work correctly. Tried it= on GlassFish 3.1.2.2, AS 7.1 with Chrome 30 and Firefox 25. So unless [~wi= sh79] could give us a sample project, i cannot reproduce it. ---- But one thing I've noticed, when you place _fileUpload_ in the ajax rendere= d _outputPanel_ just like this: {code} {code} and you will upload a file, then the components list of uploaded files disa= ppears after each upload (doesn't matter which backing bean is used). [~ble= athem] is this an intention? Or should we file an issue? = was (Author: jstefek): I've attached here a simple project with 2 samples, one is using @Sessi= onScoped and the second @ViewScoped bean. Both backing beans work correctly= . Tried it on GlassFish 3.1.2.2, AS 7.1 with Chrome 30 and Firefox 25. So u= nless [~wish79] could give us a sample project, i cannot reproduce it. ---- But one thing I've noticed, when you place _fileUpload_ in the ajax rendere= d _outputPanel_ just like this: {code} {code} and you will upload a file, then the components list of uploaded files disa= ppears after each upload (doesn't matter which backing bean is used). [~ble= athem] is this an intention? Or should we file an issue? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2339418315592843978==-- From jira-events at lists.jboss.org Wed Nov 13 03:28:06 2013 Content-Type: multipart/mixed; boundary="===============2759002063863095038==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implement AjaxProps Date: Wed, 13 Nov 2013 03:28:06 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969000@jira02.app.mwc.hst.phx2.redhat.com --===============2759002063863095038== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13341?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923026#com= ment-12923026 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13341: --------------------------------- Brian, the problem here is that Chart implements server-side handlers, as a response to the listener, you want to do something (e.g. re-render par= t of the page). ---- In fact, the component supports those attributes as of now: https://github.com/richfaces/richfaces/blob/94a1060abddf5512eed89e17518a125= 027b802bf/framework/src/main/java/org/richfaces/context/RenderComponentCall= back.java#L77 The ExtendedPartialViewContextImpl collects Ajax-attributes from Activator = component (component that activated the request) without asking whether com= ponent implements AjaxProps. (Note that this may also be a bug) = > Charts: implement AjaxProps > --------------------------- > > Key: RF-13341 > URL: https://issues.jboss.org/browse/RF-13341 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Priority: Minor > > I think AbstractChart should implements AjaxProps since it uses server-si= de listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2759002063863095038==-- From jira-events at lists.jboss.org Wed Nov 13 03:32:06 2013 Content-Type: multipart/mixed; boundary="===============1537003588340957540==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13336) Page fragments: get rid of json-simple dependency Date: Wed, 13 Nov 2013 03:32:05 -0500 Message-ID: In-Reply-To: JIRA.12524850.1384243485000@jira02.app.mwc.hst.phx2.redhat.com --===============1537003588340957540== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13336?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923028#com= ment-12923028 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13336: --------------------------------- I used the parent issue (RF-13300) to link commits. This issue will be fully resolved with RF-13335 = > Page fragments: get rid of json-simple dependency > ------------------------------------------------- > > Key: RF-13336 > URL: https://issues.jboss.org/browse/RF-13336 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > {{JSONParser}} seems to be necessary (even though we don;t use it extensi= vely yet), but I would favor standard APIs in form of [JSR-353|https://json= p.java.net/index.html]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1537003588340957540==-- From jira-events at lists.jboss.org Wed Nov 13 03:34:06 2013 Content-Type: multipart/mixed; boundary="===============7862429294064943824==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Wed, 13 Nov 2013 03:34:05 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============7862429294064943824== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923030#com= ment-12923030 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13331: --------------------------------- Lukas, a first problem is caused by bridgeBase.js renamed to bridge-base.js. The second issue is more interesting as it is relevant to newly introduced = programatic Resource Mapping. Could you please report that separately with a link to reproducer / steps t= o reproduce? = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7862429294064943824==-- From jira-events at lists.jboss.org Wed Nov 13 08:02:06 2013 Content-Type: multipart/mixed; boundary="===============1729796573506474085==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13342) archetype-simpleapp: facelet with name 'title' is not defined in template, but it is used in the sample Date: Wed, 13 Nov 2013 08:02:05 -0500 Message-ID: In-Reply-To: JIRA.12524983.1384347681433@jira02.app.mwc.hst.phx2.redhat.com --===============1729796573506474085== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13342: -------------------------------- Summary: archetype-simpleapp: facelet with name 'title' is not= defined in template, but it is used in the sample Key: RF-13342 URL: https://issues.jboss.org/browse/RF-13342 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype Affects Versions: 5.0.0.Alpha1, 4.3.4 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Assignee: Ji=C5=99=C3=AD =C5=A0tefek Priority: Trivial -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1729796573506474085==-- From jira-events at lists.jboss.org Wed Nov 13 09:50:06 2013 Content-Type: multipart/mixed; boundary="===============3171086791986553556==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Wed, 13 Nov 2013 09:50:06 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============3171086791986553556== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13327: ----------------------------- Description: = Setting of these attributes on a {{pickList}} has no effect on the rendered= component (I am trying to group them somehow). *Buttons text* * addAllText * addText * removeAllText * removeText * downBottomText * downText * upText * upTopText *List style* * maxListHeight * minListHeight * style * columnClasses *Other RW options* * switchByClick * switchByDblClick *Callbacks* * onremoveitems * onadditems * value * valueChangeListener I guess that it is because they are not passed in the [renderer template|ht= tps://github.com/richfaces/richfaces/blob/master/framework/src/main/java/or= g/richfaces/ui/select/pickList/pickList.template.xml] ? was: Setting of these attributes on a {{pickList}} has no effect on the rendered= component (I am trying to group them somehow). *Buttons text* * addAllText * addText * removeAllText * removeText * downBottomText * downText * upText * upTopText *List style* * maxListHeight * minListHeight * style * columnClasses *Other RW options* * switchByClick * switchByDblClick *Callbacks* * onremoveitems * value * valueChangeListener I guess that it is because they are not passed in the [renderer template|ht= tps://github.com/richfaces/richfaces/blob/master/framework/src/main/java/or= g/richfaces/ui/select/pickList/pickList.template.xml] ? = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3171086791986553556==-- From jira-events at lists.jboss.org Wed Nov 13 10:17:06 2013 Content-Type: multipart/mixed; boundary="===============5524933166620083476==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13287) rich:extendedDataTable column resizing with ajax loading not working properly Date: Wed, 13 Nov 2013 10:17:06 -0500 Message-ID: In-Reply-To: JIRA.12508686.1382616678000@jira02.app.mwc.hst.phx2.redhat.com --===============5524933166620083476== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13287?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13287: ---------------------------------- Assignee: Michal Petrov = > rich:extendedDataTable column resizing with ajax loading not working prop= erly > -------------------------------------------------------------------------= ---- > > Key: RF-13287 > URL: https://issues.jboss.org/browse/RF-13287 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Glassfish 3.1.2.2, Mojarra 2.1.26, IE10, IE8, Chrome= 30, > Reporter: Andreas G > Assignee: Michal Petrov > Labels: testcase_provided > Fix For: 5-Tracking > > > In a rich:extendedDataTable with ajax loading turned on: When you resize = a column and scroll down (load data), the size of the columns reset to thei= r original value. Only the header keeps its size. The header and the data a= re not matching anymore. > Reproducible in the 4.3.4 showcase! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5524933166620083476==-- From jira-events at lists.jboss.org Wed Nov 13 10:17:06 2013 Content-Type: multipart/mixed; boundary="===============5605559641779931111==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Wed, 13 Nov 2013 10:17:06 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549000@jira02.app.mwc.hst.phx2.redhat.com --===============5605559641779931111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13337?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923219#com= ment-12923219 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13337: --------------------------------- Committed: https://github.com/richfaces/richfaces/commit/bdcb987dcbf27bd923= b59982b6c86b668d7db07d = > Page fragments: get rid of typetools dependency > ----------------------------------------------- > > Key: RF-13337 > URL: https://issues.jboss.org/browse/RF-13337 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5605559641779931111==-- From jira-events at lists.jboss.org Wed Nov 13 10:17:06 2013 Content-Type: multipart/mixed; boundary="===============7964245797722883228==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13337) Page fragments: get rid of typetools dependency Date: Wed, 13 Nov 2013 10:17:05 -0500 Message-ID: In-Reply-To: JIRA.12524851.1384243549000@jira02.app.mwc.hst.phx2.redhat.com --===============7964245797722883228== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13337?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13337. ----------------------------- Resolution: Done = > Page fragments: get rid of typetools dependency > ----------------------------------------------- > > Key: RF-13337 > URL: https://issues.jboss.org/browse/RF-13337 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I believe {{TypeResolver}} can be re-written from scratch, but since it's= one-class ASL dependency, we might consider [shading it|http://maven.apach= e.org/plugins/maven-shade-plugin/]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7964245797722883228==-- From jira-events at lists.jboss.org Wed Nov 13 10:33:06 2013 Content-Type: multipart/mixed; boundary="===============4232847641738448304==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Wed, 13 Nov 2013 10:33:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============4232847641738448304== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923225#com= ment-12923225 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13335 at 11/13/13 10:31 AM: ------------------------------------------------------------ The {{options}} variable is directly exposed on a component object as follo= ws: {code} RichFaces.component("j_idt143:j_idt147").options {code} = was (Author: lfryc): The options variable is directly exposed on a component object as follo= ws: {code} RichFaces.component("j_idt143:j_idt147").options {code} = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4232847641738448304==-- From jira-events at lists.jboss.org Wed Nov 13 10:33:06 2013 Content-Type: multipart/mixed; boundary="===============8825943877330869474==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Wed, 13 Nov 2013 10:33:06 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============8825943877330869474== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923225#com= ment-12923225 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13335: --------------------------------- The options variable is directly exposed on a component object as follows: {code} RichFaces.component("j_idt143:j_idt147").options {code} = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8825943877330869474==-- From jira-events at lists.jboss.org Wed Nov 13 10:41:06 2013 Content-Type: multipart/mixed; boundary="===============5041071880452783695==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:41:05 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============5041071880452783695== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923233#com= ment-12923233 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- We need to remove {{getJsonValue()}} methods() = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5041071880452783695==-- From jira-events at lists.jboss.org Wed Nov 13 10:41:06 2013 Content-Type: multipart/mixed; boundary="===============8250284321518291512==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:41:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============8250284321518291512== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13343: ---------------------------- Component/s: qe = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8250284321518291512==-- From jira-events at lists.jboss.org Wed Nov 13 10:41:06 2013 Content-Type: multipart/mixed; boundary="===============5422767548675685286==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:41:05 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195077@jira02.app.mwc.hst.phx2.redhat.com --===============5422767548675685286== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13343: ------------------------------- Summary: Page Fragments: Re-implement setupFragmentFromWidget(= ) methods using component options access Key: RF-13343 URL: https://issues.jboss.org/browse/RF-13343 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D As we have discussed in RF-13335, we have two options available for accessi= ng component options: * component uses {{BaseComponent}} (RF4 components) {code} RichFaces.component("j_idt108").options {code} * component uses {{jQuery UI Widget Factory}} (RF5 components) {code} $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option",= "autoFocus") {code} We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5422767548675685286==-- From jira-events at lists.jboss.org Wed Nov 13 10:43:06 2013 Content-Type: multipart/mixed; boundary="===============4736247942783456961==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:43:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============4736247942783456961== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923235#com= ment-12923235 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13343 at 11/13/13 10:42 AM: ------------------------------------------------------------ I think we can leave this option unsupported and re-implement it once it is= needed by Framework/Metamer tests, wdyt [~ppitonak]? = was (Author: lfryc): I think we can leave this option unsupported and re-implement it once i= t is needed by QE, wdyt [~ppitonak]? = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4736247942783456961==-- From jira-events at lists.jboss.org Wed Nov 13 10:43:06 2013 Content-Type: multipart/mixed; boundary="===============6685948826121087450==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:43:05 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============6685948826121087450== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923234#com= ment-12923234 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- Note that Page Fragments can be used without {{setupFragmentFromWidget()}} = method, it just makes Page Fragment use configuration-less. = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6685948826121087450==-- From jira-events at lists.jboss.org Wed Nov 13 10:43:06 2013 Content-Type: multipart/mixed; boundary="===============5851684700010506519==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 10:43:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============5851684700010506519== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923235#com= ment-12923235 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- I think we can leave this option unsupported and re-implement it once it is= needed by QE, wdyt [~ppitonak]? = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5851684700010506519==-- From jira-events at lists.jboss.org Wed Nov 13 10:45:07 2013 Content-Type: multipart/mixed; boundary="===============1747098852579890352==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13335) Page fragments: get rid of commons-lang dependency Date: Wed, 13 Nov 2013 10:45:07 -0500 Message-ID: In-Reply-To: JIRA.12524849.1384243427000@jira02.app.mwc.hst.phx2.redhat.com --===============1747098852579890352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13335?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923236#com= ment-12923236 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13335: --------------------------------- I have opened RF-13343 to address this issue. = > Page fragments: get rid of commons-lang dependency > -------------------------------------------------- > > Key: RF-13335 > URL: https://issues.jboss.org/browse/RF-13335 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > I didn't found reason to leave {{Validate.isTrue}} - this should be repla= ced by more verbose but dependency free code. > I did some googling for alternatives to {{StringEscapeUtils.unescapeJava}= } and found out few [suggestions for dependency free Java-unescaping|http:/= /stackoverflow.com/questions/3537706/howto-unescape-a-java-string-literal-i= n-java]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1747098852579890352==-- From jira-events at lists.jboss.org Wed Nov 13 10:51:06 2013 Content-Type: multipart/mixed; boundary="===============3299515355435994271==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13342) archetype-simpleapp: facelet with name 'title' is not defined in template, but it is used in the sample Date: Wed, 13 Nov 2013 10:51:06 -0500 Message-ID: In-Reply-To: JIRA.12524983.1384347681000@jira02.app.mwc.hst.phx2.redhat.com --===============3299515355435994271== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13342?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13342: ---------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > archetype-simpleapp: facelet with name 'title' is not defined in template= , but it is used in the sample > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-13342 > URL: https://issues.jboss.org/browse/RF-13342 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Trivial > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3299515355435994271==-- From jira-events at lists.jboss.org Wed Nov 13 10:51:06 2013 Content-Type: multipart/mixed; boundary="===============4849142677329413453==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13342) archetype-simpleapp: facelet with name 'title' is not defined in template, but it is used in the sample Date: Wed, 13 Nov 2013 10:51:05 -0500 Message-ID: In-Reply-To: JIRA.12524983.1384347681000@jira02.app.mwc.hst.phx2.redhat.com --===============4849142677329413453== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13342?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13342: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Ji=C5=99=C3=AD =C5=A0tefek) = > archetype-simpleapp: facelet with name 'title' is not defined in template= , but it is used in the sample > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-13342 > URL: https://issues.jboss.org/browse/RF-13342 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4849142677329413453==-- From jira-events at lists.jboss.org Wed Nov 13 10:53:06 2013 Content-Type: multipart/mixed; boundary="===============3120497021096353315==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13342) archetype-simpleapp: facelet with name 'title' is not defined in template, but it is used in the sample Date: Wed, 13 Nov 2013 10:53:06 -0500 Message-ID: In-Reply-To: JIRA.12524983.1384347681000@jira02.app.mwc.hst.phx2.redhat.com --===============3120497021096353315== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13342?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923238#com= ment-12923238 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13342: --------------------------------- You are right, we could either use {{title}} in the page, or better, use {{= }}. = > archetype-simpleapp: facelet with name 'title' is not defined in template= , but it is used in the sample > -------------------------------------------------------------------------= ------------------------------ > > Key: RF-13342 > URL: https://issues.jboss.org/browse/RF-13342 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Trivial > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3120497021096353315==-- From jira-events at lists.jboss.org Wed Nov 13 14:39:06 2013 Content-Type: multipart/mixed; boundary="===============1467746171068560770==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implement AjaxProps Date: Wed, 13 Nov 2013 14:39:06 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969000@jira02.app.mwc.hst.phx2.redhat.com --===============1467746171068560770== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13341?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923284#com= ment-12923284 ] = Brian Leathem commented on RF-13341: ------------------------------------ What's the advantage of the chart component implementing server-side events= instead of simply relying on nested ajax behaviours? Are server-side list= eners that common a use case that the user benefits from the cluttered API? = > Charts: implement AjaxProps > --------------------------- > > Key: RF-13341 > URL: https://issues.jboss.org/browse/RF-13341 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Priority: Minor > > I think AbstractChart should implements AjaxProps since it uses server-si= de listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1467746171068560770==-- From jira-events at lists.jboss.org Wed Nov 13 15:17:05 2013 Content-Type: multipart/mixed; boundary="===============3939720957959521827==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 13 Nov 2013 15:17:05 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============3939720957959521827== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923289#com= ment-12923289 ] = Brian Leathem commented on RF-13343: ------------------------------------ Why not use the JSON library already shipped with RichFaces? https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/json/ = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3939720957959521827==-- From jira-events at lists.jboss.org Wed Nov 13 15:21:06 2013 Content-Type: multipart/mixed; boundary="===============8572130007869256226==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 15:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8572130007869256226== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923290#com= ment-12923290 ] = Brian Leathem commented on RF-13323: ------------------------------------ Thanks for the investigations [~jstefek]. Please file a new issue addressi= ng the nesting of a fileUpload component in a ajaxRendered outputPanel. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8572130007869256226==-- From jira-events at lists.jboss.org Wed Nov 13 15:21:06 2013 Content-Type: multipart/mixed; boundary="===============6690973453550989346==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 15:21:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============6690973453550989346== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13323. -------------------------------- Resolution: Cannot Reproduce Bug = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6690973453550989346==-- From jira-events at lists.jboss.org Wed Nov 13 15:21:06 2013 Content-Type: multipart/mixed; boundary="===============8261451566357494504==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 13 Nov 2013 15:21:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8261451566357494504== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923291#com= ment-12923291 ] = Brian Leathem commented on RF-13323: ------------------------------------ [~wish79] feel free to re-open this issue with instruction on how to reprod= uce. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8261451566357494504==-- From jira-events at lists.jboss.org Wed Nov 13 23:44:05 2013 Content-Type: multipart/mixed; boundary="===============5161172242013533180==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Wed, 13 Nov 2013 23:44:05 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============5161172242013533180== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923362#com= ment-12923362 ] = Brian Leathem commented on RF-13325: ------------------------------------ Is this different than the RichFaces 4 picklist behaviour? From the jQuery= docs this is the expected behaviour for onmouseout: {quote} mouseout fires when the pointer moves out of the child element as well {quote} Note: There is the _mouseleave_ jQuery event that we could expose as well. = This may be more useful. = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5161172242013533180==-- From jira-events at lists.jboss.org Wed Nov 13 23:46:06 2013 Content-Type: multipart/mixed; boundary="===============8495979333667766938==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Wed, 13 Nov 2013 23:46:05 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============8495979333667766938== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13325: ---------------------------------- Assignee: Juraj H=C3=BAska (was: Brian Leathem) = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8495979333667766938==-- From jira-events at lists.jboss.org Thu Nov 14 01:02:06 2013 Content-Type: multipart/mixed; boundary="===============2509583885517293365==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 01:02:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============2509583885517293365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923373#com= ment-12923373 ] = Brian Leathem commented on RF-13327: ------------------------------------ _maxListHeight_ and _minListHeight_ work for me. Note: you must include th= e units in the string, eg: "200px". If this is a change in behaviour, plea= se file a new issue and we can discussion a resolution there. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2509583885517293365==-- From jira-events at lists.jboss.org Thu Nov 14 01:02:06 2013 Content-Type: multipart/mixed; boundary="===============3136784412928564144==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 01:02:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============3136784412928564144== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923372#com= ment-12923372 ] = Brian Leathem commented on RF-13327: ------------------------------------ Corrected the pick and order buttons' text. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3136784412928564144==-- From jira-events at lists.jboss.org Thu Nov 14 01:08:06 2013 Content-Type: multipart/mixed; boundary="===============8392763504433381925==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 01:08:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============8392763504433381925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923374#com= ment-12923374 ] = Brian Leathem commented on RF-13327: ------------------------------------ _columnClasses_ works for me with a space separated list. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8392763504433381925==-- From jira-events at lists.jboss.org Thu Nov 14 02:52:06 2013 Content-Type: multipart/mixed; boundary="===============2432414023264084200==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 02:52:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============2432414023264084200== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Mohammad Weshah updated RF-13323: --------------------------------- Attachment: TestRichFacesWebProject.war = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2432414023264084200==-- From jira-events at lists.jboss.org Thu Nov 14 02:56:05 2013 Content-Type: multipart/mixed; boundary="===============7232488701279204809==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 02:56:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============7232488701279204809== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923394#com= ment-12923394 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- Sorry for being delay , please find the attached war file , please add your= jar file ,and test the following URL : http://localhost:8888/TestRichFacesWebProject/fileu/addDepartment.xhtml i test it on view scope it is not work. Regards Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7232488701279204809==-- From jira-events at lists.jboss.org Thu Nov 14 03:12:06 2013 Content-Type: multipart/mixed; boundary="===============1058931813495957932==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13281) orderingList: ordering button's text overflows the button on Firefox Date: Thu, 14 Nov 2013 03:12:06 -0500 Message-ID: In-Reply-To: JIRA.12508466.1382449117000@jira02.app.mwc.hst.phx2.redhat.com --===============1058931813495957932== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13281?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13281. -------------------------------- Resolution: Done Resolved upstream in richwidgets. = > orderingList: ordering button's text overflows the button on Firefox > -------------------------------------------------------------------- > > Key: RF-13281 > URL: https://issues.jboss.org/browse/RF-13281 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Environment: RichFaces 5.0.0-SNAPSHOT > Firefox 24 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Attachments: OL.png > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The ordering button's text overflows the button. > Works in Chrome. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1058931813495957932==-- From jira-events at lists.jboss.org Thu Nov 14 03:21:06 2013 Content-Type: multipart/mixed; boundary="===============6028216926391456074==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 03:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============6028216926391456074== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13327. -------------------------------- Resolution: Done [~jhuska] if the value change listener still does not work, please file a n= ew issue for it. All other attributes are expected to be working now. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6028216926391456074==-- From jira-events at lists.jboss.org Thu Nov 14 03:25:06 2013 Content-Type: multipart/mixed; boundary="===============5797656978849024844==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13299) Page Fragments: added license headers to all sources Date: Thu, 14 Nov 2013 03:25:05 -0500 Message-ID: In-Reply-To: JIRA.12509045.1383079873000@jira02.app.mwc.hst.phx2.redhat.com --===============5797656978849024844== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13299?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13299. -------------------------------- Resolution: Done = > Page Fragments: added license headers to all sources > ---------------------------------------------------- > > Key: RF-13299 > URL: https://issues.jboss.org/browse/RF-13299 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Issue mentioned during impl review: > https://github.com/richfaces/richfaces/pull/55 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5797656978849024844==-- From jira-events at lists.jboss.org Thu Nov 14 03:28:06 2013 Content-Type: multipart/mixed; boundary="===============7616229986475403157==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Thu, 14 Nov 2013 03:28:06 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============7616229986475403157== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13326. -------------------------------- Resolution: Done = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7616229986475403157==-- From jira-events at lists.jboss.org Thu Nov 14 03:36:06 2013 Content-Type: multipart/mixed; boundary="===============7565502806959391847==" MIME-Version: 1.0 From: Pavel Slegr (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13172) rich:toolbarGroup location="right" doesn't work if toolbarGroup location="left" contains not rendered values Date: Thu, 14 Nov 2013 03:36:06 -0500 Message-ID: In-Reply-To: JIRA.12500222.1378479644000@jira02.app.mwc.hst.phx2.redhat.com --===============7565502806959391847== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13172?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavel Slegr reassigned RF-13172: -------------------------------- Assignee: Pavel Slegr = > rich:toolbarGroup location=3D"right" doesn't work if toolbarGroup locatio= n=3D"left" contains not rendered values > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-13172 > URL: https://issues.jboss.org/browse/RF-13172 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.3.3 > Reporter: Sergey Zubarev > Assignee: Pavel Slegr > Labels: low_hanging_fruit > Fix For: 5-Tracking > > > {code} > > > > > > > > > > ... > {code} > In this case location=3D"right" doesn't work : it displayed left. When I = remove rendered=3D"false" from btn3 all works fine. > Html debug shows, that code produced one extra element in colgroup tag wh= en using rendered=3D"false". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7565502806959391847==-- From jira-events at lists.jboss.org Thu Nov 14 03:42:06 2013 Content-Type: multipart/mixed; boundary="===============6515930983673159477==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Thu, 14 Nov 2013 03:42:06 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============6515930983673159477== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923409#com= ment-12923409 ] = Juraj H=C3=BAska commented on RF-13325: ---------------------------------- It is the same in RF4 pickList. Should I crete JIRA for {{mouseleave}} ? = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6515930983673159477==-- From jira-events at lists.jboss.org Thu Nov 14 03:42:06 2013 Content-Type: multipart/mixed; boundary="===============6633636137445613202==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Thu, 14 Nov 2013 03:42:06 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============6633636137445613202== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923409#com= ment-12923409 ] = Juraj H=C3=BAska edited comment on RF-13325 at 11/14/13 3:41 AM: ------------------------------------------------------------ It is the same in RF4 pickList. Should I create JIRA for {{mouseleave}} ? = was (Author: jhuska): It is the same in RF4 pickList. Should I crete JIRA for {{mouseleave}} ? = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6633636137445613202==-- From jira-events at lists.jboss.org Thu Nov 14 03:42:06 2013 Content-Type: multipart/mixed; boundary="===============0885621425920464347==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Thu, 14 Nov 2013 03:42:06 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============0885621425920464347== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13325: ----------------------------- Assignee: Brian Leathem (was: Juraj H=C3=BAska) = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0885621425920464347==-- From jira-events at lists.jboss.org Thu Nov 14 04:08:06 2013 Content-Type: multipart/mixed; boundary="===============5087095812649624214==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13344) pickList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 04:08:05 -0500 Message-ID: In-Reply-To: JIRA.12525076.1384420028296@jira02.app.mwc.hst.phx2.redhat.com --===============5087095812649624214== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13344: -------------------------------- Summary: pickList - maxListHeight & minListHeight need to have= set units along with number to work Key: RF-13344 URL: https://issues.jboss.org/browse/RF-13344 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska {{pickList}} attributes: * {{minListHeight}} and {{maxListHeight}} need to have set units along with the number value (e.g. 200px) in order to= work correctly. In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5087095812649624214==-- From jira-events at lists.jboss.org Thu Nov 14 04:10:07 2013 Content-Type: multipart/mixed; boundary="===============1045958126372990717==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 04:10:07 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============1045958126372990717== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923423#com= ment-12923423 ] = Juraj H=C3=BAska commented on RF-13327: ---------------------------------- Created RF-13344 for {{maxListHeight}} and {{minListHeight}}, as it is diff= erent than in RF4. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1045958126372990717==-- From jira-events at lists.jboss.org Thu Nov 14 04:14:06 2013 Content-Type: multipart/mixed; boundary="===============8335327410822028582==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 04:14:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8335327410822028582== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923426#com= ment-12923426 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- Hi [~wish79], I can't deploy the _war_ without a manipulation. Could you, please, attach = a simple and buildable project with sources, so I can check them? The best = way could be using [richfaces archetypes|https://github.com/richfaces/richf= aces-archetypes/tree/4.3.x/simpleapp]. Thanks, js = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8335327410822028582==-- From jira-events at lists.jboss.org Thu Nov 14 04:36:06 2013 Content-Type: multipart/mixed; boundary="===============3898393276356502624==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13345) FileUpload: behaves incorrectly when placed in ajax rendered outputPanel Date: Thu, 14 Nov 2013 04:36:06 -0500 Message-ID: In-Reply-To: JIRA.12525080.1384421762314@jira02.app.mwc.hst.phx2.redhat.com --===============3898393276356502624== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13345: -------------------------------- Summary: FileUpload: behaves incorrectly when placed in ajax r= endered outputPanel Key: RF-13345 URL: https://issues.jboss.org/browse/RF-13345 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 5.0.0.Alpha1, 4.3.4 Environment: EAP 6.1 Chrome 30, Firefox 22 Reporter: Ji=C5=99=C3=AD =C5=A0tefek When fileUpload is placed in ajaxRendered outputPanel, just like this: {code} {code} then it behaves incorrectly. With RF 5: the list of uploaded/to upload files is reset after each upload. With RF 4: * cannot manipulate with item(s) which was firstly uploaded * the upload button is not rendered after first upload performed, but you c= an still add files and manipulate with them (delete them) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3898393276356502624==-- From jira-events at lists.jboss.org Thu Nov 14 04:44:07 2013 Content-Type: multipart/mixed; boundary="===============4017855204758445111==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13345) FileUpload: behaves incorrectly when placed in ajax rendered outputPanel Date: Thu, 14 Nov 2013 04:44:07 -0500 Message-ID: In-Reply-To: JIRA.12525080.1384421762000@jira02.app.mwc.hst.phx2.redhat.com --===============4017855204758445111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13345?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13345: ----------------------------- Attachment: RF-13345-RF5-reproducer.zip RF-13345-RF4-reproducer.zip attached reproducers = > FileUpload: behaves incorrectly when placed in ajax rendered outputPanel > ------------------------------------------------------------------------ > > Key: RF-13345 > URL: https://issues.jboss.org/browse/RF-13345 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: EAP 6.1 > Chrome 30, Firefox 22 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Attachments: RF-13345-RF4-reproducer.zip, RF-13345-RF5-reproducer= .zip > > > When fileUpload is placed in ajaxRendered outputPanel, just like this: > {code} > > > > {code} > then it behaves incorrectly. > With RF 5: > the list of uploaded/to upload files is reset after each upload. > With RF 4: > * cannot manipulate with item(s) which was firstly uploaded > * the upload button is not rendered after first upload performed, but you= can still add files and manipulate with them (delete them) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4017855204758445111==-- From jira-events at lists.jboss.org Thu Nov 14 05:06:06 2013 Content-Type: multipart/mixed; boundary="===============9054415486752762294==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Thu, 14 Nov 2013 05:06:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============9054415486752762294== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923468#com= ment-12923468 ] = Pavol Pitonak commented on RF-13343: ------------------------------------ [~jhuska], [~jstefek], do we currently use setupFragmentFromWidget() in our test suite? = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9054415486752762294==-- From jira-events at lists.jboss.org Thu Nov 14 05:23:07 2013 Content-Type: multipart/mixed; boundary="===============6968446882804495393==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 05:23:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============6968446882804495393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923479#com= ment-12923479 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- I attached the sources but without the jar file, please check. Note: Appserver Jboss 7.1 Thanks Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6968446882804495393==-- From jira-events at lists.jboss.org Thu Nov 14 05:23:07 2013 Content-Type: multipart/mixed; boundary="===============7415650016238353875==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 05:23:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============7415650016238353875== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Mohammad Weshah updated RF-13323: --------------------------------- Attachment: TestRichFacesWebProject.rar = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7415650016238353875==-- From jira-events at lists.jboss.org Thu Nov 14 05:23:07 2013 Content-Type: multipart/mixed; boundary="===============2115770336565792970==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 05:23:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============2115770336565792970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923479#com= ment-12923479 ] = Mohammad Weshah edited comment on RF-13323 at 11/14/13 5:22 AM: ---------------------------------------------------------------- Hi JS, I attached the sources but without the jar file, please check. Note: Appserver Jboss 7.1 Thanks Wish79 = was (Author: wish79): I attached the sources but without the jar file, please check. Note: Appserver Jboss 7.1 Thanks Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png,= RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2115770336565792970==-- From jira-events at lists.jboss.org Thu Nov 14 05:29:09 2013 Content-Type: multipart/mixed; boundary="===============1171425677151255226==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13287) rich:extendedDataTable column resizing with ajax loading not working properly Date: Thu, 14 Nov 2013 05:29:09 -0500 Message-ID: In-Reply-To: JIRA.12508686.1382616678000@jira02.app.mwc.hst.phx2.redhat.com --===============1171425677151255226== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13287?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov resolved RF-13287. -------------------------------- Fix Version/s: 4.3.5 (was: 5-Tracking) Resolution: Done = > rich:extendedDataTable column resizing with ajax loading not working prop= erly > -------------------------------------------------------------------------= ---- > > Key: RF-13287 > URL: https://issues.jboss.org/browse/RF-13287 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Glassfish 3.1.2.2, Mojarra 2.1.26, IE10, IE8, Chrome= 30, > Reporter: Andreas G > Assignee: Michal Petrov > Labels: testcase_provided > Fix For: 4.3.5 > > > In a rich:extendedDataTable with ajax loading turned on: When you resize = a column and scroll down (load data), the size of the columns reset to thei= r original value. Only the header keeps its size. The header and the data a= re not matching anymore. > Reproducible in the 4.3.4 showcase! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1171425677151255226==-- From jira-events at lists.jboss.org Thu Nov 14 05:51:06 2013 Content-Type: multipart/mixed; boundary="===============5092431119550260533==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 05:51:06 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194831@jira02.app.mwc.hst.phx2.redhat.com --===============5092431119550260533== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13346: -------------------------------- Summary: orderingList - maxListHeight & minListHeight need to = have set units along with number to work Key: RF-13346 URL: https://issues.jboss.org/browse/RF-13346 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek {{pickList}} attributes: * {{minListHeight}} and {{maxListHeight}} need to have set units along with the number value (e.g. 200px) in order to= work correctly. In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5092431119550260533==-- From jira-events at lists.jboss.org Thu Nov 14 05:53:06 2013 Content-Type: multipart/mixed; boundary="===============1365626461644113703==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Thu, 14 Nov 2013 05:53:06 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336096@jira02.app.mwc.hst.phx2.redhat.com --===============1365626461644113703== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13347: -------------------------------- Summary: pickList: switchByDblClick does not work Key: RF-13347 URL: https://issues.jboss.org/browse/RF-13347 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does not= work. Note that {{switchByClick}} works as expected. It seems that attribute is set in render template. I can not found any ment= ion in pick list bridge if that can be the case ? (there is no mention of {= {switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1365626461644113703==-- From jira-events at lists.jboss.org Thu Nov 14 06:09:06 2013 Content-Type: multipart/mixed; boundary="===============1299299271665138197==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13290) Push framework tests fail after upgrade to 1.0.17 (probably Warp issue) Date: Thu, 14 Nov 2013 06:09:06 -0500 Message-ID: In-Reply-To: JIRA.12508820.1382713860000@jira02.app.mwc.hst.phx2.redhat.com --===============1299299271665138197== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13290?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923503#com= ment-12923503 ] = Pavol Pitonak commented on RF-13290: ------------------------------------ No, we didn't run them for Alpha1 release but we plan to do it for all foll= owing releases. = > Push framework tests fail after upgrade to 1.0.17 (probably Warp issue) > ----------------------------------------------------------------------- > > Key: RF-13290 > URL: https://issues.jboss.org/browse/RF-13290 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, tests - functional = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > The push is correctly using 'long-polling' technique, > the request is sent, but the response is never sent back, > that's why I believe the Warp server-side handling fails. > ---- > Note that I have tried to upgrade to 1.0.18 and it didn't help. > ---- > I'm marking those tests as {{Failing}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1299299271665138197==-- From jira-events at lists.jboss.org Thu Nov 14 06:17:06 2013 Content-Type: multipart/mixed; boundary="===============0196005839887198815==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 06:17:06 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============0196005839887198815== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923517#com= ment-12923517 ] = Juraj H=C3=BAska commented on RF-13327: ---------------------------------- Created RF-13347 for not working {{switchByDblClick}}. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0196005839887198815==-- From jira-events at lists.jboss.org Thu Nov 14 06:45:07 2013 Content-Type: multipart/mixed; boundary="===============7329414250906381692==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Thu, 14 Nov 2013 06:45:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============7329414250906381692== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923533#com= ment-12923533 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13331: ---------------------------------- The second issue was probably also related to renamed resources. I renamed = bridgeBase.js and chartBridge.js to correct names and now I am not able to = reproduce the issue. = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7329414250906381692==-- From jira-events at lists.jboss.org Thu Nov 14 07:11:06 2013 Content-Type: multipart/mixed; boundary="===============3531436863668766497==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Thu, 14 Nov 2013 07:11:06 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019684@jira02.app.mwc.hst.phx2.redhat.com --===============3531436863668766497== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13348: -------------------------------- Summary: pickList - columnClass attribute behaves differently = than in RF4 Key: RF-13348 URL: https://issues.jboss.org/browse/RF-13348 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: Suppose a {{pickList}}, which items consist from _three_ columns. * if you set {{collumnClass}} to: {{foo bar}}, then first column has class = {{foo}}, the second one {{bar}} * if you set it to {{foo, bar}}, then the first column has class {{foo,bar}= } - expected In *RF4*, it was different though: * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is descr= ibed in VDL doc: bq. Assigns one or more space-separated CSS class names to the columns of t= he table. If the CSS class names are comma-separated, each class will be as= signed to a particular column in the order they follow in the attribute. If= you have less class names than columns, the class will be applied to every= n-fold column where n is the order in which the class is listed in the att= ribute. If there are more class names than columns, the overflow ones are i= gnored. The way how it worked in RF4 seems more reasonable for me. What is your opi= nion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3531436863668766497==-- From jira-events at lists.jboss.org Thu Nov 14 07:43:06 2013 Content-Type: multipart/mixed; boundary="===============6553499645600845956==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 07:43:05 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============6553499645600845956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13346: ---------------------------------- Assignee: Michal Petrov = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6553499645600845956==-- From jira-events at lists.jboss.org Thu Nov 14 07:55:06 2013 Content-Type: multipart/mixed; boundary="===============5421005083914669541==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 07:55:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============5421005083914669541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13323: ----------------------------- Attachment: RF-13323-2.zip = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5421005083914669541==-- From jira-events at lists.jboss.org Thu Nov 14 08:17:06 2013 Content-Type: multipart/mixed; boundary="===============1672910305312002630==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 08:17:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============1672910305312002630== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923598#com= ment-12923598 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- Sorry, just now I've noticed that you have upgraded JSF version of your con= tainer. I'll try that with your version. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1672910305312002630==-- From jira-events at lists.jboss.org Thu Nov 14 08:17:06 2013 Content-Type: multipart/mixed; boundary="===============8423390229472442827==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 08:17:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8423390229472442827== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923597#com= ment-12923597 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- [~bleathem], I have found that the issue with MediaOutput, mentioned in [th= is comment|https://issues.jboss.org/browse/RF-13323?focusedCommentId=3D1292= 2655&page=3Dcom.atlassian.jira.plugin.system.issuetabpanels:comment-tabpane= l#comment-12922655], is already reported here -- [RF-11585|https://issues.j= boss.org/browse/RF-11585]. [~wish79], sorry, I still can't reproduce it. Got the same result, which yo= u can see on screenshots. = I've attached another maven project from archetypes with your code. Could you try it? Just build with maven (_mvn package_) and deploy on conta= iner and open http://localhost:8080/RF13323/ . = = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8423390229472442827==-- From jira-events at lists.jboss.org Thu Nov 14 08:19:05 2013 Content-Type: multipart/mixed; boundary="===============7074849730302293623==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Thu, 14 Nov 2013 08:19:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============7074849730302293623== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923599#com= ment-12923599 ] = Juraj H=C3=BAska commented on RF-13327: ---------------------------------- All other attributes (value change listener as well), are working now. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7074849730302293623==-- From jira-events at lists.jboss.org Thu Nov 14 08:39:06 2013 Content-Type: multipart/mixed; boundary="===============0569533228967436311==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Thu, 14 Nov 2013 08:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============0569533228967436311== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923605#com= ment-12923605 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- Brian, we don't need any JSON parsing, that's I'm advocating avoiding JSON = library. The RichFaces component bootstrap is not even strict JSON, so I consider th= e implementation quite fragile. = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0569533228967436311==-- From jira-events at lists.jboss.org Thu Nov 14 08:41:06 2013 Content-Type: multipart/mixed; boundary="===============0857605977062312385==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 08:41:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============0857605977062312385== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923608#com= ment-12923608 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- [~wish79] what version of JSF-API are you using? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0857605977062312385==-- From jira-events at lists.jboss.org Thu Nov 14 08:55:06 2013 Content-Type: multipart/mixed; boundary="===============3184779406052304282==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 08:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============3184779406052304282== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923614#com= ment-12923614 ] = Michal Petrov commented on RF-13346: ------------------------------------ The issue is with jQuery, and it's strange that it's not being handled. The= problem is here: {code} _setHeightMin: function(height) { this.selectList.find('.scroll-box').css('min-height', height); } {code} it doesn't work when height is just a number in string form, i.e. * {{200}} - works * {{"200px"}} - works * {{"200"}} - does not work I'm guessing in RichWidgets the value is autocast to number, but in CDK str= ing will remain a string. This will be an issue for every component. I will= look for a workaround but I think the easiest way is to keep a list of opt= ions for each component and and parse them in the Bridge. = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3184779406052304282==-- From jira-events at lists.jboss.org Thu Nov 14 09:09:06 2013 Content-Type: multipart/mixed; boundary="===============7797049444199146481==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:09:05 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============7797049444199146481== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923614#com= ment-12923614 ] = Michal Petrov edited comment on RF-13346 at 11/14/13 9:08 AM: -------------------------------------------------------------- The issue is with jQuery, and it's strange that it's not being handled. The= problem is here: {code} _setHeightMin: function(height) { this.selectList.find('.scroll-box').css('min-height', height); } {code} it doesn't work when height is just a number in string form, i.e. * {{200}} - works * {{"200px"}} - works * {{"200"}} - does not work; yet it works for {{height}} I'm guessing in RichWidgets the value is autocast to number, but in CDK str= ing will remain a string. This will be an issue for every component. I will= look for a workaround but I think the easiest way is to keep a list of opt= ions for each component and and parse them in the Bridge. = was (Author: michpetrov): The issue is with jQuery, and it's strange that it's not being handled.= The problem is here: {code} _setHeightMin: function(height) { this.selectList.find('.scroll-box').css('min-height', height); } {code} it doesn't work when height is just a number in string form, i.e. * {{200}} - works * {{"200px"}} - works * {{"200"}} - does not work I'm guessing in RichWidgets the value is autocast to number, but in CDK str= ing will remain a string. This will be an issue for every component. I will= look for a workaround but I think the easiest way is to keep a list of opt= ions for each component and and parse them in the Bridge. = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7797049444199146481==-- From jira-events at lists.jboss.org Thu Nov 14 09:15:08 2013 Content-Type: multipart/mixed; boundary="===============8752104752001747041==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:15:08 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============8752104752001747041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923623#com= ment-12923623 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13346: ---------------------------------- Hi [~mpetrov], here is the [widget issue|https://github.com/richwidgets/ric= hwidgets/issues/75]. = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8752104752001747041==-- From jira-events at lists.jboss.org Thu Nov 14 09:15:09 2013 Content-Type: multipart/mixed; boundary="===============9045964456650577892==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:15:08 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============9045964456650577892== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923623#com= ment-12923623 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13346 at 11/14/13 9:14 AM: ------------------------------------------------------------ Hi [~michpetrov], here is the [widget issue|https://github.com/richwidgets/= richwidgets/issues/75]. = was (Author: jstefek): Hi [~mpetrov], here is the [widget issue|https://github.com/richwidgets= /richwidgets/issues/75]. = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9045964456650577892==-- From jira-events at lists.jboss.org Thu Nov 14 09:19:06 2013 Content-Type: multipart/mixed; boundary="===============1900673471692909364==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Thu, 14 Nov 2013 09:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============1900673471692909364== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923625#com= ment-12923625 ] = Juraj H=C3=BAska commented on RF-13348: ---------------------------------- Now I can see that it is similar to https://github.com/richwidgets/richwidgets/issues/124 Should be this one closed as it is expected with JSF 2.1 ? = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1900673471692909364==-- From jira-events at lists.jboss.org Thu Nov 14 09:31:08 2013 Content-Type: multipart/mixed; boundary="===============5187237490044394555==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:31:08 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============5187237490044394555== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923640#com= ment-12923640 ] = Michal Petrov edited comment on RF-13346 at 11/14/13 9:30 AM: -------------------------------------------------------------- Ah right, we have two tracking systems now :) = was (Author: michpetrov): Ah right, we have two tracking system now :) = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5187237490044394555==-- From jira-events at lists.jboss.org Thu Nov 14 09:31:08 2013 Content-Type: multipart/mixed; boundary="===============3304835309512122813==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:31:08 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============3304835309512122813== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923640#com= ment-12923640 ] = Michal Petrov commented on RF-13346: ------------------------------------ Ah right, we have two tracking system now :) = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3304835309512122813==-- From jira-events at lists.jboss.org Thu Nov 14 09:33:08 2013 Content-Type: multipart/mixed; boundary="===============0030945676291502840==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Thu, 14 Nov 2013 09:33:08 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============0030945676291502840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov updated RF-13346: ------------------------------- Assignee: (was: Michal Petrov) = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0030945676291502840==-- From jira-events at lists.jboss.org Thu Nov 14 13:10:06 2013 Content-Type: multipart/mixed; boundary="===============0643423007699794639==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Thu, 14 Nov 2013 13:10:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============0643423007699794639== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923736#com= ment-12923736 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- as i mention on the Bug attribute 2.1.9 , but i tried it on the default Jb= oss 7.1 API (2.1.7) , same problem. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0643423007699794639==-- From jira-events at lists.jboss.org Thu Nov 14 16:39:06 2013 Content-Type: multipart/mixed; boundary="===============2036239137345965433==" MIME-Version: 1.0 From: Chasidy McMaster (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8275) Memory leak with extended data table after repeated rerender Date: Thu, 14 Nov 2013 16:39:06 -0500 Message-ID: In-Reply-To: JIRA.12402476.1263983958000@jira02.app.mwc.hst.phx2.redhat.com --===============2036239137345965433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8275?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923801#comm= ent-12923801 ] = Chasidy McMaster commented on RF-8275: -------------------------------------- We are also seeing similar behavior in 3.3.3 Final. Has this issue been re= solved? (Restricted to jira-users group) = > Memory leak with extended data table after repeated rerender > ------------------------------------------------------------ > > Key: RF-8275 > URL: https://issues.jboss.org/browse/RF-8275 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 3.3.2.SR1 > Environment: Windows xp and AIX, Firefox and Internet Explorer 7 > Reporter: Manuele Piastra > Assignee: Andrey Markhel > Priority: Critical > Labels: extended_datatable, memory_leak, rerender > Fix For: 3.3.3.CR1 > > Attachments: index.xhtml > > > After each rerender of the extended data table the memory allocated to th= e process iexplorer.exe keeps growing and it is never released. The same te= st with simple datatable doesn't show this problem. > Snippet code used for the test > > > xmlns=3D"http://www.w3.org/1999/xhtml" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > RichFaces DataTable > > > > > > id=3D"finderList" width=3D"200px" > > > > > > > > > > > > > > > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2036239137345965433==-- From jira-events at lists.jboss.org Thu Nov 14 18:45:07 2013 Content-Type: multipart/mixed; boundary="===============8603831017548391397==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-8275) Memory leak with extended data table after repeated rerender Date: Thu, 14 Nov 2013 18:45:07 -0500 Message-ID: In-Reply-To: JIRA.12402476.1263983958000@jira02.app.mwc.hst.phx2.redhat.com --===============8603831017548391397== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8275?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923813#comm= ent-12923813 ] = Brian Leathem commented on RF-8275: ----------------------------------- Do you see this in RichFaces 4? Likely the fix has been applied there. = > Memory leak with extended data table after repeated rerender > ------------------------------------------------------------ > > Key: RF-8275 > URL: https://issues.jboss.org/browse/RF-8275 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 3.3.2.SR1 > Environment: Windows xp and AIX, Firefox and Internet Explorer 7 > Reporter: Manuele Piastra > Assignee: Andrey Markhel > Priority: Critical > Labels: extended_datatable, memory_leak, rerender > Fix For: 3.3.3.CR1 > > Attachments: index.xhtml > > > After each rerender of the extended data table the memory allocated to th= e process iexplorer.exe keeps growing and it is never released. The same te= st with simple datatable doesn't show this problem. > Snippet code used for the test > > > xmlns=3D"http://www.w3.org/1999/xhtml" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > RichFaces DataTable > > > > > > id=3D"finderList" width=3D"200px" > > > > > > > > > > > > > > > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8603831017548391397==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============3896362886635487672==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Thu, 14 Nov 2013 21:52:06 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============3896362886635487672== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13329: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3896362886635487672==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============0773537892100530263==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Thu, 14 Nov 2013 21:52:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============0773537892100530263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13330: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0773537892100530263==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============2544477201868068093==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Thu, 14 Nov 2013 21:52:06 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============2544477201868068093== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13339: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2544477201868068093==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============7342092748772321340==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Thu, 14 Nov 2013 21:52:06 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============7342092748772321340== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13339: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7342092748772321340==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============0354661473271710439==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Thu, 14 Nov 2013 21:52:06 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============0354661473271710439== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13330: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 5 = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0354661473271710439==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============7998451561292078037==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Thu, 14 Nov 2013 21:52:06 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============7998451561292078037== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923831#com= ment-12923831 ] = Brian Leathem commented on RF-13325: ------------------------------------ Let's leave it for a user to request the feature. = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7998451561292078037==-- From jira-events at lists.jboss.org Thu Nov 14 21:52:06 2013 Content-Type: multipart/mixed; boundary="===============0015413570823075511==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Thu, 14 Nov 2013 21:52:05 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============0015413570823075511== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13329: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0015413570823075511==-- From jira-events at lists.jboss.org Thu Nov 14 21:54:06 2013 Content-Type: multipart/mixed; boundary="===============2003430419376857679==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Thu, 14 Nov 2013 21:54:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============2003430419376857679== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13330: ---------------------------------- Assignee: Brian Leathem = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2003430419376857679==-- From jira-events at lists.jboss.org Thu Nov 14 21:54:06 2013 Content-Type: multipart/mixed; boundary="===============6627309804233007949==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Thu, 14 Nov 2013 21:54:06 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============6627309804233007949== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13329: ---------------------------------- Assignee: Brian Leathem = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6627309804233007949==-- From jira-events at lists.jboss.org Thu Nov 14 21:54:06 2013 Content-Type: multipart/mixed; boundary="===============6699348770370747205==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Thu, 14 Nov 2013 21:54:05 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============6699348770370747205== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13325. -------------------------------- Fix Version/s: (was: 5.0.0.Alpha2) Resolution: Rejected = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6699348770370747205==-- From jira-events at lists.jboss.org Thu Nov 14 22:16:06 2013 Content-Type: multipart/mixed; boundary="===============0933443830308852550==" MIME-Version: 1.0 From: alexey plotnikov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13349) a4j:queue must be first child for rich:autocomplete Date: Thu, 14 Nov 2013 22:16:06 -0500 Message-ID: In-Reply-To: JIRA.12525196.1384485297716@jira02.app.mwc.hst.phx2.redhat.com --===============0933443830308852550== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable alexey plotnikov created RF-13349: ------------------------------------- Summary: a4j:queue must be first child for rich:autocomplete Key: RF-13349 URL: https://issues.jboss.org/browse/RF-13349 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 4.3.4 Reporter: alexey plotnikov All described here https://community.jboss.org/message/845845 but i'll repe= at. In this example: {code} = = = = = = = = = {code} a4j:queue - is *ignored!* But here {code} = = = = = = = = = {code} a4j:queue *not ignored*. So a4j:queue must be first child for autocomplete. For another components a4j:queue can be any child(first or last). For example this code: {code} = = = = = {code} *not* ignoring a4j:queue -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0933443830308852550==-- From jira-events at lists.jboss.org Thu Nov 14 22:32:06 2013 Content-Type: multipart/mixed; boundary="===============0389197406639857366==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Thu, 14 Nov 2013 22:32:05 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============0389197406639857366== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13329. -------------------------------- Resolution: Done = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0389197406639857366==-- From jira-events at lists.jboss.org Fri Nov 15 01:03:06 2013 Content-Type: multipart/mixed; boundary="===============2951627032019902625==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Fri, 15 Nov 2013 01:03:05 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============2951627032019902625== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13339. -------------------------------- Fix Version/s: (was: 5.0.0.Alpha2) Resolution: Out of Date This works with the latest master. = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Blocker > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2951627032019902625==-- From jira-events at lists.jboss.org Fri Nov 15 01:05:06 2013 Content-Type: multipart/mixed; boundary="===============7705515636460316408==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Fri, 15 Nov 2013 01:05:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============7705515636460316408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13340: ---------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek (was: Brian Leathem) I suspect this is out of date with recent fixes. [~jstefek] can you please= confirm? = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style > * valueChangeListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7705515636460316408==-- From jira-events at lists.jboss.org Fri Nov 15 01:08:06 2013 Content-Type: multipart/mixed; boundary="===============8369059418428256448==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13349) a4j:queue must be first child for rich:autocomplete Date: Fri, 15 Nov 2013 01:08:05 -0500 Message-ID: In-Reply-To: JIRA.12525196.1384485297000@jira02.app.mwc.hst.phx2.redhat.com --===============8369059418428256448== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13349?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13349: ---------------------------------- Assignee: Pavol Pitonak QE, please verify = > a4j:queue must be first child for rich:autocomplete > --------------------------------------------------- > > Key: RF-13349 > URL: https://issues.jboss.org/browse/RF-13349 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Pavol Pitonak > > All described here https://community.jboss.org/message/845845 but i'll re= peat. > In this example: > {code} > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.realName}" = id=3D"legal-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeLegal(event.target)"= style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.legalName}" = > required=3D"true"> = > = > = > = > = > = > = > = > = > > {code} > a4j:queue - is *ignored!* > But here > {code} > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.realName}" = id=3D"legal-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeLegal(event.target)"= style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.legalName}" = > required=3D"true"> = > = > = > = > = > = > = > = > = > > {code} > a4j:queue *not ignored*. So a4j:queue must be first child for autocomplet= e. > For another components a4j:queue can be any child(first or last). > For example this code: > {code} > = > = > = > = > = > > {code} > *not* ignoring a4j:queue -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8369059418428256448==-- From jira-events at lists.jboss.org Fri Nov 15 01:10:11 2013 Content-Type: multipart/mixed; boundary="===============0997478098094528348==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Fri, 15 Nov 2013 01:10:05 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============0997478098094528348== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923847#com= ment-12923847 ] = Brian Leathem commented on RF-13348: ------------------------------------ Good question [~jhuska]. We have a conflict of compatibilities here. To b= e compatible with RF 4, or compatible with JSF. Would you mind raising thi= s for discussion on richfaces-dev? We'll hash it out there, then come back= and update this issue. = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0997478098094528348==-- From jira-events at lists.jboss.org Fri Nov 15 01:24:06 2013 Content-Type: multipart/mixed; boundary="===============5030059625569529013==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Fri, 15 Nov 2013 01:24:05 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336000@jira02.app.mwc.hst.phx2.redhat.com --===============5030059625569529013== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13347?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923848#com= ment-12923848 ] = Brian Leathem commented on RF-13347: ------------------------------------ It does not work because the default value in the component is true: {code} @Attribute(defaultValue =3D "true") public abstract boolean isSwitchByDblClick(); {code} The cdk does not set the option value if it is equal to the default value. = In this case the default value in the component does not match the default= value in the widget. I'll change the default in the widget to match. I will change the default value in the widget to match. = > pickList: switchByDblClick does not work > ---------------------------------------- > > Key: RF-13347 > URL: https://issues.jboss.org/browse/RF-13347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does n= ot work. > Note that {{switchByClick}} works as expected. > It seems that attribute is set in render template. I can not found any me= ntion in pick list bridge if that can be the case ? (there is no mention of= {{switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5030059625569529013==-- From jira-events at lists.jboss.org Fri Nov 15 01:40:06 2013 Content-Type: multipart/mixed; boundary="===============7574314205725897184==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Fri, 15 Nov 2013 01:40:06 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336000@jira02.app.mwc.hst.phx2.redhat.com --===============7574314205725897184== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13347?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13347: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList: switchByDblClick does not work > ---------------------------------------- > > Key: RF-13347 > URL: https://issues.jboss.org/browse/RF-13347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does n= ot work. > Note that {{switchByClick}} works as expected. > It seems that attribute is set in render template. I can not found any me= ntion in pick list bridge if that can be the case ? (there is no mention of= {{switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7574314205725897184==-- From jira-events at lists.jboss.org Fri Nov 15 01:40:06 2013 Content-Type: multipart/mixed; boundary="===============6087291341521674819==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Fri, 15 Nov 2013 01:40:06 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336000@jira02.app.mwc.hst.phx2.redhat.com --===============6087291341521674819== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13347?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13347. -------------------------------- Resolution: Done = > pickList: switchByDblClick does not work > ---------------------------------------- > > Key: RF-13347 > URL: https://issues.jboss.org/browse/RF-13347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does n= ot work. > Note that {{switchByClick}} works as expected. > It seems that attribute is set in render template. I can not found any me= ntion in pick list bridge if that can be the case ? (there is no mention of= {{switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6087291341521674819==-- From jira-events at lists.jboss.org Fri Nov 15 01:40:06 2013 Content-Type: multipart/mixed; boundary="===============0947613787199565032==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Fri, 15 Nov 2013 01:40:06 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336000@jira02.app.mwc.hst.phx2.redhat.com --===============0947613787199565032== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13347?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13347: ---------------------------------- Assignee: Brian Leathem = > pickList: switchByDblClick does not work > ---------------------------------------- > > Key: RF-13347 > URL: https://issues.jboss.org/browse/RF-13347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > > Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does n= ot work. > Note that {{switchByClick}} works as expected. > It seems that attribute is set in render template. I can not found any me= ntion in pick list bridge if that can be the case ? (there is no mention of= {{switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0947613787199565032==-- From jira-events at lists.jboss.org Fri Nov 15 02:03:06 2013 Content-Type: multipart/mixed; boundary="===============5482166514307546080==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Fri, 15 Nov 2013 02:03:05 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============5482166514307546080== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923853#com= ment-12923853 ] = Brian Leathem commented on RF-13346: ------------------------------------ While in [#75](https://github.com/richwidgets/richwidgets/issues/75#issueco= mment-27821682) we agreed to follow the CSS behaviour and have: # Integer values default to px units # String values require units However, as [~michpetrov] pointed out, all facelet attribute values are str= ings, and so the unit is always required. While I don't advocate changing = the RichWidget behaviour, I do feel we can safely add units in either the j= s bridge, or in the Renderer. I suspect it is most _clean_ to intercept th= e option in the bridge and add the units if they are missing. = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5482166514307546080==-- From jira-events at lists.jboss.org Fri Nov 15 02:05:06 2013 Content-Type: multipart/mixed; boundary="===============2427240591036760867==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13346) orderingList - maxListHeight & minListHeight need to have set units along with number to work Date: Fri, 15 Nov 2013 02:05:06 -0500 Message-ID: In-Reply-To: JIRA.12525089.1384426194000@jira02.app.mwc.hst.phx2.redhat.com --===============2427240591036760867== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13346?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13346: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > orderingList - maxListHeight & minListHeight need to have set units along= with number to work > -------------------------------------------------------------------------= -------------------- > > Key: RF-13346 > URL: https://issues.jboss.org/browse/RF-13346 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2427240591036760867==-- From jira-events at lists.jboss.org Fri Nov 15 02:07:06 2013 Content-Type: multipart/mixed; boundary="===============6198784875591621746==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13345) FileUpload: behaves incorrectly when placed in ajax rendered outputPanel Date: Fri, 15 Nov 2013 02:07:05 -0500 Message-ID: In-Reply-To: JIRA.12525080.1384421762000@jira02.app.mwc.hst.phx2.redhat.com --===============6198784875591621746== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13345?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13345: ------------------------------- Fix Version/s: 5-Tracking = > FileUpload: behaves incorrectly when placed in ajax rendered outputPanel > ------------------------------------------------------------------------ > > Key: RF-13345 > URL: https://issues.jboss.org/browse/RF-13345 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Environment: EAP 6.1 > Chrome 30, Firefox 22 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5-Tracking > > Attachments: RF-13345-RF4-reproducer.zip, RF-13345-RF5-reproducer= .zip > > > When fileUpload is placed in ajaxRendered outputPanel, just like this: > {code} > > > > {code} > then it behaves incorrectly. > With RF 5: > the list of uploaded/to upload files is reset after each upload. > With RF 4: > * cannot manipulate with item(s) which was firstly uploaded > * the upload button is not rendered after first upload performed, but you= can still add files and manipulate with them (delete them) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6198784875591621746==-- From jira-events at lists.jboss.org Fri Nov 15 02:07:06 2013 Content-Type: multipart/mixed; boundary="===============3495053101968620183==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13344) pickList - maxListHeight & minListHeight need to have set units along with number to work Date: Fri, 15 Nov 2013 02:07:05 -0500 Message-ID: In-Reply-To: JIRA.12525076.1384420028000@jira02.app.mwc.hst.phx2.redhat.com --===============3495053101968620183== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13344?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923854#com= ment-12923854 ] = Brian Leathem commented on RF-13344: ------------------------------------ See the discussion in RF-13346. = > pickList - maxListHeight & minListHeight need to have set units along wit= h number to work > -------------------------------------------------------------------------= ---------------- > > Key: RF-13344 > URL: https://issues.jboss.org/browse/RF-13344 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3495053101968620183==-- From jira-events at lists.jboss.org Fri Nov 15 02:07:06 2013 Content-Type: multipart/mixed; boundary="===============8531228141159899374==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13344) pickList - maxListHeight & minListHeight need to have set units along with number to work Date: Fri, 15 Nov 2013 02:07:06 -0500 Message-ID: In-Reply-To: JIRA.12525076.1384420028000@jira02.app.mwc.hst.phx2.redhat.com --===============8531228141159899374== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13344?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13344: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList - maxListHeight & minListHeight need to have set units along wit= h number to work > -------------------------------------------------------------------------= ---------------- > > Key: RF-13344 > URL: https://issues.jboss.org/browse/RF-13344 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8531228141159899374==-- From jira-events at lists.jboss.org Fri Nov 15 02:09:05 2013 Content-Type: multipart/mixed; boundary="===============3016372476303250847==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Fri, 15 Nov 2013 02:09:05 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============3016372476303250847== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923855#com= ment-12923855 ] = Brian Leathem commented on RF-13327: ------------------------------------ Thanks [~jhuska] = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3016372476303250847==-- From jira-events at lists.jboss.org Fri Nov 15 02:13:06 2013 Content-Type: multipart/mixed; boundary="===============1848852438896663224==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13287) rich:extendedDataTable column resizing with ajax loading not working properly Date: Fri, 15 Nov 2013 02:13:06 -0500 Message-ID: In-Reply-To: JIRA.12508686.1382616678000@jira02.app.mwc.hst.phx2.redhat.com --===============1848852438896663224== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13287?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13287: ------------------------------- Labels: needs-qe testcase_provided (was: testcase_provided) = > rich:extendedDataTable column resizing with ajax loading not working prop= erly > -------------------------------------------------------------------------= ---- > > Key: RF-13287 > URL: https://issues.jboss.org/browse/RF-13287 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Glassfish 3.1.2.2, Mojarra 2.1.26, IE10, IE8, Chrome= 30, > Reporter: Andreas G > Assignee: Michal Petrov > Labels: needs-qe, testcase_provided > Fix For: 4.3.5 > > > In a rich:extendedDataTable with ajax loading turned on: When you resize = a column and scroll down (load data), the size of the columns reset to thei= r original value. Only the header keeps its size. The header and the data a= re not matching anymore. > Reproducible in the 4.3.4 showcase! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1848852438896663224==-- From jira-events at lists.jboss.org Fri Nov 15 02:13:06 2013 Content-Type: multipart/mixed; boundary="===============1527181396149471576==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13290) Push framework tests fail after upgrade to 1.0.17 (probably Warp issue) Date: Fri, 15 Nov 2013 02:13:05 -0500 Message-ID: In-Reply-To: JIRA.12508820.1382713860000@jira02.app.mwc.hst.phx2.redhat.com --===============1527181396149471576== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13290?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13290: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Push framework tests fail after upgrade to 1.0.17 (probably Warp issue) > ----------------------------------------------------------------------- > > Key: RF-13290 > URL: https://issues.jboss.org/browse/RF-13290 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll, tests - functional = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > The push is correctly using 'long-polling' technique, > the request is sent, but the response is never sent back, > that's why I believe the Warp server-side handling fails. > ---- > Note that I have tried to upgrade to 1.0.18 and it didn't help. > ---- > I'm marking those tests as {{Failing}}. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1527181396149471576==-- From jira-events at lists.jboss.org Fri Nov 15 02:15:07 2013 Content-Type: multipart/mixed; boundary="===============5560620394595999405==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13287) rich:extendedDataTable column resizing with ajax loading not working properly Date: Fri, 15 Nov 2013 02:15:07 -0500 Message-ID: In-Reply-To: JIRA.12508686.1382616678000@jira02.app.mwc.hst.phx2.redhat.com --===============5560620394595999405== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13287?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923857#com= ment-12923857 ] = Brian Leathem commented on RF-13287: ------------------------------------ Thanks for resolving this [~michpetrov]. Would you mind porting the fix to= the 4.5 and 5.0 branches as well? this way we will get the fix out ASAP. = > rich:extendedDataTable column resizing with ajax loading not working prop= erly > -------------------------------------------------------------------------= ---- > > Key: RF-13287 > URL: https://issues.jboss.org/browse/RF-13287 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Glassfish 3.1.2.2, Mojarra 2.1.26, IE10, IE8, Chrome= 30, > Reporter: Andreas G > Assignee: Michal Petrov > Labels: needs-qe, testcase_provided > Fix For: 4.3.5 > > > In a rich:extendedDataTable with ajax loading turned on: When you resize = a column and scroll down (load data), the size of the columns reset to thei= r original value. Only the header keeps its size. The header and the data a= re not matching anymore. > Reproducible in the 4.3.4 showcase! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5560620394595999405==-- From jira-events at lists.jboss.org Fri Nov 15 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============8384688825154075970==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13206) Failure to reset ClassLoader when AWT Initialization errors Date: Fri, 15 Nov 2013 02:19:06 -0500 Message-ID: In-Reply-To: JIRA.12501140.1379705166000@jira02.app.mwc.hst.phx2.redhat.com --===============8384688825154075970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13206?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13206: ------------------------------- Labels: low_hanging_fruit (was: ) = > Failure to reset ClassLoader when AWT Initialization errors > ----------------------------------------------------------- > > Key: RF-13206 > URL: https://issues.jboss.org/browse/RF-13206 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.3.3 > Environment: ServiceMix > Reporter: Donald Oakes > Priority: Minor > Labels: low_hanging_fruit > Fix For: 5-Tracking > > > In org.richfaces.application.InitializationListener.AWTInitializer, the i= nitalize() method can fail to reset the context ClassLoader despite the fin= ally block that should do that (from line 195): > {code:title=3Dorg.richfaces.application.InitializationListener.AWTInitial= izer#195} > } finally { > if (testStream !=3D null) { > try { > testStream.close(); > } catch (IOException e) { > LOGGER.error(e.getMessage(), e); > } > } > thread.setContextClassLoader(initialTCCL); > } > {code} > In my OSGi environment, the testStream.close() invocation throws the NoCl= assDefFoundError pasted below. This circumvents the subsequent intention t= o restore the context ClassLoader. In effect, if AWT initialization fails = the context ClassLoader is left in a bad state that prevents future Service= Tracker processing and hoses up the Faces initialization. > {code} > java.lang.NoClassDefFoundError: javax/imageio/stream/ImageInputStream > at org.richfaces.application.InitializationListener$AWTInitialize= r.initialize(InitializationListener.java:198) > at org.richfaces.application.InitializationListener.initializeAWT= (InitializationListener.java:94) > at org.richfaces.application.InitializationListener.onStart(Initi= alizationListener.java:78) > at org.richfaces.application.InitializationListener.processEvent(= InitializationListener.java:152) > at javax.faces.event.SystemEvent.processListener(SystemEvent.java= :43) > at org.apache.myfaces.application.ApplicationImpl._traverseListen= erList(ApplicationImpl.java:2471) > at org.apache.myfaces.application.ApplicationImpl.access$000(Appl= icationImpl.java:120) > at org.apache.myfaces.application.ApplicationImpl$SystemListenerE= ntry.publish(ApplicationImpl.java:2662) > at org.apache.myfaces.application.ApplicationImpl.publishEvent(Ap= plicationImpl.java:601) > at org.apache.myfaces.webapp.AbstractFacesInitializer._dispatchAp= plicationEvent(AbstractFacesInitializer.java:286) > at org.apache.myfaces.webapp.AbstractFacesInitializer.initFaces(A= bstractFacesInitializer.java:154) > at org.apache.myfaces.webapp.StartupServletContextListener.contex= tInitialized(StartupServletContextListener.java:119) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8384688825154075970==-- From jira-events at lists.jboss.org Fri Nov 15 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============4165543578437264665==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13206) Failure to reset ClassLoader when AWT Initialization errors Date: Fri, 15 Nov 2013 02:19:06 -0500 Message-ID: In-Reply-To: JIRA.12501140.1379705166000@jira02.app.mwc.hst.phx2.redhat.com --===============4165543578437264665== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13206?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13206: ------------------------------- Fix Version/s: 5-Tracking = > Failure to reset ClassLoader when AWT Initialization errors > ----------------------------------------------------------- > > Key: RF-13206 > URL: https://issues.jboss.org/browse/RF-13206 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.3.3 > Environment: ServiceMix > Reporter: Donald Oakes > Priority: Minor > Fix For: 5-Tracking > > > In org.richfaces.application.InitializationListener.AWTInitializer, the i= nitalize() method can fail to reset the context ClassLoader despite the fin= ally block that should do that (from line 195): > {code:title=3Dorg.richfaces.application.InitializationListener.AWTInitial= izer#195} > } finally { > if (testStream !=3D null) { > try { > testStream.close(); > } catch (IOException e) { > LOGGER.error(e.getMessage(), e); > } > } > thread.setContextClassLoader(initialTCCL); > } > {code} > In my OSGi environment, the testStream.close() invocation throws the NoCl= assDefFoundError pasted below. This circumvents the subsequent intention t= o restore the context ClassLoader. In effect, if AWT initialization fails = the context ClassLoader is left in a bad state that prevents future Service= Tracker processing and hoses up the Faces initialization. > {code} > java.lang.NoClassDefFoundError: javax/imageio/stream/ImageInputStream > at org.richfaces.application.InitializationListener$AWTInitialize= r.initialize(InitializationListener.java:198) > at org.richfaces.application.InitializationListener.initializeAWT= (InitializationListener.java:94) > at org.richfaces.application.InitializationListener.onStart(Initi= alizationListener.java:78) > at org.richfaces.application.InitializationListener.processEvent(= InitializationListener.java:152) > at javax.faces.event.SystemEvent.processListener(SystemEvent.java= :43) > at org.apache.myfaces.application.ApplicationImpl._traverseListen= erList(ApplicationImpl.java:2471) > at org.apache.myfaces.application.ApplicationImpl.access$000(Appl= icationImpl.java:120) > at org.apache.myfaces.application.ApplicationImpl$SystemListenerE= ntry.publish(ApplicationImpl.java:2662) > at org.apache.myfaces.application.ApplicationImpl.publishEvent(Ap= plicationImpl.java:601) > at org.apache.myfaces.webapp.AbstractFacesInitializer._dispatchAp= plicationEvent(AbstractFacesInitializer.java:286) > at org.apache.myfaces.webapp.AbstractFacesInitializer.initFaces(A= bstractFacesInitializer.java:154) > at org.apache.myfaces.webapp.StartupServletContextListener.contex= tInitialized(StartupServletContextListener.java:119) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4165543578437264665==-- From jira-events at lists.jboss.org Fri Nov 15 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============5276943615819252957==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13206) Failure to reset ClassLoader when AWT Initialization errors Date: Fri, 15 Nov 2013 02:19:05 -0500 Message-ID: In-Reply-To: JIRA.12501140.1379705166000@jira02.app.mwc.hst.phx2.redhat.com --===============5276943615819252957== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13206?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923858#com= ment-12923858 ] = Brian Leathem commented on RF-13206: ------------------------------------ [~oakesville] would you like to formulate a pull request with a fix for thi= s issue? https://community.jboss.org/wiki/GuideToUsePullRequestsWithGitHubAndJIRA = > Failure to reset ClassLoader when AWT Initialization errors > ----------------------------------------------------------- > > Key: RF-13206 > URL: https://issues.jboss.org/browse/RF-13206 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.3.3 > Environment: ServiceMix > Reporter: Donald Oakes > Priority: Minor > > In org.richfaces.application.InitializationListener.AWTInitializer, the i= nitalize() method can fail to reset the context ClassLoader despite the fin= ally block that should do that (from line 195): > {code:title=3Dorg.richfaces.application.InitializationListener.AWTInitial= izer#195} > } finally { > if (testStream !=3D null) { > try { > testStream.close(); > } catch (IOException e) { > LOGGER.error(e.getMessage(), e); > } > } > thread.setContextClassLoader(initialTCCL); > } > {code} > In my OSGi environment, the testStream.close() invocation throws the NoCl= assDefFoundError pasted below. This circumvents the subsequent intention t= o restore the context ClassLoader. In effect, if AWT initialization fails = the context ClassLoader is left in a bad state that prevents future Service= Tracker processing and hoses up the Faces initialization. > {code} > java.lang.NoClassDefFoundError: javax/imageio/stream/ImageInputStream > at org.richfaces.application.InitializationListener$AWTInitialize= r.initialize(InitializationListener.java:198) > at org.richfaces.application.InitializationListener.initializeAWT= (InitializationListener.java:94) > at org.richfaces.application.InitializationListener.onStart(Initi= alizationListener.java:78) > at org.richfaces.application.InitializationListener.processEvent(= InitializationListener.java:152) > at javax.faces.event.SystemEvent.processListener(SystemEvent.java= :43) > at org.apache.myfaces.application.ApplicationImpl._traverseListen= erList(ApplicationImpl.java:2471) > at org.apache.myfaces.application.ApplicationImpl.access$000(Appl= icationImpl.java:120) > at org.apache.myfaces.application.ApplicationImpl$SystemListenerE= ntry.publish(ApplicationImpl.java:2662) > at org.apache.myfaces.application.ApplicationImpl.publishEvent(Ap= plicationImpl.java:601) > at org.apache.myfaces.webapp.AbstractFacesInitializer._dispatchAp= plicationEvent(AbstractFacesInitializer.java:286) > at org.apache.myfaces.webapp.AbstractFacesInitializer.initFaces(A= bstractFacesInitializer.java:154) > at org.apache.myfaces.webapp.StartupServletContextListener.contex= tInitialized(StartupServletContextListener.java:119) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5276943615819252957==-- From jira-events at lists.jboss.org Fri Nov 15 02:21:06 2013 Content-Type: multipart/mixed; boundary="===============6201063627295120925==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Fri, 15 Nov 2013 02:21:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============6201063627295120925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13210: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D [~lfryc] is this now out of date? = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6201063627295120925==-- From jira-events at lists.jboss.org Fri Nov 15 02:21:06 2013 Content-Type: multipart/mixed; boundary="===============6552125490944985789==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13207) Table having multiple sub-rows within a main row in extended datatable Date: Fri, 15 Nov 2013 02:21:06 -0500 Message-ID: In-Reply-To: JIRA.12501169.1379921283000@jira02.app.mwc.hst.phx2.redhat.com --===============6552125490944985789== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13207?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13207: ------------------------------- Labels: waiting_on_user (was: ) = > Table having multiple sub-rows within a main row in extended datatable > ---------------------------------------------------------------------- > > Key: RF-13207 > URL: https://issues.jboss.org/browse/RF-13207 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: cdk, component-tables > Affects Versions: 4.3.1 > Environment: windows 7 , JRE 7 = > Reporter: sathiyan venkatesh > Labels: waiting_on_user > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6552125490944985789==-- From jira-events at lists.jboss.org Fri Nov 15 02:21:06 2013 Content-Type: multipart/mixed; boundary="===============5445834662854959180==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13209) RichTree JS onselectionchange() with a4jregion template Date: Fri, 15 Nov 2013 02:21:06 -0500 Message-ID: In-Reply-To: JIRA.12501179.1379927682000@jira02.app.mwc.hst.phx2.redhat.com --===============5445834662854959180== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13209?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13209: ------------------------------- Fix Version/s: 5-Tracking = > RichTree JS onselectionchange() with a4jregion template > ------------------------------------------------------- > > Key: RF-13209 > URL: https://issues.jboss.org/browse/RF-13209 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.2.3.Final, 4.3.3, 4.3.4 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > There is a bug when using onselectionchange() JS API in RichTree componen= t using A4jRegion template (rest of the templates cause no problems). > The event will be called twice - in my case I tested it with simple alert= ("text") in Metamer using JBoss AS 7.1. > This bug appears in older version as well, so far I have tested it with 4= .3.4, 4.3.3 and 4.2.3 Final builds all of which caused the same double even= t. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5445834662854959180==-- From jira-events at lists.jboss.org Fri Nov 15 02:23:06 2013 Content-Type: multipart/mixed; boundary="===============7169649598031926562==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13216) PoupPanel doesn't disappear when rendered="false" and rerender it. Date: Fri, 15 Nov 2013 02:23:06 -0500 Message-ID: In-Reply-To: JIRA.12501363.1380018548000@jira02.app.mwc.hst.phx2.redhat.com --===============7169649598031926562== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13216?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12923860#com= ment-12923860 ] = Brian Leathem commented on RF-13216: ------------------------------------ [~tkonishi] can we close this issue? = > PoupPanel doesn't disappear when rendered=3D"false" and rerender it. > ------------------------------------------------------------------ > > Key: RF-13216 > URL: https://issues.jboss.org/browse/RF-13216 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.3 > Reporter: Takayuki Konishi > Labels: gss > Attachments: rf3_3_4-modalpanel.zip, rf4_3_3-popuppanel.zip > > > If you use the richfaces popupPanel in the default domElementAttachment= =3D"body" mode it will not disappear under specific conditions. > {code:xml} = > > > > > > > > > > > > > {code} = > In Richfaces 3.3.x, on the other hand, there was a component cleanup syst= em ({{memory.js _cleanComponentNodes}}) which was responsible to remove com= ponents after ajax calls if the component was removed from the current view= . = > Therefore the above example (revert {{popupPanel}} to {{modalPanel}}) wor= ks in RF3.3.4.Final. > Note: > In case {{domElementAttachment=3D"parent"}}, it will show [the other JSF2= bug|https://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-790] where th= e view state was lost, therefore you must click the action button twice to = really call the function. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7169649598031926562==-- From jira-events at lists.jboss.org Fri Nov 15 02:23:07 2013 Content-Type: multipart/mixed; boundary="===============8234911226587806449==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13244) StyleProps and StyleClassProps should be merged to one interface Date: Fri, 15 Nov 2013 02:23:07 -0500 Message-ID: In-Reply-To: JIRA.12502201.1380888528000@jira02.app.mwc.hst.phx2.redhat.com --===============8234911226587806449== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13244?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13244. -------------------------------- Resolution: Rejected = > StyleProps and StyleClassProps should be merged to one interface > ---------------------------------------------------------------- > > Key: RF-13244 > URL: https://issues.jboss.org/browse/RF-13244 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > It doesn't make sense to have several style-realted interface since style= and styleClass appears togetger. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8234911226587806449==-- From jira-events at lists.jboss.org Fri Nov 15 02:23:07 2013 Content-Type: multipart/mixed; boundary="===============4812641662884997674==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13221) Incorrect XML encoding in AJAX response Date: Fri, 15 Nov 2013 02:23:07 -0500 Message-ID: In-Reply-To: JIRA.12501466.1380105464000@jira02.app.mwc.hst.phx2.redhat.com --===============4812641662884997674== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13221?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13221. -------------------------------- Resolution: Rejected Upstream issue. = > Incorrect XML encoding in AJAX response > --------------------------------------- > > Key: RF-13221 > URL: https://issues.jboss.org/browse/RF-13221 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: Jon=C3=A1=C5=A1 Trantina > Labels: gss > > Consider the following example: > {noformat} > > > > > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7371250878572938154==-- From jira-events at lists.jboss.org Fri Nov 15 11:59:07 2013 Content-Type: multipart/mixed; boundary="===============1932621626467120025==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 11:59:07 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676351@jira02.app.mwc.hst.phx2.redhat.com --===============1932621626467120025== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13350: -------------------------------- Summary: pickList: styleClass attribute is rendered wrongly as= styleclass instead of class attribute Key: RF-13350 URL: https://issues.jboss.org/browse/RF-13350 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska Setting of {{styleClass}} attribute to the {{pickList}} component makes gen= erated markup to contain {{styleclass}} attribute - instead of just adjuste= d {{class}} attribute. The {{styleClass}} is included just in {{passThrough}} attributes - [here|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. Should not be it done as it is for example [here|https://github.com/richfac= es/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/aut= ocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1932621626467120025==-- From jira-events at lists.jboss.org Fri Nov 15 12:04:06 2013 Content-Type: multipart/mixed; boundary="===============2166003418761752614==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13172) rich:toolbarGroup location="right" doesn't work if toolbarGroup location="left" contains not rendered values Date: Fri, 15 Nov 2013 12:04:05 -0500 Message-ID: In-Reply-To: JIRA.12500222.1378479644000@jira02.app.mwc.hst.phx2.redhat.com --===============2166003418761752614== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13172?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13172: ------------------------------- Fix Version/s: 4.3.5 (was: 5-Tracking) = > rich:toolbarGroup location=3D"right" doesn't work if toolbarGroup locatio= n=3D"left" contains not rendered values > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-13172 > URL: https://issues.jboss.org/browse/RF-13172 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.3.3 > Reporter: Sergey Zubarev > Assignee: Pavel Slegr > Labels: low_hanging_fruit > Fix For: 4.3.5 > > > {code} > > > > > > > > > > ... > {code} > In this case location=3D"right" doesn't work : it displayed left. When I = remove rendered=3D"false" from btn3 all works fine. > Html debug shows, that code produced one extra element in colgroup tag wh= en using rendered=3D"false". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2166003418761752614==-- From jira-events at lists.jboss.org Fri Nov 15 12:04:06 2013 Content-Type: multipart/mixed; boundary="===============7193032301025462264==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13172) rich:toolbarGroup location="right" doesn't work if toolbarGroup location="left" contains not rendered values Date: Fri, 15 Nov 2013 12:04:05 -0500 Message-ID: In-Reply-To: JIRA.12500222.1378479644000@jira02.app.mwc.hst.phx2.redhat.com --===============7193032301025462264== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13172?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13172: ------------------------------- Labels: low_hanging_fruit needs-qe (was: low_hanging_fruit) = > rich:toolbarGroup location=3D"right" doesn't work if toolbarGroup locatio= n=3D"left" contains not rendered values > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-13172 > URL: https://issues.jboss.org/browse/RF-13172 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.3.3 > Reporter: Sergey Zubarev > Assignee: Pavel Slegr > Labels: low_hanging_fruit, needs-qe > Fix For: 4.3.5 > > > {code} > > > > > > > > > > ... > {code} > In this case location=3D"right" doesn't work : it displayed left. When I = remove rendered=3D"false" from btn3 all works fine. > Html debug shows, that code produced one extra element in colgroup tag wh= en using rendered=3D"false". -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7193032301025462264==-- From jira-events at lists.jboss.org Fri Nov 15 12:08:06 2013 Content-Type: multipart/mixed; boundary="===============6647738607290466010==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 12:08:05 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============6647738607290466010== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924121#com= ment-12924121 ] = Brian Leathem commented on RF-13350: ------------------------------------ Since we have no need to concatenate classes on that element we can simply = use the CDK attribute mapping syntax in the pass through: {code} class:styleClass {code} = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6647738607290466010==-- From jira-events at lists.jboss.org Fri Nov 15 12:08:06 2013 Content-Type: multipart/mixed; boundary="===============7649032769398929399==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 12:08:06 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============7649032769398929399== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13350: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7649032769398929399==-- From jira-events at lists.jboss.org Fri Nov 15 12:10:06 2013 Content-Type: multipart/mixed; boundary="===============0110602998982839574==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Fri, 15 Nov 2013 12:10:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============0110602998982839574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13210: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0110602998982839574==-- From jira-events at lists.jboss.org Fri Nov 15 12:39:06 2013 Content-Type: multipart/mixed; boundary="===============4737282931032977162==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Fri, 15 Nov 2013 12:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============4737282931032977162== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13348: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4737282931032977162==-- From jira-events at lists.jboss.org Fri Nov 15 14:57:07 2013 Content-Type: multipart/mixed; boundary="===============1295572057366066671==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Fri, 15 Nov 2013 14:57:07 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============1295572057366066671== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924167#com= ment-12924167 ] = Brian Leathem commented on RF-13348: ------------------------------------ The _columnClasses_ attribute doc describes the fix implemented: {quote} _columnClasses_ specifies a comma-delimited list of CSS style classes to ap= ply to each column. A space separated list of classes may be specified for an individual column. If the number of classes in this list is less than the number of column chi= ldren, then no class will be applied to the columns greater than the number of classes. If however the = final class in the list is the `*` character, the classes will instead be applied in a repeating manner every = n-fold column, where n is the order the class in this list. If there are more class names than columns, the overflow ones are ignored. {quote} = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1295572057366066671==-- From jira-events at lists.jboss.org Fri Nov 15 14:57:07 2013 Content-Type: multipart/mixed; boundary="===============0588810637620068776==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Fri, 15 Nov 2013 14:57:07 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============0588810637620068776== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13348. -------------------------------- Assignee: Brian Leathem Resolution: Done = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0588810637620068776==-- From jira-events at lists.jboss.org Fri Nov 15 14:57:07 2013 Content-Type: multipart/mixed; boundary="===============5612591387368580300==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 14:57:07 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============5612591387368580300== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13350: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5612591387368580300==-- From jira-events at lists.jboss.org Fri Nov 15 14:57:07 2013 Content-Type: multipart/mixed; boundary="===============0811551011751234302==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Fri, 15 Nov 2013 14:57:07 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============0811551011751234302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13210: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0811551011751234302==-- From jira-events at lists.jboss.org Fri Nov 15 14:59:06 2013 Content-Type: multipart/mixed; boundary="===============6404655468396268908==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Fri, 15 Nov 2013 14:59:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============6404655468396268908== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13210: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6404655468396268908==-- From jira-events at lists.jboss.org Fri Nov 15 14:59:06 2013 Content-Type: multipart/mixed; boundary="===============8712947353203087944==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 14:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============8712947353203087944== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13350: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8712947353203087944==-- From jira-events at lists.jboss.org Fri Nov 15 15:04:06 2013 Content-Type: multipart/mixed; boundary="===============3274314341600996300==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 15:04:05 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============3274314341600996300== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13350: ---------------------------------- Assignee: Brian Leathem = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3274314341600996300==-- From jira-events at lists.jboss.org Fri Nov 15 15:12:06 2013 Content-Type: multipart/mixed; boundary="===============6199752455425927456==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Fri, 15 Nov 2013 15:12:06 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============6199752455425927456== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13350. -------------------------------- Resolution: Done = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6199752455425927456==-- From jira-events at lists.jboss.org Fri Nov 15 17:20:06 2013 Content-Type: multipart/mixed; boundary="===============1387469074533510424==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11284) rich:autocomplete on Mojarra doesn't handle suggestions/selection correctly Date: Fri, 15 Nov 2013 17:20:06 -0500 Message-ID: In-Reply-To: JIRA.12444076.1312983789000@jira02.app.mwc.hst.phx2.redhat.com --===============1387469074533510424== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11284?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11284: ------------------------------- Assignee: (was: Brian Leathem) = > rich:autocomplete on Mojarra doesn't handle suggestions/selection correct= ly > -------------------------------------------------------------------------= -- > > Key: RF-11284 > URL: https://issues.jboss.org/browse/RF-11284 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.1.0.Milestone1 > Environment: RichFaces 4.1.0.20110805-M1 r.10246d45dddd1d2aa20343= 17d5a832394cc919f9 > Metamer 4.1.0.20110805-M1 r.22604 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Chrome 12.0.742.112 @ Linux i686, IE7, = > Reporter: J=C3=A1n Jamrich > Fix For: 5-Tracking > > > In the contrary with rich:autocomplete with MyFaces, there is not working= suggestions or suggestion selection for autocomplete. > Common case is type some keys into autocomplete input, e.g. "al" and wait= for display suggestions, in this case "Alabama, Alaska". Then pick one of = them, and this item should appear in autocomplete input instead of typed ch= aracters (so that value start with upper case and so on), and this value ap= pears in output element. > It is working correctly with autocomplete example without any changes (ju= st open page faces/components/richAutocomplete/autocomplete.xhtml). > But when set any attribute value (such as layout to div, or minChars to 2= or something else), selection from autocomplete suggestions stop work. > Then is not possible to select item from suggestion, but when click (or s= elect by narrovs and press enter) on an item, then suggestions disappears, = but autocomplete input remain empty not the output is updated by selected v= alue. > The workaround is invalidate session, but it causes clean attribute value= (so then is not minChars or layout attribute set to any value). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1387469074533510424==-- From jira-events at lists.jboss.org Fri Nov 15 19:44:06 2013 Content-Type: multipart/mixed; boundary="===============7164188748701156365==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Fri, 15 Nov 2013 19:44:06 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============7164188748701156365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924210#comm= ent-12924210 ] = Val Blant commented on RF-4308: ------------------------------- I have an easy fix for this problem that seems to work pretty well. Just in= clude this _orderedPickListFix.js_ in your app, and the pickLists should st= art behaving. {code:javascript|title=3DorderedPickListFix.js|borderStyle=3Dsolid} /** * This is an extension to the RichFaces PickList that preserves the origin= al order of items in the source list * = * @author Val Blant */ if ( typeof window.RichFaces.ui.List !=3D 'undefined' && !window.PickListEx= tension ) { = window.PickListExtension =3D {}; = = if ( typeof window.RichFaces.ui.PickList !=3D 'undefined' ) { /** * Overriding original constructor found in "org.richfaces/pickList.js" r= esource */ window.RichFaces.ui.PickList =3D function(oldPickListConstructor) { return function(id, options) { // Instantiate the original PickList // var pickList =3D new oldPickListConstructor(id, options); = // Assign item indecies to each item in the source list to preserve ori= ginal order // pickList.sourceList.items.each(function( index ) { this.itemIndex =3D index; }); = return pickList; }; }(window.RichFaces.ui.PickList); = } = = = /** * Original code taken from "org.richfaces/list.js" resource */ (function($, rf, list) { /** * Insert items into a pick list according to their original order stor= ed in 'itemIndex' attribute */ list.prototype.addItems =3D function(items) { var parentContainer =3D this.scrollContainer; = items.each(function() { = if ( parentContainer.children().length < this.itemIndex = ) { parentContainer.append(this); } else { itemAtOurIndex =3D parentContainer.children()[this.itemInd= ex]; jQuery(this).insertBefore( itemAtOurIndex ); } }); = this.__updateItemsList(); rf.Event.fire(this, "additems", items); = }; = }(jQuery, window.RichFaces, window.RichFaces.ui.List)); } {code} = = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 3.Future > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7164188748701156365==-- From jira-events at lists.jboss.org Sat Nov 16 05:44:06 2013 Content-Type: multipart/mixed; boundary="===============0189168863000131850==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Sat, 16 Nov 2013 05:44:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============0189168863000131850== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924222#com= ment-12924222 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- Hello Ji=C5=99=C3=AD =C5=A0tefek Any update ? Regards Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0189168863000131850==-- From jira-events at lists.jboss.org Sun Nov 17 06:16:07 2013 Content-Type: multipart/mixed; boundary="===============2629559410681700450==" MIME-Version: 1.0 From: Salvo Isaja (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel Date: Sun, 17 Nov 2013 06:16:06 -0500 Message-ID: In-Reply-To: JIRA.12481662.1356024824000@jira02.app.mwc.hst.phx2.redhat.com --===============2629559410681700450== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12682?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924253#com= ment-12924253 ] = Salvo Isaja commented on RF-12682: ---------------------------------- Hello Brian, unfortunately I'm hitting this issue with 4.3.4. I'm using the tab panel of= Bootstrap 3, though, not RichFaces'. When switching tabs, the height of th= e extendedDataTable seems to drop to zero (the headers are not visible too,= everything is grayed out in Firebug) and the table is blank. This even hap= pens without switching tabs, but just opening Firebug (but not just resizin= g the browser window). Tested on Firefox 25. Any help is appreciated. Thanks, Salvo = > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, test= case_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTabl= e is hidden (when the page loads) and then it is made visible later the tab= le can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if = we have one extendedDataTable in each tab (the first tab shows and the sec= ond tab is not shown at first). In this case once the user clicks on the s= econd tab and tries to populate the extendedDataTable (via any action). The= n the table is not rendered properly. A sample project has been provided a= t the following link that further describe this issue. You can download the= eclipse project attached at the end of the following message to reproduce = this issue. > https://community.jboss.org/message/783787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2629559410681700450==-- From jira-events at lists.jboss.org Sun Nov 17 06:18:06 2013 Content-Type: multipart/mixed; boundary="===============3475287440696786790==" MIME-Version: 1.0 From: Salvo Isaja (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12193) rich:extendedDataTable is blank on show Date: Sun, 17 Nov 2013 06:18:06 -0500 Message-ID: In-Reply-To: JIRA.12464804.1335212251000@jira02.app.mwc.hst.phx2.redhat.com --===============3475287440696786790== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12193?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924254#com= ment-12924254 ] = Salvo Isaja commented on RF-12193: ---------------------------------- Seems to be still present as of 4.3.4, please see my comment on issue 12682= . Thanks. = > rich:extendedDataTable is blank on show > --------------------------------------- > > Key: RF-12193 > URL: https://issues.jboss.org/browse/RF-12193 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.1.Final > Environment: Firefox 11, Internet Explorer 8 > Reporter: Nick Dev > Assignee: Brian Leathem > Fix For: 4.3.2, 5.0.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > rich:extendedDataTable is blank when shown after it was hidden. > Firefox: complete table is blank. > IE: table header is not displayed. > Table is shown after resizing the window. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3475287440696786790==-- From jira-events at lists.jboss.org Sun Nov 17 22:13:06 2013 Content-Type: multipart/mixed; boundary="===============9030183621092711083==" MIME-Version: 1.0 From: alexey plotnikov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13349) a4j:queue must be first child for rich:autocomplete Date: Sun, 17 Nov 2013 22:13:06 -0500 Message-ID: In-Reply-To: JIRA.12525196.1384485297000@jira02.app.mwc.hst.phx2.redhat.com --===============9030183621092711083== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13349?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924291#com= ment-12924291 ] = alexey plotnikov commented on RF-13349: --------------------------------------- Hmmm, i can not reproduce too :(. But this bug was produced on some page(i = don't remember page name). I'll try find this page. = > a4j:queue must be first child for rich:autocomplete > --------------------------------------------------- > > Key: RF-13349 > URL: https://issues.jboss.org/browse/RF-13349 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: alexey plotnikov > Assignee: Pavol Pitonak > Labels: waiting_on_user > > All described here https://community.jboss.org/message/845845 but i'll re= peat. > In this example: > {code} > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.realName}" = id=3D"legal-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeLegal(event.target)"= style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.legalName}" = > required=3D"true"> = > = > = > = > = > = > = > = > = > > {code} > a4j:queue - is *ignored!* > But here > {code} > minChars=3D"0" var=3D"s" fetchValue=3D"#{s.realName}" = id=3D"legal-suggestion" = > autofill=3D"false" = > onselectitem=3D"autocompleteChangeLegal(event.target)"= style=3D"display: inline;" = > layout=3D"table" value=3D"#{autocomplete.legalName}" = > required=3D"true"> = > = > = > = > = > = > = > = > = > > {code} > a4j:queue *not ignored*. So a4j:queue must be first child for autocomplet= e. > For another components a4j:queue can be any child(first or last). > For example this code: > {code} > = > = > = > = > = > > {code} > *not* ignoring a4j:queue -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9030183621092711083==-- From jira-events at lists.jboss.org Mon Nov 18 01:52:06 2013 Content-Type: multipart/mixed; boundary="===============1444917352774067997==" MIME-Version: 1.0 From: Pavel Slegr (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() Date: Mon, 18 Nov 2013 01:52:05 -0500 Message-ID: In-Reply-To: JIRA.12518007.1383648996000@jira02.app.mwc.hst.phx2.redhat.com --===============1444917352774067997== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13317?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavel Slegr reassigned RF-13317: -------------------------------- Assignee: Pavel Slegr = > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewSta= te id in startUpdate() > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Assignee: Pavel Slegr > Priority: Critical > Labels: jsf22 > Fix For: 4.3.5 > > > I'm using several {{}} fields in a {{}}, but h= ave noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error sayi= ng > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete compone= nt and no suggestions get displayed. > For reference the javadoc for ResponseStateManager.VIEW_STATE_PARAM says: > {quote} > Implementations must use this constant field value as the name of the cli= ent parameter in which to save the state between requests. The id attribute= must be a concatenation of the return from UIComponent.getContainerClientI= d(javax.faces.context.FacesContext), the return from UINamingContainer.getS= eparatorChar(javax.faces.context.FacesContext), this constant field value, = the separator char, and a number that is guaranteed to be unique with respe= ct to all the other instances of this kind of client parameter in the view. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1444917352774067997==-- From jira-events at lists.jboss.org Mon Nov 18 02:43:06 2013 Content-Type: multipart/mixed; boundary="===============4934039794978470558==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13339) orderingList: ordered values are reset after submit Date: Mon, 18 Nov 2013 02:43:05 -0500 Message-ID: In-Reply-To: JIRA.12524863.1384255087000@jira02.app.mwc.hst.phx2.redhat.com --===============4934039794978470558== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13339?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924307#com= ment-12924307 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13339: ---------------------------------- Verified, it works. = > orderingList: ordered values are reset after submit > --------------------------------------------------- > > Key: RF-13339 > URL: https://issues.jboss.org/browse/RF-13339 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Blocker > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4934039794978470558==-- From jira-events at lists.jboss.org Mon Nov 18 03:01:06 2013 Content-Type: multipart/mixed; boundary="===============7945967024453785631==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13351) orderingList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Mon, 18 Nov 2013 03:01:06 -0500 Message-ID: In-Reply-To: JIRA.12525395.1384761556962@jira02.app.mwc.hst.phx2.redhat.com --===============7945967024453785631== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13351: -------------------------------- Summary: orderingList: styleClass attribute is rendered wrongl= y as styleclass instead of class attribute Key: RF-13351 URL: https://issues.jboss.org/browse/RF-13351 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Assignee: Brian Leathem Fix For: 5.0.0.Alpha2 Setting of {{styleClass}} attribute to the {{pickList}} component makes gen= erated markup to contain {{styleclass}} attribute - instead of just adjuste= d {{class}} attribute. The {{styleClass}} is included just in {{passThrough}} attributes - [here|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. Should not be it done as it is for example [here|https://github.com/richfac= es/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/aut= ocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7945967024453785631==-- From jira-events at lists.jboss.org Mon Nov 18 03:01:06 2013 Content-Type: multipart/mixed; boundary="===============6930531650133618604==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13351) orderingList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Mon, 18 Nov 2013 03:01:06 -0500 Message-ID: In-Reply-To: JIRA.12525395.1384761556000@jira02.app.mwc.hst.phx2.redhat.com --===============6930531650133618604== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13351?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13351: ----------------------------- Description: Setting of {{styleClass}} attribute to the {{orderingList}= } component makes generated markup to contain {{styleclass}} attribute - in= stead of just adjusted {{class}} attribute. (was: Setting of {{styleClass}= } attribute to the {{pickList}} component makes generated markup to contain= {{styleclass}} attribute - instead of just adjusted {{class}} attribute. The {{styleClass}} is included just in {{passThrough}} attributes - [here|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. Should not be it done as it is for example [here|https://github.com/richfac= es/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/aut= ocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ?) = > orderingList: styleClass attribute is rendered wrongly as styleclass inst= ead of class attribute > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13351 > URL: https://issues.jboss.org/browse/RF-13351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{orderingList}} component mak= es generated markup to contain {{styleclass}} attribute - instead of just a= djusted {{class}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6930531650133618604==-- From jira-events at lists.jboss.org Mon Nov 18 03:03:06 2013 Content-Type: multipart/mixed; boundary="===============0200783022161912338==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13351) orderingList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Mon, 18 Nov 2013 03:03:05 -0500 Message-ID: In-Reply-To: JIRA.12525395.1384761556000@jira02.app.mwc.hst.phx2.redhat.com --===============0200783022161912338== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13351?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924309#com= ment-12924309 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13351: ---------------------------------- I'll send a PR. = > orderingList: styleClass attribute is rendered wrongly as styleclass inst= ead of class attribute > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13351 > URL: https://issues.jboss.org/browse/RF-13351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{orderingList}} component mak= es generated markup to contain {{styleclass}} attribute - instead of just a= djusted {{class}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0200783022161912338==-- From jira-events at lists.jboss.org Mon Nov 18 03:21:06 2013 Content-Type: multipart/mixed; boundary="===============5107481048379901293==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13351) orderingList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Mon, 18 Nov 2013 03:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525395.1384761556000@jira02.app.mwc.hst.phx2.redhat.com --===============5107481048379901293== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13351?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reassigned RF-13351: -------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek (was: Brian Leathem) = > orderingList: styleClass attribute is rendered wrongly as styleclass inst= ead of class attribute > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13351 > URL: https://issues.jboss.org/browse/RF-13351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{orderingList}} component mak= es generated markup to contain {{styleclass}} attribute - instead of just a= djusted {{class}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5107481048379901293==-- From jira-events at lists.jboss.org Mon Nov 18 03:29:06 2013 Content-Type: multipart/mixed; boundary="===============6079390048910051620==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Mon, 18 Nov 2013 03:29:06 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============6079390048910051620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reassigned RF-13340: -------------------------------- Assignee: Brian Leathem (was: Ji=C5=99=C3=AD =C5=A0tefek) Yes, [~bleathem], it is out of date now . = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style > * valueChangeListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6079390048910051620==-- From jira-events at lists.jboss.org Mon Nov 18 04:11:08 2013 Content-Type: multipart/mixed; boundary="===============8090691014477518908==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13341) Charts: implement AjaxProps Date: Mon, 18 Nov 2013 04:11:07 -0500 Message-ID: In-Reply-To: JIRA.12524903.1384269969000@jira02.app.mwc.hst.phx2.redhat.com --===============8090691014477518908== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13341?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924331#com= ment-12924331 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13341: ---------------------------------- I think the advantage of the custom chart server-side listener/event is tha= t event.data can be propagated to the server. It will not be the most commo= n use case probably, however it might be useful e.g to show some additional= information related to a value clicked in a chart, in my opinion. = > Charts: implement AjaxProps > --------------------------- > > Key: RF-13341 > URL: https://issues.jboss.org/browse/RF-13341 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Priority: Minor > > I think AbstractChart should implements AjaxProps since it uses server-si= de listeners. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8090691014477518908==-- From jira-events at lists.jboss.org Mon Nov 18 05:37:06 2013 Content-Type: multipart/mixed; boundary="===============8593946877395579849==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Mon, 18 Nov 2013 05:37:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============8593946877395579849== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924415#com= ment-12924415 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- [~wish79], tried this: - vanilla JBoss AS 7.1.1.Final: impl: _jsf-impl-2.1.7-jbossorg-2_ and apis:= _jboss-jsf-api_2.1_spec-2.0.1.Final_ , works. - JBoss AS 7.1.1.Final with updated impl to: _jsf-impl-2.1.9-jbossorg-1_ , = works. - JBoss AS 7.1.1.Final with updated impl to: _jsf-impl-2.1.9-jbossorg-1_ + = updated apis to: _jboss-jsf-api_2.1_spec-2.0.9.Final_ , works. What apis/impls are you using? Do you replace them as in this [comment|http= ://stackoverflow.com/a/11495699]? Or are you using the Oracle ones? System? JDK? 64bit? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8593946877395579849==-- From jira-events at lists.jboss.org Mon Nov 18 06:35:06 2013 Content-Type: multipart/mixed; boundary="===============6330631539889352223==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Mon, 18 Nov 2013 06:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============6330631539889352223== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D moved RFPL-3055 to RF-13352: --------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-13352 (was: RFPL-3055) Issue Type: Enhancement (was: Feature Request) Component/s: tests - functional = (was: build) (was: jsf-test) = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6330631539889352223==-- From jira-events at lists.jboss.org Mon Nov 18 06:37:06 2013 Content-Type: multipart/mixed; boundary="===============2167481825165288633==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Mon, 18 Nov 2013 06:37:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============2167481825165288633== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924450#com= ment-12924450 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13352: --------------------------------- Hey Lukas, you are right. Could you please give a try to implement it? Hints: configure a profile {{browser-firefox}} to setup appropriate category: here= is the default value: https://github.com/richfaces/richfaces/blob/master/pom.xml#L446 = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2167481825165288633==-- From jira-events at lists.jboss.org Mon Nov 18 06:39:06 2013 Content-Type: multipart/mixed; boundary="===============4483633071310932047==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Mon, 18 Nov 2013 06:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============4483633071310932047== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13352: ---------------------------- Assignee: Luk=C3=A1=C5=A1 Macko (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4483633071310932047==-- From jira-events at lists.jboss.org Mon Nov 18 08:00:13 2013 Content-Type: multipart/mixed; boundary="===============8658233571306453920==" MIME-Version: 1.0 From: Immo Benjes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13353) Javascript callbacks on global queue are not called Date: Mon, 18 Nov 2013 08:00:08 -0500 Message-ID: In-Reply-To: JIRA.12525446.1384779581549@jira02.app.mwc.hst.phx2.redhat.com --===============8658233571306453920== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Immo Benjes created RF-13353: -------------------------------- Summary: Javascript callbacks on global queue are not called Key: RF-13353 URL: https://issues.jboss.org/browse/RF-13353 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.3.4 Reporter: Immo Benjes Only two of the javascript callbacks on a:queue are actually functional: {code} {code} When doing an ajax request only onrequestqueue and onrequestdequeue are cal= led. onsubmit, oncomplete and onbeforedomupdate are not called. Please note: log('xx') is a wrapper around console.log() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8658233571306453920==-- From jira-events at lists.jboss.org Mon Nov 18 09:09:05 2013 Content-Type: multipart/mixed; boundary="===============5845624400630631132==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Mon, 18 Nov 2013 09:09:05 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692646@jira02.app.mwc.hst.phx2.redhat.com --===============5845624400630631132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13354: ---------------------------------- Summary: Autocomplete: suggestions stay visible after input is= cleared Key: RF-13354 URL: https://issues.jboss.org/browse/RF-13354 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, regression Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT EAP 6.1.1 Mojarra 2.1.19 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 31.0.1650.57 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml # type "ala" into input (several suggestions will appear) # clear input, e.g. by using backspace key result: * the list with all available suggestions is displayed * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5845624400630631132==-- From jira-events at lists.jboss.org Mon Nov 18 09:39:06 2013 Content-Type: multipart/mixed; boundary="===============3508225677846760266==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13355) Upgrade Mojarra to 2.1.26 Date: Mon, 18 Nov 2013 09:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525466.1384785440213@jira02.app.mwc.hst.phx2.redhat.com --===============3508225677846760266== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13355: ---------------------------------- Summary: Upgrade Mojarra to 2.1.26 Key: RF-13355 URL: https://issues.jboss.org/browse/RF-13355 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: third-party Affects Versions: 5.0.0.Alpha2 Reporter: Pavol Pitonak RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upgra= de it to the lastest version 2.1.26. [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3508225677846760266==-- From jira-events at lists.jboss.org Mon Nov 18 09:39:06 2013 Content-Type: multipart/mixed; boundary="===============0446472666331694465==" MIME-Version: 1.0 From: Anton Bogoslavskyi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) RF-8602 Reproduced in 4.3.3.Final Date: Mon, 18 Nov 2013 09:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454764@jira02.app.mwc.hst.phx2.redhat.com --===============0446472666331694465== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Anton Bogoslavskyi created RF-13356: --------------------------------------- Summary: RF-8602 Reproduced in 4.3.3.Final Key: RF-13356 URL: https://issues.jboss.org/browse/RF-13356 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: regression Affects Versions: 4.3.3 Reporter: Anton Bogoslavskyi Fix For: 4.3.5 The same as in the parent issue: Instead of having fixed row height and blank space if not enough rows to fi= ll the entire table height, the rows are stretched to fill the entire table= height. For instance with an extended data table of 500px height and 2 row= s, each row is approximately 250px height (minus the height of the header, = borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0446472666331694465==-- From jira-events at lists.jboss.org Mon Nov 18 11:51:06 2013 Content-Type: multipart/mixed; boundary="===============9075023230406430188==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) RF-8602 Reproduced in 4.3.3.Final Date: Mon, 18 Nov 2013 11:51:05 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============9075023230406430188== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13356: ------------------------------- Parent: (was: RF-8602) Issue Type: Bug (was: Sub-task) = > RF-8602 Reproduced in 4.3.3.Final > --------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: regression > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Fix For: 4.3.5 > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9075023230406430188==-- From jira-events at lists.jboss.org Mon Nov 18 11:51:06 2013 Content-Type: multipart/mixed; boundary="===============0523040626144473250==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) RF-8602 Reproduced in 4.3.3.Final Date: Mon, 18 Nov 2013 11:51:05 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============0523040626144473250== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13356: ------------------------------- Fix Version/s: (was: 4.3.5) = > RF-8602 Reproduced in 4.3.3.Final > --------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: regression > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0523040626144473250==-- From jira-events at lists.jboss.org Mon Nov 18 11:53:06 2013 Content-Type: multipart/mixed; boundary="===============3969732249506321353==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Mon, 18 Nov 2013 11:53:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============3969732249506321353== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13356: ---------------------------------- Assignee: Pavol Pitonak QE, can you please try to reproduce in RF 4.3.latest this issue that was pr= eviously resolved in RF 3? = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Pavol Pitonak > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3969732249506321353==-- From jira-events at lists.jboss.org Mon Nov 18 11:53:06 2013 Content-Type: multipart/mixed; boundary="===============3502329089056022353==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Mon, 18 Nov 2013 11:53:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============3502329089056022353== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13356: ------------------------------- Component/s: component-tables (was: regression) = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3502329089056022353==-- From jira-events at lists.jboss.org Mon Nov 18 11:53:06 2013 Content-Type: multipart/mixed; boundary="===============3387721836301696859==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Mon, 18 Nov 2013 11:53:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============3387721836301696859== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13356: ------------------------------- Summary: ExtendedDataTable: row height strechted to 100% of the table h= eight (was: RF-8602 Reproduced in 4.3.3.Final) = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: regression > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3387721836301696859==-- From jira-events at lists.jboss.org Mon Nov 18 11:57:05 2013 Content-Type: multipart/mixed; boundary="===============1135939235841324767==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Mon, 18 Nov 2013 11:57:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============1135939235841324767== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924588#com= ment-12924588 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- default Jboss AS 7.1 jsf API (2.1.7) = = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1135939235841324767==-- From jira-events at lists.jboss.org Mon Nov 18 11:59:06 2013 Content-Type: multipart/mixed; boundary="===============3077775018722837644==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Mon, 18 Nov 2013 11:59:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============3077775018722837644== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924588#com= ment-12924588 ] = Mohammad Weshah edited comment on RF-13323 at 11/18/13 11:57 AM: ----------------------------------------------------------------- default Jboss AS 7.1 jsf API (2.1.7) = Java 1.6.0_24-b07 64bit = was (Author: wish79): default Jboss AS 7.1 jsf API (2.1.7) = = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3077775018722837644==-- From jira-events at lists.jboss.org Mon Nov 18 12:34:06 2013 Content-Type: multipart/mixed; boundary="===============5345058543630030216==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Mon, 18 Nov 2013 12:34:05 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============5345058543630030216== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13352: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5345058543630030216==-- From jira-events at lists.jboss.org Mon Nov 18 12:40:07 2013 Content-Type: multipart/mixed; boundary="===============4997544029792719138==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 12:40:07 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============4997544029792719138== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4308: ------------------------------ Fix Version/s: 5-Tracking (was: 3.Future) = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4997544029792719138==-- From jira-events at lists.jboss.org Mon Nov 18 13:17:07 2013 Content-Type: multipart/mixed; boundary="===============7435982525295197523==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 13:17:06 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============7435982525295197523== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924613#comm= ent-12924613 ] = Brian Leathem commented on RF-4308: ----------------------------------- If we resolve RichWidget issue [#137|https://github.com/richwidgets/richwid= gets/issues/137] with the proposed javascript callback method, then the Ric= hFaces 5 picklist CDK template could define a _data-index_ attribute, and t= he widget-bridge could implement a sort callback that sorted on that _data-= index_ attribute. Using this sort would be activated by setting the _orderable =3D false_ fac= elet attribute. = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7435982525295197523==-- From jira-events at lists.jboss.org Mon Nov 18 18:03:06 2013 Content-Type: multipart/mixed; boundary="===============8670191596522488648==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 18:03:06 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============8670191596522488648== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924687#comm= ent-12924687 ] = Brian Leathem commented on RF-4308: ----------------------------------- RichWidget issue [#137|https://github.com/richwidgets/richwidgets/issues/13= 7] has been resoloved; the client-side hook is now in place. Further work = required to resolve this issue involves: # Extending [ClientSelectItem|https://github.com/richfaces/richfaces/blob/m= aster/framework/src/main/java/org/richfaces/ui/select/ClientSelectItem.java= ] to track the sequence number of the Selectitem in the pick list # Adding a _data-rf-index_ attribute to the items in the pick list [CDK tem= plate|https://github.com/richfaces/richfaces/blob/master/framework/src/main= /java/org/richfaces/ui/select/pickList/pick-list.template.xml] # Adding a _sortFunction_ option to the pick-list widget invocation in the = [pick-list-bridge|https://github.com/richfaces/richfaces/blob/master/framew= ork/src/main/resources/META-INF/resources/org.richfaces/bridge/select/pick-= list-bridge.js] ---- In the mean time, a workaround would be to implement your own pick list wid= get _sortFunction_ by listening for the widget _create_ event: {code} $('').on('picklist', 'create', function(a, b) { return ... }); {code} A concrete example of this looks like: {code} $('#list').on('picklistcreate', function(event, ui) { $('#list').pickList('option', 'sortFunction', function(a, b) { return $(a).data('key') - $(b).data('key'); }); }); {code} = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8670191596522488648==-- From jira-events at lists.jboss.org Mon Nov 18 18:05:07 2013 Content-Type: multipart/mixed; boundary="===============6354845244397350542==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 18:05:07 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============6354845244397350542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4308: ------------------------------ Affects Version/s: 5.0.0.Alpha1 4.3.4 = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.2.2, 4.3.4, 5.0.0.Alpha1 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6354845244397350542==-- From jira-events at lists.jboss.org Mon Nov 18 18:05:08 2013 Content-Type: multipart/mixed; boundary="===============6031281597442628632==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 18:05:07 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============6031281597442628632== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4308: ------------------------------ Component/s: component-selects = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 3.2.2, 4.3.4, 5.0.0.Alpha1 > Reporter: Martin H=C3=B6ller > Labels: order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6031281597442628632==-- From jira-events at lists.jboss.org Mon Nov 18 18:05:09 2013 Content-Type: multipart/mixed; boundary="===============1204291333027362147==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations Date: Mon, 18 Nov 2013 18:05:08 -0500 Message-ID: In-Reply-To: JIRA.12366369.1219836667000@jira02.app.mwc.hst.phx2.redhat.com --===============1204291333027362147== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4308?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-4308: ------------------------------ Labels: low_hanging_fruit order picklist sort (was: order picklist sor= t) = > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 3.2.2, 4.3.4, 5.0.0.Alpha1 > Reporter: Martin H=C3=B6ller > Labels: low_hanging_fruit, order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing th= is items again, the original order of the source list is not preserved. Thi= s makes it hard to find items in a list that is longer than just a fest ite= ms. A good example is the second example on the livedemo at http://livedemo= .exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Ala= bama) and remove it. It can now be found at the very end of the otherwise a= lphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source li= st, or add some attribute that enables automatic sorting. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1204291333027362147==-- From jira-events at lists.jboss.org Mon Nov 18 18:09:06 2013 Content-Type: multipart/mixed; boundary="===============4065499398396380578==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13355) Upgrade Mojarra Date: Mon, 18 Nov 2013 18:09:05 -0500 Message-ID: In-Reply-To: JIRA.12525466.1384785440000@jira02.app.mwc.hst.phx2.redhat.com --===============4065499398396380578== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13355?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13355: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Upgrade Mojarra > --------------- > > Key: RF-13355 > URL: https://issues.jboss.org/browse/RF-13355 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4065499398396380578==-- From jira-events at lists.jboss.org Mon Nov 18 18:09:06 2013 Content-Type: multipart/mixed; boundary="===============3920335988383333411==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13355) Upgrade Mojarra Date: Mon, 18 Nov 2013 18:09:05 -0500 Message-ID: In-Reply-To: JIRA.12525466.1384785440000@jira02.app.mwc.hst.phx2.redhat.com --===============3920335988383333411== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13355?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13355: ------------------------------- Summary: Upgrade Mojarra (was: Upgrade Mojarra to 2.1.26) RichFaces 5 Alphas should track WildFly, and hence update to JSF 2.2. = > Upgrade Mojarra > --------------- > > Key: RF-13355 > URL: https://issues.jboss.org/browse/RF-13355 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Pavol Pitonak > > RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3920335988383333411==-- From jira-events at lists.jboss.org Mon Nov 18 18:09:06 2013 Content-Type: multipart/mixed; boundary="===============2893464601259610864==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Mon, 18 Nov 2013 18:09:06 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============2893464601259610864== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13354: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2893464601259610864==-- From jira-events at lists.jboss.org Mon Nov 18 18:11:08 2013 Content-Type: multipart/mixed; boundary="===============1758709798919891232==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13353) Javascript callbacks on global queue are not called Date: Mon, 18 Nov 2013 18:11:07 -0500 Message-ID: In-Reply-To: JIRA.12525446.1384779581000@jira02.app.mwc.hst.phx2.redhat.com --===============1758709798919891232== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13353?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13353. -------------------------------- Resolution: Duplicate Issue = > Javascript callbacks on global queue are not called > --------------------------------------------------- > > Key: RF-13353 > URL: https://issues.jboss.org/browse/RF-13353 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Labels: a:queue > > Only two of the javascript callbacks on a:queue are actually functional: > {code} > > {code} > When doing an ajax request only onrequestqueue and onrequestdequeue are c= alled. onsubmit, oncomplete and onbeforedomupdate are not called. > Please note: log('xx') is a wrapper around console.log() -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1758709798919891232==-- From jira-events at lists.jboss.org Mon Nov 18 18:21:06 2013 Content-Type: multipart/mixed; boundary="===============8167938347144193964==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13340) orderingList - setting of some attributes does not have any effect on the component Date: Mon, 18 Nov 2013 18:21:05 -0500 Message-ID: In-Reply-To: JIRA.12524867.1384257806000@jira02.app.mwc.hst.phx2.redhat.com --===============8167938347144193964== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13340?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13340. -------------------------------- Assignee: (was: Brian Leathem) Fix Version/s: (was: 5.0.0.Alpha2) Resolution: Out of Date = > orderingList - setting of some attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13340 > URL: https://issues.jboss.org/browse/RF-13340 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of these attributes on a {{orderingList}} has no effect on the re= ndered component > * style > * valueChangeListener -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8167938347144193964==-- From jira-events at lists.jboss.org Mon Nov 18 18:25:06 2013 Content-Type: multipart/mixed; boundary="===============6475065107198078234==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel Date: Mon, 18 Nov 2013 18:25:06 -0500 Message-ID: In-Reply-To: JIRA.12481662.1356024824000@jira02.app.mwc.hst.phx2.redhat.com --===============6475065107198078234== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12682?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924692#com= ment-12924692 ] = Brian Leathem commented on RF-12682: ------------------------------------ [~salvois] would you please file a new issue (referencing this one) with ap= propriate re-producer code attached? = > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, test= case_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTabl= e is hidden (when the page loads) and then it is made visible later the tab= le can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if = we have one extendedDataTable in each tab (the first tab shows and the sec= ond tab is not shown at first). In this case once the user clicks on the s= econd tab and tries to populate the extendedDataTable (via any action). The= n the table is not rendered properly. A sample project has been provided a= t the following link that further describe this issue. You can download the= eclipse project attached at the end of the following message to reproduce = this issue. > https://community.jboss.org/message/783787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6475065107198078234==-- From jira-events at lists.jboss.org Tue Nov 19 02:25:06 2013 Content-Type: multipart/mixed; boundary="===============1774517035853362765==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13357) Switch RichFaces to use dist branch of RichWidgets to avoid a need for compiling own version Date: Tue, 19 Nov 2013 02:25:05 -0500 Message-ID: In-Reply-To: JIRA.12525517.1384845803710@jira02.app.mwc.hst.phx2.redhat.com --===============1774517035853362765== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13357: ------------------------------- Summary: Switch RichFaces to use dist branch of RichWidgets to= avoid a need for compiling own version Key: RF-13357 URL: https://issues.jboss.org/browse/RF-13357 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1774517035853362765==-- From jira-events at lists.jboss.org Tue Nov 19 02:58:06 2013 Content-Type: multipart/mixed; boundary="===============2272849653771509495==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 19 Nov 2013 02:58:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============2272849653771509495== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924738#com= ment-12924738 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13323: ---------------------------------- Sorry, even with yours JVM I can't reproduce it. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2272849653771509495==-- From jira-events at lists.jboss.org Tue Nov 19 03:00:08 2013 Content-Type: multipart/mixed; boundary="===============3465332802610035434==" MIME-Version: 1.0 From: Pavel Slegr (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12813) rich:panelMenuItem executes action even if disabled attribute evaluates to true Date: Tue, 19 Nov 2013 03:00:06 -0500 Message-ID: In-Reply-To: JIRA.12486095.1362189003000@jira02.app.mwc.hst.phx2.redhat.com --===============3465332802610035434== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12813?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavel Slegr reassigned RF-12813: -------------------------------- Assignee: Pavel Slegr = > rich:panelMenuItem executes action even if disabled attribute evaluates t= o true > -------------------------------------------------------------------------= ------ > > Key: RF-12813 > URL: https://issues.jboss.org/browse/RF-12813 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.3.0.Final > Reporter: Andrey Zhemoytuk > Assignee: Pavel Slegr > Fix For: 4.3.5 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > org.richfaces.renderkit.html.PanelMenuItemRenderer#doDecode does not chec= k 'disabled' attribute (how usually do other components before executing ac= tion) which may cause security issues. > Initially reported on: > http://stackoverflow.com/questions/15130807/richfaces-panelmenuitem-reeva= luating-disabled-not-working -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3465332802610035434==-- From jira-events at lists.jboss.org Tue Nov 19 03:49:06 2013 Content-Type: multipart/mixed; boundary="===============8138242324172828886==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13355) Upgrade Mojarra Date: Tue, 19 Nov 2013 03:49:05 -0500 Message-ID: In-Reply-To: JIRA.12525466.1384785440000@jira02.app.mwc.hst.phx2.redhat.com --===============8138242324172828886== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13355?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924751#com= ment-12924751 ] = Pavol Pitonak commented on RF-13355: ------------------------------------ My bad... should i create a new issue for upgrading RF 4.3 to Mojarra 2.1.2= 6? = > Upgrade Mojarra > --------------- > > Key: RF-13355 > URL: https://issues.jboss.org/browse/RF-13355 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8138242324172828886==-- From jira-events at lists.jboss.org Tue Nov 19 03:57:06 2013 Content-Type: multipart/mixed; boundary="===============7690208255034991780==" MIME-Version: 1.0 From: Immo Benjes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11711) a4j:queue - review usage of attributes onsubmit, oncomplete, onevent, onbeforedomupdate and onerror Date: Tue, 19 Nov 2013 03:57:06 -0500 Message-ID: In-Reply-To: JIRA.12452390.1321455049000@jira02.app.mwc.hst.phx2.redhat.com --===============7690208255034991780== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11711?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924754#com= ment-12924754 ] = Immo Benjes commented on RF-11711: ---------------------------------- I would prefer that the onsubmit and oncomplete are being fixed and not sim= ply dropped. I used these callbacks in RF 3.x. I now have to work around th= is by using a:status components, however I have several different status co= mponents and I need the onsubmit and oncomplete javascript callbacks on eve= ry ajax request. If you have it on the queue you only have to worry about o= ne place. If you have named status components (e.g. a little spinner next t= o an entry field) you will have to add the onsubmit/oncomplete on every sin= gle status component! = > a4j:queue - review usage of attributes onsubmit, oncomplete, onevent, onb= eforedomupdate and onerror > -------------------------------------------------------------------------= -------------------------- > > Key: RF-11711 > URL: https://issues.jboss.org/browse/RF-11711 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 5-Tracking > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7690208255034991780==-- From jira-events at lists.jboss.org Tue Nov 19 04:34:06 2013 Content-Type: multipart/mixed; boundary="===============3551895863336593124==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13287) rich:extendedDataTable column resizing with ajax loading not working properly Date: Tue, 19 Nov 2013 04:34:05 -0500 Message-ID: In-Reply-To: JIRA.12508686.1382616678000@jira02.app.mwc.hst.phx2.redhat.com --===============3551895863336593124== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13287?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924769#com= ment-12924769 ] = Michal Petrov commented on RF-13287: ------------------------------------ Done. = > rich:extendedDataTable column resizing with ajax loading not working prop= erly > -------------------------------------------------------------------------= ---- > > Key: RF-13287 > URL: https://issues.jboss.org/browse/RF-13287 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Glassfish 3.1.2.2, Mojarra 2.1.26, IE10, IE8, Chrome= 30, > Reporter: Andreas G > Assignee: Michal Petrov > Labels: needs-qe, testcase_provided > Fix For: 4.3.5 > > > In a rich:extendedDataTable with ajax loading turned on: When you resize = a column and scroll down (load data), the size of the columns reset to thei= r original value. Only the header keeps its size. The header and the data a= re not matching anymore. > Reproducible in the 4.3.4 showcase! -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3551895863336593124==-- From jira-events at lists.jboss.org Tue Nov 19 05:28:05 2013 Content-Type: multipart/mixed; boundary="===============0225050476270963161==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Tue, 19 Nov 2013 05:28:05 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============0225050476270963161== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13210: ---------------------------- Fix Version/s: 4.5.0.Alpha1 = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0225050476270963161==-- From jira-events at lists.jboss.org Tue Nov 19 06:43:06 2013 Content-Type: multipart/mixed; boundary="===============6053222804896057248==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11302) Subtable: column sorting doesn't work Date: Tue, 19 Nov 2013 06:43:05 -0500 Message-ID: In-Reply-To: JIRA.12444467.1313149423000@jira02.app.mwc.hst.phx2.redhat.com --===============6053222804896057248== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11302?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak resolved RF-11302. -------------------------------- Resolution: Out of Date Closing this issue because I cannot reproduce anymore on neither 4.3.4.Fina= l nor 5.0.0-SNAPSHOT. = > Subtable: column sorting doesn't work > ------------------------------------- > > Key: RF-11302 > URL: https://issues.jboss.org/browse/RF-11302 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality, component-tables > Affects Versions: 4.1.0.Milestone1 > Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182= b12567e28aef6bc > Metamer 4.1.0-SNAPSHOT r.22616 > Mojarra 2.1.2-FCS > Apache Tomcat 7.0.19 > OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux > Chrome 13.0.782.112 @ Linux i686 > Reporter: Pavol Pitonak > Labels: ci_issue > Fix For: 5-Tracking > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richCollapsibleSubTable/sorting-using-column.xhtml > # click on header "Name" > result: > subtables are not sorted, second click on the same header sorts both subt= ables -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6053222804896057248==-- From jira-events at lists.jboss.org Tue Nov 19 07:35:07 2013 Content-Type: multipart/mixed; boundary="===============5262202180620276702==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 07:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466435@jira02.app.mwc.hst.phx2.redhat.com --===============5262202180620276702== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13359: ---------------------------------- Summary: Showcase: several components don't work Key: RF-13359 URL: https://issues.jboss.org/browse/RF-13359 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha2 Environment: Showcase 5.0.0-SNAPSHOT Reporter: Pavol Pitonak Priority: Blocker # deploy Showcase and open http://localhost:8080/showcase/richfaces/compone= nt-sample.jsf?demo=3DprogressBar&skin=3DblueSky # open browser console # click on "Start Process" button result: * this message appears in browser console = {quote} event.returnValue is deprecated. Please use the standard event.preventDefau= lt() instead. = {quote} * progress bar is rendered wrongly * the same message is displayed on these pages (and these components are br= oken too) ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtog= glePanel&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtab= Panel&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dacc= ordion&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpan= elMenu&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Ddra= gDrop&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dhot= Key&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5262202180620276702==-- From jira-events at lists.jboss.org Tue Nov 19 08:09:06 2013 Content-Type: multipart/mixed; boundary="===============5626630944653273318==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 08:09:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543443@jira02.app.mwc.hst.phx2.redhat.com --===============5626630944653273318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13360: ---------------------------------- Summary: Pick list: buttons have two icons Key: RF-13360 URL: https://issues.jboss.org/browse/RF-13360 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Reporter: Pavol Pitonak # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-samp= le.jsf?demo=3DpickList&skin=3DblueSky result: * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5626630944653273318==-- From jira-events at lists.jboss.org Tue Nov 19 08:13:07 2013 Content-Type: multipart/mixed; boundary="===============0583305774460689542==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 08:13:07 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============0583305774460689542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13360: ------------------------------- Attachment: picklist.png = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Attachments: picklist.png > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0583305774460689542==-- From jira-events at lists.jboss.org Tue Nov 19 08:21:06 2013 Content-Type: multipart/mixed; boundary="===============5016736736710001938==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Tue, 19 Nov 2013 08:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150939@jira02.app.mwc.hst.phx2.redhat.com --===============5016736736710001938== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13361: ---------------------------------- Summary: Placeholder inside calendar is not rendered Key: RF-13361 URL: https://issues.jboss.org/browse/RF-13361 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Reporter: Pavol Pitonak # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/com= ponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sample.= jsf?demo=3Dplaceholder&skin=3DblueSky result: * in Showcase 4 calendar component has a placeholder text * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5016736736710001938==-- From jira-events at lists.jboss.org Tue Nov 19 08:27:06 2013 Content-Type: multipart/mixed; boundary="===============8689577757771473147==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Tue, 19 Nov 2013 08:27:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============8689577757771473147== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13361: ------------------------------- Attachment: placeholder1.png = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Attachments: placeholder1.png > > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8689577757771473147==-- From jira-events at lists.jboss.org Tue Nov 19 08:33:06 2013 Content-Type: multipart/mixed; boundary="===============5670011617721747238==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 08:33:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============5670011617721747238== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13359: ------------------------------- Description: = # deploy Showcase and open http://localhost:8080/showcase/richfaces/compone= nt-sample.jsf?demo=3DprogressBar&skin=3DblueSky # open browser console # click on "Start Process" button result: * this message appears in browser console = {quote} event.returnValue is deprecated. Please use the standard event.preventDefau= lt() instead. = {quote} * progress bar is rendered wrongly * the same message is displayed on these pages (and these components are br= oken too) ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtog= glePanel&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtab= Panel&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dacc= ordion&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpan= elMenu&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Ddra= gDrop&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dhot= Key&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dfoc= us&skin=3DblueSky was: # deploy Showcase and open http://localhost:8080/showcase/richfaces/compone= nt-sample.jsf?demo=3DprogressBar&skin=3DblueSky # open browser console # click on "Start Process" button result: * this message appears in browser console = {quote} event.returnValue is deprecated. Please use the standard event.preventDefau= lt() instead. = {quote} * progress bar is rendered wrongly * the same message is displayed on these pages (and these components are br= oken too) ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtog= glePanel&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dtab= Panel&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dacc= ordion&sample=3Ddynamic&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dpan= elMenu&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Ddra= gDrop&skin=3DblueSky ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dhot= Key&skin=3DblueSky = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5670011617721747238==-- From jira-events at lists.jboss.org Tue Nov 19 08:56:06 2013 Content-Type: multipart/mixed; boundary="===============1279364468626164074==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Tue, 19 Nov 2013 08:56:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============1279364468626164074== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13356: ------------------------------- Attachment: edt.png = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Pavol Pitonak > Attachments: edt.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1279364468626164074==-- From jira-events at lists.jboss.org Tue Nov 19 08:58:06 2013 Content-Type: multipart/mixed; boundary="===============3758625506769202656==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Tue, 19 Nov 2013 08:58:05 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============3758625506769202656== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13356: ---------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) In RichFaces 4.3.4.Final, rows are *not* stretched to 100% (see attached sc= reenshot). = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3758625506769202656==-- From jira-events at lists.jboss.org Tue Nov 19 09:12:06 2013 Content-Type: multipart/mixed; boundary="===============0656063819585682579==" MIME-Version: 1.0 From: Alexander Fox (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12759) rich:hotkey doesn't handle Ctrl+A key binding Date: Tue, 19 Nov 2013 09:12:06 -0500 Message-ID: In-Reply-To: JIRA.12483538.1359140693000@jira02.app.mwc.hst.phx2.redhat.com --===============0656063819585682579== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12759?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924900#com= ment-12924900 ] = Alexander Fox commented on RF-12759: ------------------------------------ Here is a better workaround that doesn't need with hard code= d element id. Hard coded element IDs are not usable. = > rich:hotkey doesn't handle Ctrl+A key binding > --------------------------------------------- > > Key: RF-12759 > URL: https://issues.jboss.org/browse/RF-12759 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.2.3.Final > Environment: Linux Fedora 16 x64, NetBeans 7.2, GlassFish 3.1.1, = CDI/Weld/CODI, JSF2, RichFaces4.2.3, Hibernate3.2.5, Firebird 2.5.1 > Reporter: Edilmar Alves > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: hotkey > Fix For: 5-Tracking > > Attachments: test.java, test.xhtml > > > When I try to use rich:hotkey with a4j:commandButton, it doesn't work. A = detailed explanation about this is in the forum. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0656063819585682579==-- From jira-events at lists.jboss.org Tue Nov 19 09:28:06 2013 Content-Type: multipart/mixed; boundary="===============0087419673770484415==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13357) Switch RichFaces to use dist branch of RichWidgets to avoid a need for compiling own version Date: Tue, 19 Nov 2013 09:28:06 -0500 Message-ID: In-Reply-To: JIRA.12525517.1384845803000@jira02.app.mwc.hst.phx2.redhat.com --===============0087419673770484415== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13357?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13357: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Switch RichFaces to use dist branch of RichWidgets to avoid a need for co= mpiling own version > -------------------------------------------------------------------------= ------------------- > > Key: RF-13357 > URL: https://issues.jboss.org/browse/RF-13357 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0087419673770484415==-- From jira-events at lists.jboss.org Tue Nov 19 09:28:06 2013 Content-Type: multipart/mixed; boundary="===============8012468876416656472==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13362) ajax.reslib and base-component.reslib conflicts with RF 5.0 versions Date: Tue, 19 Nov 2013 09:28:06 -0500 Message-ID: In-Reply-To: JIRA.12525577.1384871238000@jira02.app.mwc.hst.phx2.redhat.com --===============8012468876416656472== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13362?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13362: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > ajax.reslib and base-component.reslib conflicts with RF 5.0 versions > -------------------------------------------------------------------- > > Key: RF-13362 > URL: https://issues.jboss.org/browse/RF-13362 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8012468876416656472==-- From jira-events at lists.jboss.org Tue Nov 19 09:28:06 2013 Content-Type: multipart/mixed; boundary="===============7384046537438133634==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13362) ajax.reslib and base-component.reslib conflicts with RF 5.0 versions Date: Tue, 19 Nov 2013 09:28:06 -0500 Message-ID: In-Reply-To: JIRA.12525577.1384871238787@jira02.app.mwc.hst.phx2.redhat.com --===============7384046537438133634== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13362: ------------------------------- Summary: ajax.reslib and base-component.reslib conflicts with = RF 5.0 versions Key: RF-13362 URL: https://issues.jboss.org/browse/RF-13362 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 4.5.0.Alpha1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.5.0.Alpha1 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7384046537438133634==-- From jira-events at lists.jboss.org Tue Nov 19 09:30:07 2013 Content-Type: multipart/mixed; boundary="===============3518937339082047360==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13362) ajax.reslib and base-component.reslib conflicts with RF 5.0 versions Date: Tue, 19 Nov 2013 09:30:05 -0500 Message-ID: In-Reply-To: JIRA.12525577.1384871238000@jira02.app.mwc.hst.phx2.redhat.com --===============3518937339082047360== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13362?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13362: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > ajax.reslib and base-component.reslib conflicts with RF 5.0 versions > -------------------------------------------------------------------- > > Key: RF-13362 > URL: https://issues.jboss.org/browse/RF-13362 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3518937339082047360==-- From jira-events at lists.jboss.org Tue Nov 19 09:53:09 2013 Content-Type: multipart/mixed; boundary="===============6593965932667903155==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13363) Sync latest page fragments changes from RF-qa repository to RF repository Date: Tue, 19 Nov 2013 09:53:09 -0500 Message-ID: In-Reply-To: JIRA.12525345.1384537307000@jira02.app.mwc.hst.phx2.redhat.com --===============6593965932667903155== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13363?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D moved RFPL-3054 to RF-13363: --------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-13363 (was: RFPL-3054) Affects Version/s: 5.0.0.Alpha2 (was: 5.0.0.Alpha2) Component/s: page-fragments (was: QE) Fix Version/s: 5.0.0.Alpha2 (was: 5.0.0.Alpha2) = > Sync latest page fragments changes from RF-qa repository to RF repository > ------------------------------------------------------------------------- > > Key: RF-13363 > URL: https://issues.jboss.org/browse/RF-13363 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > After porting all changes delete the page-fragments submodule from richfa= ces-qa repository. > Make it depended on the RF's page fragments. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6593965932667903155==-- From jira-events at lists.jboss.org Tue Nov 19 09:55:06 2013 Content-Type: multipart/mixed; boundary="===============9082129849208780541==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13363) Sync latest page fragments changes from RF-qa repository to RF repository Date: Tue, 19 Nov 2013 09:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525345.1384537307000@jira02.app.mwc.hst.phx2.redhat.com --===============9082129849208780541== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13363?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924924#com= ment-12924924 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13363: --------------------------------- I have moved issue to RF / page-fragments issue tracker. = > Sync latest page fragments changes from RF-qa repository to RF repository > ------------------------------------------------------------------------- > > Key: RF-13363 > URL: https://issues.jboss.org/browse/RF-13363 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > After porting all changes delete the page-fragments submodule from richfa= ces-qa repository. > Make it depended on the RF's page fragments. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9082129849208780541==-- From jira-events at lists.jboss.org Tue Nov 19 10:01:06 2013 Content-Type: multipart/mixed; boundary="===============1352205125924954366==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Tue, 19 Nov 2013 10:01:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============1352205125924954366== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13210. ----------------------------- Resolution: Done = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1352205125924954366==-- From jira-events at lists.jboss.org Tue Nov 19 10:01:06 2013 Content-Type: multipart/mixed; boundary="===============0951940142739175111==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Tue, 19 Nov 2013 10:01:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============0951940142739175111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13331: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Luk=C3=A1=C5=A1 Macko) = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0951940142739175111==-- From jira-events at lists.jboss.org Tue Nov 19 10:03:06 2013 Content-Type: multipart/mixed; boundary="===============2709726654973045493==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13362) ajax.reslib and base-component.reslib conflicts with RF 5.0 versions Date: Tue, 19 Nov 2013 10:03:05 -0500 Message-ID: In-Reply-To: JIRA.12525577.1384871238000@jira02.app.mwc.hst.phx2.redhat.com --===============2709726654973045493== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13362?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13362. ----------------------------- Resolution: Done = > ajax.reslib and base-component.reslib conflicts with RF 5.0 versions > -------------------------------------------------------------------- > > Key: RF-13362 > URL: https://issues.jboss.org/browse/RF-13362 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2709726654973045493==-- From jira-events at lists.jboss.org Tue Nov 19 10:11:06 2013 Content-Type: multipart/mixed; boundary="===============2954468529689144673==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Tue, 19 Nov 2013 10:11:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============2954468529689144673== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924942#com= ment-12924942 ] = Pavol Pitonak commented on RF-13210: ------------------------------------ [~manovotn], please verify that this fix didn't break anything. = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2954468529689144673==-- From jira-events at lists.jboss.org Tue Nov 19 10:11:07 2013 Content-Type: multipart/mixed; boundary="===============2269512046481757003==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 10:11:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============2269512046481757003== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924944#com= ment-12924944 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13352: --------------------------------- Could you please send an update to https://github.com/richfaces/richfaces/p= ull/62 once implemented? = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2269512046481757003==-- From jira-events at lists.jboss.org Tue Nov 19 10:11:07 2013 Content-Type: multipart/mixed; boundary="===============5286305031425611165==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 10:11:07 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============5286305031425611165== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924944#com= ment-12924944 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13352 at 11/19/13 10:10 AM: ------------------------------------------------------------ Could you please send an update to https://github.com/richfaces/richfaces/p= ull/62 once you implement this? = was (Author: lfryc): Could you please send an update to https://github.com/richfaces/richfac= es/pull/62 once implemented? = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5286305031425611165==-- From jira-events at lists.jboss.org Tue Nov 19 10:15:07 2013 Content-Type: multipart/mixed; boundary="===============7813116363742808194==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Tue, 19 Nov 2013 10:15:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============7813116363742808194== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924954#com= ment-12924954 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13331: --------------------------------- Waiting for RF-13352 before we can merge this. = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7813116363742808194==-- From jira-events at lists.jboss.org Tue Nov 19 10:17:06 2013 Content-Type: multipart/mixed; boundary="===============2842445677959026059==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 10:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============2842445677959026059== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924957#com= ment-12924957 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13352: ---------------------------------- I will. = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2842445677959026059==-- From jira-events at lists.jboss.org Tue Nov 19 10:17:07 2013 Content-Type: multipart/mixed; boundary="===============3466934361032424924==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Tue, 19 Nov 2013 10:17:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============3466934361032424924== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13331: ---------------------------- Assignee: Luk=C3=A1=C5=A1 Macko (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3466934361032424924==-- From jira-events at lists.jboss.org Tue Nov 19 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============2098546150405230865==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Tue, 19 Nov 2013 10:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============2098546150405230865== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13354: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2098546150405230865==-- From jira-events at lists.jboss.org Tue Nov 19 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============6766769649629447032==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 10:19:05 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============6766769649629447032== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13352: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6766769649629447032==-- From jira-events at lists.jboss.org Tue Nov 19 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============4889560119814534883==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 10:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============4889560119814534883== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13352: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4889560119814534883==-- From jira-events at lists.jboss.org Tue Nov 19 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============7927022416888457135==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Tue, 19 Nov 2013 10:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============7927022416888457135== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13354: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7927022416888457135==-- From jira-events at lists.jboss.org Tue Nov 19 10:28:06 2013 Content-Type: multipart/mixed; boundary="===============3292967127756455976==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Tue, 19 Nov 2013 10:28:06 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============3292967127756455976== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13354: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3292967127756455976==-- From jira-events at lists.jboss.org Tue Nov 19 10:36:09 2013 Content-Type: multipart/mixed; boundary="===============0063817968777342817==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 10:36:09 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============0063817968777342817== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13359: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0063817968777342817==-- From jira-events at lists.jboss.org Tue Nov 19 10:50:07 2013 Content-Type: multipart/mixed; boundary="===============8117613605537155370==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 10:50:07 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============8117613605537155370== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924983#com= ment-12924983 ] = Michal Petrov commented on RF-13359: ------------------------------------ The warning messages are generated by the browser and the issue is in jQuer= y, I don't think it's soimething we directly use in RichFaces. See [http://bugs.jquery.com/ticket/14282]. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8117613605537155370==-- From jira-events at lists.jboss.org Tue Nov 19 11:04:06 2013 Content-Type: multipart/mixed; boundary="===============4416429711583346764==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 11:04:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============4416429711583346764== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13359: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4416429711583346764==-- From jira-events at lists.jboss.org Tue Nov 19 11:04:06 2013 Content-Type: multipart/mixed; boundary="===============5464541710402220788==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13357) Switch RichFaces to use dist branch of RichWidgets to avoid a need for compiling own version Date: Tue, 19 Nov 2013 11:04:06 -0500 Message-ID: In-Reply-To: JIRA.12525517.1384845803000@jira02.app.mwc.hst.phx2.redhat.com --===============5464541710402220788== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13357?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13357: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Switch RichFaces to use dist branch of RichWidgets to avoid a need for co= mpiling own version > -------------------------------------------------------------------------= ------------------- > > Key: RF-13357 > URL: https://issues.jboss.org/browse/RF-13357 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5464541710402220788==-- From jira-events at lists.jboss.org Tue Nov 19 11:04:06 2013 Content-Type: multipart/mixed; boundary="===============0505446621581986854==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13357) Switch RichFaces to use dist branch of RichWidgets to avoid a need for compiling own version Date: Tue, 19 Nov 2013 11:04:06 -0500 Message-ID: In-Reply-To: JIRA.12525517.1384845803000@jira02.app.mwc.hst.phx2.redhat.com --===============0505446621581986854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13357?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13357: ---------------------------------- Assignee: Brian Leathem = > Switch RichFaces to use dist branch of RichWidgets to avoid a need for co= mpiling own version > -------------------------------------------------------------------------= ------------------- > > Key: RF-13357 > URL: https://issues.jboss.org/browse/RF-13357 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0505446621581986854==-- From jira-events at lists.jboss.org Tue Nov 19 11:04:06 2013 Content-Type: multipart/mixed; boundary="===============3559989346313218377==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Tue, 19 Nov 2013 11:04:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============3559989346313218377== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13359: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3559989346313218377==-- From jira-events at lists.jboss.org Tue Nov 19 11:44:06 2013 Content-Type: multipart/mixed; boundary="===============8876523952881890527==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 11:44:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============8876523952881890527== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924998#com= ment-12924998 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13352 at 11/19/13 11:42 AM: ------------------------------------------------------------ Lukas, few implementation notes: and is used to match what categories we want to = run: http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#groups (note that should be rather named categories, but setting= s drives both, TestNG and JUnit tests, that's why maven-surefire-plugin fol= lows TestNG naming conventions) The idea is that if you turn on profile, it can append boolean conditions a= s the suffix of selector. But I found that there is specific impl detail, which is not evident from f= irst sight. During prototyping I have used together with , but= platform-specific configuration (e.g. affects . That's why {{${te= stCategory.excluded.browser}}} needs to be setup as: {code} AND NOT category.FailingOnFirefox {code} You can use my prototype as a reference impl: https://github.com/lfryc/surefire-and-junit-categories/blob/master/pom.xml#= L175 = was (Author: lfryc): Lukas, few implementation notes: and is used to match what categories we want to = run: http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#groups (note that should be rather named categories, but setting= s drives both, TestNG and JUnit tests, that's why maven-surefire-plugin fol= lows TestNG naming conventions) The idea is that if you turn on profile, it can append boolean conditions a= s the suffix of selector. But I found that there is specific impl detail, which is not evident from f= irst sight. During prototyping I have used together with , but= platform-specific configuration (e.g. affects . That's why {{${te= stCategory.excluded.browser}}} needs to be setup as: {code} AND NOT category.FailingFirefox {code} You can use my prototype as a reference impl: https://github.com/lfryc/surefire-and-junit-categories/blob/master/pom.xml#= L175 = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8876523952881890527==-- From jira-events at lists.jboss.org Tue Nov 19 11:44:06 2013 Content-Type: multipart/mixed; boundary="===============8124792648694953330==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Tue, 19 Nov 2013 11:44:06 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============8124792648694953330== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12924998#com= ment-12924998 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13352: --------------------------------- Lukas, few implementation notes: and is used to match what categories we want to = run: http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#groups (note that should be rather named categories, but setting= s drives both, TestNG and JUnit tests, that's why maven-surefire-plugin fol= lows TestNG naming conventions) The idea is that if you turn on profile, it can append boolean conditions a= s the suffix of selector. But I found that there is specific impl detail, which is not evident from f= irst sight. During prototyping I have used together with , but= platform-specific configuration (e.g. affects . That's why {{${te= stCategory.excluded.browser}}} needs to be setup as: {code} AND NOT category.FailingFirefox {code} You can use my prototype as a reference impl: https://github.com/lfryc/surefire-and-junit-categories/blob/master/pom.xml#= L175 = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8124792648694953330==-- From jira-events at lists.jboss.org Tue Nov 19 13:51:06 2013 Content-Type: multipart/mixed; boundary="===============4115143874021983022==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 13:51:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============4115143874021983022== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925041#com= ment-12925041 ] = Brian Leathem commented on RF-13360: ------------------------------------ The default value for the button text needs to be removed: https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/AbstractPickList.java#L73 = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4115143874021983022==-- From jira-events at lists.jboss.org Tue Nov 19 13:51:06 2013 Content-Type: multipart/mixed; boundary="===============8831144400767173162==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 13:51:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============8831144400767173162== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13360: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8831144400767173162==-- From jira-events at lists.jboss.org Tue Nov 19 13:51:06 2013 Content-Type: multipart/mixed; boundary="===============4143794925389052001==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Tue, 19 Nov 2013 13:51:05 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============4143794925389052001== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13361: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4143794925389052001==-- From jira-events at lists.jboss.org Tue Nov 19 13:51:06 2013 Content-Type: multipart/mixed; boundary="===============8927090394986104296==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 13:51:05 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============8927090394986104296== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13360: ------------------------------- Priority: Trivial (was: Major) = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Trivial > Attachments: picklist.png > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8927090394986104296==-- From jira-events at lists.jboss.org Tue Nov 19 13:59:06 2013 Content-Type: multipart/mixed; boundary="===============8624274501604714781==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Tue, 19 Nov 2013 13:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============8624274501604714781== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13356. -------------------------------- Resolution: Cannot Reproduce Bug We are unable to re-produce this issue. Perhaps you have some [~uhim] perh= aps you have some conflicting CSS in your application? If you can provide = a self-contained (simple) re-producer, feel free to re-open this issue. = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8624274501604714781==-- From jira-events at lists.jboss.org Tue Nov 19 13:59:07 2013 Content-Type: multipart/mixed; boundary="===============2003746225159035058==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13355) Upgrade Mojarra Date: Tue, 19 Nov 2013 13:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525466.1384785440000@jira02.app.mwc.hst.phx2.redhat.com --===============2003746225159035058== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13355?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925044#com= ment-12925044 ] = Brian Leathem commented on RF-13355: ------------------------------------ +1, please create the additional issue. = > Upgrade Mojarra > --------------- > > Key: RF-13355 > URL: https://issues.jboss.org/browse/RF-13355 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2003746225159035058==-- From jira-events at lists.jboss.org Tue Nov 19 14:07:06 2013 Content-Type: multipart/mixed; boundary="===============1911464616404548513==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Tue, 19 Nov 2013 14:07:06 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============1911464616404548513== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925048#com= ment-12925048 ] = Brian Leathem commented on RF-13323: ------------------------------------ [~wish79] have you tried running the standalone sample [~jstefek] shared? = Do you notice your issue with that sample app? = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1911464616404548513==-- From jira-events at lists.jboss.org Tue Nov 19 14:11:06 2013 Content-Type: multipart/mixed; boundary="===============2856342161298908182==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11711) a4j:queue - review usage of attributes onsubmit, oncomplete, onevent, onbeforedomupdate and onerror Date: Tue, 19 Nov 2013 14:11:06 -0500 Message-ID: In-Reply-To: JIRA.12452390.1321455049000@jira02.app.mwc.hst.phx2.redhat.com --===============2856342161298908182== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11711?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925049#com= ment-12925049 ] = Brian Leathem commented on RF-11711: ------------------------------------ thanks for sharing your use case [~ibenjes] = > a4j:queue - review usage of attributes onsubmit, oncomplete, onevent, onb= eforedomupdate and onerror > -------------------------------------------------------------------------= -------------------------- > > Key: RF-11711 > URL: https://issues.jboss.org/browse/RF-11711 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.CR1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 5-Tracking > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2856342161298908182==-- From jira-events at lists.jboss.org Tue Nov 19 14:45:06 2013 Content-Type: multipart/mixed; boundary="===============6444707696124147390==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13358) rich:panelMenuGroup allowing actions executions even if originally disabled Date: Tue, 19 Nov 2013 14:45:05 -0500 Message-ID: In-Reply-To: JIRA.12525535.1384858189000@jira02.app.mwc.hst.phx2.redhat.com --===============6444707696124147390== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13358?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13358: ------------------------------- Security: Public (was: JBoss Internal) = > rich:panelMenuGroup allowing actions executions even if originally disabl= ed > -------------------------------------------------------------------------= -- > > Key: RF-13358 > URL: https://issues.jboss.org/browse/RF-13358 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.3.4 > Environment: Linux, AS 7.1.1 Brontes, FF 25 with FireBug addOn > Reporter: Pavel Slegr > Assignee: Pavel Slegr > Priority: Critical > Fix For: 4.3.5 > > > related to https://issues.jboss.org/browse/RF-12813 > This can be possibly a security hole, as the second component piece is di= scovered to allow tampering actions through JS. > I suggest to try out on other components as well !!! > with following example > {code} > { > > > > > > > > } > {code} > the group43 element is intended to be disabled and thus not allowing any = actions execution on it > Once tampered with = > {code} > { > new RichFaces.ui.PanelMenuGroup("f:group43",{"collapseEvent":"click","uns= electable":false,"selectable":false,"name":"group43","ajax":{"incId":"1"} ,= "stylePrefix":"rf\u002Dpm\u002Dgr","expanded":false,"expandEvent":"click","= disabled":false,"mode":"client"} ) > } > {code} > It is possible to expand the group and execute further actions on its chi= ldren elements -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6444707696124147390==-- From jira-events at lists.jboss.org Tue Nov 19 15:35:06 2013 Content-Type: multipart/mixed; boundary="===============1130556357189669842==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Tue, 19 Nov 2013 15:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============1130556357189669842== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13361: ------------------------------- Original Estimate: 30 minutes Remaining Estimate: 30 minutes = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1130556357189669842==-- From jira-events at lists.jboss.org Tue Nov 19 15:35:06 2013 Content-Type: multipart/mixed; boundary="===============2024353578313714418==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 15:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============2024353578313714418== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13360: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2024353578313714418==-- From jira-events at lists.jboss.org Tue Nov 19 15:35:06 2013 Content-Type: multipart/mixed; boundary="===============7704759063232521967==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 15:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============7704759063232521967== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13360: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7704759063232521967==-- From jira-events at lists.jboss.org Tue Nov 19 15:35:06 2013 Content-Type: multipart/mixed; boundary="===============0244689447645075249==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Tue, 19 Nov 2013 15:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============0244689447645075249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13361: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0244689447645075249==-- From jira-events at lists.jboss.org Tue Nov 19 15:37:06 2013 Content-Type: multipart/mixed; boundary="===============8119552601211731243==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 15:37:06 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============8119552601211731243== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13360: ---------------------------------- Assignee: Brian Leathem = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8119552601211731243==-- From jira-events at lists.jboss.org Tue Nov 19 15:37:06 2013 Content-Type: multipart/mixed; boundary="===============4500410492524473744==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13357) Switch RichFaces to use dist branch of RichWidgets to avoid a need for compiling own version Date: Tue, 19 Nov 2013 15:37:06 -0500 Message-ID: In-Reply-To: JIRA.12525517.1384845803000@jira02.app.mwc.hst.phx2.redhat.com --===============4500410492524473744== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13357?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13357. -------------------------------- Resolution: Done = > Switch RichFaces to use dist branch of RichWidgets to avoid a need for co= mpiling own version > -------------------------------------------------------------------------= ------------------- > > Key: RF-13357 > URL: https://issues.jboss.org/browse/RF-13357 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4500410492524473744==-- From jira-events at lists.jboss.org Tue Nov 19 15:37:06 2013 Content-Type: multipart/mixed; boundary="===============2883521899088040278==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13301) Favor use of Page Fragments in Framework Tests Date: Tue, 19 Nov 2013 15:37:06 -0500 Message-ID: In-Reply-To: JIRA.12509047.1383080150000@jira02.app.mwc.hst.phx2.redhat.com --===============2883521899088040278== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13301?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13301: ------------------------------- Fix Version/s: 5.0.0.Alpha3 (was: 5.0.0.Alpha2) = > Favor use of Page Fragments in Framework Tests > ---------------------------------------------- > > Key: RF-13301 > URL: https://issues.jboss.org/browse/RF-13301 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > Since we have introduced Page Fragments in Alpha2, we could favor their u= sage in fragment tests. > We could start to refactor tests for components rewritten in Alpha2 and = continue as we rewrite other components. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2883521899088040278==-- From jira-events at lists.jboss.org Tue Nov 19 16:54:06 2013 Content-Type: multipart/mixed; boundary="===============3005271588540891938==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Tue, 19 Nov 2013 16:54:05 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============3005271588540891938== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13360. -------------------------------- Resolution: Done = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3005271588540891938==-- From jira-events at lists.jboss.org Wed Nov 20 03:28:06 2013 Content-Type: multipart/mixed; boundary="===============6208431199699953779==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Wed, 20 Nov 2013 03:28:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============6208431199699953779== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925205#com= ment-12925205 ] = Brian Leathem commented on RF-13359: ------------------------------------ I dug into the progressBar not working. It doesn't seem to be a resource m= apping issue; all resources are correctly mapped and retrieved. In compari= ng the RF 4 showcase to the RF 5 one, I did notice that the following line = is not being called in the case of the RF 5 showcase: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/output/progressBar/progressBar.js#L87 It seems that the event.componentData is null. Comparing the AJAX response= body did not show any difference. But I suspect the problem will be uncov= ered by a more careful comparison of the AJAX responses (between the RF 4 a= nd RF 5 showcases). = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6208431199699953779==-- From jira-events at lists.jboss.org Wed Nov 20 04:31:06 2013 Content-Type: multipart/mixed; boundary="===============5951626750566821383==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 20 Nov 2013 04:31:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============5951626750566821383== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925243#com= ment-12925243 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- Dear Brian, Sorry for being delay , i test the RF-13323-2 it works fine without a4j:me= diaOutput , but when i add it , the list not reset the image do not display= , but the strange thing is i copy all lib from RF-13323-2 to my test applic= ation the list is still disappear (without adding a4j:mediaOutput). Regards Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5951626750566821383==-- From jira-events at lists.jboss.org Wed Nov 20 04:39:06 2013 Content-Type: multipart/mixed; boundary="===============3499659156286078762==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 20 Nov 2013 04:39:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============3499659156286078762== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925243#com= ment-12925243 ] = Mohammad Weshah edited comment on RF-13323 at 11/20/13 4:37 AM: ---------------------------------------------------------------- Dear Brian, Sorry for being delay , i test the RF-13323-2 it works fine without a4j:me= diaOutput , but when i add the a4j:mediaOutput the list not reset the image= do not display , but the strange thing is i copy all lib from RF-13323-2 t= o my test application the list is still disappear in my app (without adding= a4j:mediaOutput). Regards Wish79 = was (Author: wish79): Dear Brian, Sorry for being delay , i test the RF-13323-2 it works fine without a4j:me= diaOutput , but when i add it , the list not reset the image do not display= , but the strange thing is i copy all lib from RF-13323-2 to my test applic= ation the list is still disappear (without adding a4j:mediaOutput). Regards Wish79 = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3499659156286078762==-- From jira-events at lists.jboss.org Wed Nov 20 04:53:06 2013 Content-Type: multipart/mixed; boundary="===============1671456898166159021==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13289) inputspinner : setting the value to empty/null Date: Wed, 20 Nov 2013 04:53:06 -0500 Message-ID: In-Reply-To: JIRA.12508761.1382687176000@jira02.app.mwc.hst.phx2.redhat.com --===============1671456898166159021== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13289?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925254#com= ment-12925254 ] = Juraj H=C3=BAska commented on RF-13289: ---------------------------------- I tried to reproduce it with metamer and it is so as reported. It is not possible to set the value to be empty. {{inputNumberSpinner}} is = supposing to have attribute {{value}} to be bound to {{double/Double}}, set= ting of {{null}} does not help. = > inputspinner : setting the value to empty/null > ----------------------------------------------- > > Key: RF-13289 > URL: https://issues.jboss.org/browse/RF-13289 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.3 > Reporter: liumin hu > Assignee: Juraj H=C3=BAska > > can put empty/null value in a spinner, everytime the spinner changes emp= ty to 0. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1671456898166159021==-- From jira-events at lists.jboss.org Wed Nov 20 04:53:08 2013 Content-Type: multipart/mixed; boundary="===============5110899743375276672==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13289) inputspinner : setting the value to empty/null Date: Wed, 20 Nov 2013 04:53:08 -0500 Message-ID: In-Reply-To: JIRA.12508761.1382687176000@jira02.app.mwc.hst.phx2.redhat.com --===============5110899743375276672== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13289?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13289: ----------------------------- Assignee: (was: Juraj H=C3=BAska) = > inputspinner : setting the value to empty/null > ----------------------------------------------- > > Key: RF-13289 > URL: https://issues.jboss.org/browse/RF-13289 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.3 > Reporter: liumin hu > > can put empty/null value in a spinner, everytime the spinner changes emp= ty to 0. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5110899743375276672==-- From jira-events at lists.jboss.org Wed Nov 20 04:55:06 2013 Content-Type: multipart/mixed; boundary="===============3835426200065666858==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13289) inputspinner : setting the value to empty/null Date: Wed, 20 Nov 2013 04:55:06 -0500 Message-ID: In-Reply-To: JIRA.12508761.1382687176000@jira02.app.mwc.hst.phx2.redhat.com --===============3835426200065666858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13289?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13289: ----------------------------- Affects Version/s: 5.0.0.Alpha2 = > inputspinner : setting the value to empty/null > ----------------------------------------------- > > Key: RF-13289 > URL: https://issues.jboss.org/browse/RF-13289 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.3, 5.0.0.Alpha2 > Reporter: liumin hu > > can put empty/null value in a spinner, everytime the spinner changes emp= ty to 0. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3835426200065666858==-- From jira-events at lists.jboss.org Wed Nov 20 04:55:06 2013 Content-Type: multipart/mixed; boundary="===============5358470771839220134==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13364) Upgrade Mojarra to 2.1.26 in RichFaces 4 Date: Wed, 20 Nov 2013 04:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525674.1384941255874@jira02.app.mwc.hst.phx2.redhat.com --===============5358470771839220134== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13364: ---------------------------------- Summary: Upgrade Mojarra to 2.1.26 in RichFaces 4 Key: RF-13364 URL: https://issues.jboss.org/browse/RF-13364 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: third-party Affects Versions: 5.0.0.Alpha2 Reporter: Pavol Pitonak Fix For: 5.0.0.Alpha3 RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upgra= de it to the lastest version 2.1.26. [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5358470771839220134==-- From jira-events at lists.jboss.org Wed Nov 20 04:55:07 2013 Content-Type: multipart/mixed; boundary="===============2154619451095105480==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13364) Upgrade Mojarra to 2.1.26 in RichFaces 4 Date: Wed, 20 Nov 2013 04:55:07 -0500 Message-ID: In-Reply-To: JIRA.12525674.1384941255000@jira02.app.mwc.hst.phx2.redhat.com --===============2154619451095105480== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13364?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13364: ------------------------------- Description: = RichFaces 4 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upgra= de it to the lastest version 2.1.26. [1] https://github.com/richfaces4/build/blob/master/bom/pom.xml was: RichFaces 5 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upgra= de it to the lastest version 2.1.26. [1] https://github.com/richfaces/richfaces/blob/master/build/pom.xml = > Upgrade Mojarra to 2.1.26 in RichFaces 4 > ---------------------------------------- > > Key: RF-13364 > URL: https://issues.jboss.org/browse/RF-13364 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > RichFaces 4 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces4/build/blob/master/bom/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2154619451095105480==-- From jira-events at lists.jboss.org Wed Nov 20 04:57:06 2013 Content-Type: multipart/mixed; boundary="===============3826502211234313472==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13364) Upgrade Mojarra to 2.1.26 in RichFaces 4 Date: Wed, 20 Nov 2013 04:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525674.1384941255000@jira02.app.mwc.hst.phx2.redhat.com --===============3826502211234313472== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13364?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13364: ------------------------------- Affects Version/s: 4.3.4 (was: 5.0.0.Alpha2) = > Upgrade Mojarra to 2.1.26 in RichFaces 4 > ---------------------------------------- > > Key: RF-13364 > URL: https://issues.jboss.org/browse/RF-13364 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.3.4 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha3 > > > RichFaces 4 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces4/build/blob/master/bom/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3826502211234313472==-- From jira-events at lists.jboss.org Wed Nov 20 04:57:06 2013 Content-Type: multipart/mixed; boundary="===============1146291646939680515==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13364) Upgrade Mojarra to 2.1.26 in RichFaces 4 Date: Wed, 20 Nov 2013 04:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525674.1384941255000@jira02.app.mwc.hst.phx2.redhat.com --===============1146291646939680515== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13364?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13364: ------------------------------- Fix Version/s: (was: 5.0.0.Alpha3) = > Upgrade Mojarra to 2.1.26 in RichFaces 4 > ---------------------------------------- > > Key: RF-13364 > URL: https://issues.jboss.org/browse/RF-13364 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.3.4 > Reporter: Pavol Pitonak > > RichFaces 4 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces4/build/blob/master/bom/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1146291646939680515==-- From jira-events at lists.jboss.org Wed Nov 20 04:57:06 2013 Content-Type: multipart/mixed; boundary="===============7213902388172999230==" MIME-Version: 1.0 From: Anton Bogoslavskyi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 04:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============7213902388172999230== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Anton Bogoslavskyi updated RF-13356: ------------------------------------ Attachment: screen1.png screen2.png extended-screen1.png extended-screen2.png screen1 and screen2 are with dataTable. two others represent extendedDataTable. difference: tables on the screens 1 have: #alarmList { height: 500px; } = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7213902388172999230==-- From jira-events at lists.jboss.org Wed Nov 20 05:05:06 2013 Content-Type: multipart/mixed; boundary="===============8310416272774290728==" MIME-Version: 1.0 From: Anton Bogoslavskyi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 05:05:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============8310416272774290728== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925260#com= ment-12925260 ] = Anton Bogoslavskyi commented on RF-13356: ----------------------------------------- Sorry, my bad. Streching reproduced for simple dataTable. But that actually= doesn't solve my problem. = What I see in your screenshot actually doesn't seem to look OK. Yes, the ro= ws are not streched, but why the footer is in the middle of the control? So what I really need from this control is that the height should be consta= nt (the footer is always on the same place) while the rows are not streched= to fill all the space between header and footer. Why: I have pagination control in footer and I expect it not to jump when I clic= k the "next page" button. I just apologize for wasting your time reproducing strech issue for extende= dDataTable. I might reopen this issue for dataTable. Or create another one = for extendedDataTable to place footer on the right place. Or both. Which wa= y is preferable for you? PS: my screenshots are both 4.3.3, do not have time to migrate to 4.3.4 yet/ = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8310416272774290728==-- From jira-events at lists.jboss.org Wed Nov 20 05:20:07 2013 Content-Type: multipart/mixed; boundary="===============6375432981736091033==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13360) Pick list: buttons have two icons Date: Wed, 20 Nov 2013 05:20:07 -0500 Message-ID: In-Reply-To: JIRA.12525559.1384866543000@jira02.app.mwc.hst.phx2.redhat.com --===============6375432981736091033== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13360?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13360. ------------------------------ Verified = > Pick list: buttons have two icons > --------------------------------- > > Key: RF-13360 > URL: https://issues.jboss.org/browse/RF-13360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Trivial > Fix For: 5.0.0.Alpha2 > > Attachments: picklist.png > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DpickList&skin=3DblueSky > result: > * all buttons have two icons, see attached screenshot -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6375432981736091033==-- From jira-events at lists.jboss.org Wed Nov 20 05:26:06 2013 Content-Type: multipart/mixed; boundary="===============5959237998759887587==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 05:26:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============5959237998759887587== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13356: ------------------------------- Affects Version/s: 5.0.0.Alpha1 = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5959237998759887587==-- From jira-events at lists.jboss.org Wed Nov 20 05:26:06 2013 Content-Type: multipart/mixed; boundary="===============6945583693402084266==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 05:26:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============6945583693402084266== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reopened RF-13356: -------------------------------- I could reproduce with data table. = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6945583693402084266==-- From jira-events at lists.jboss.org Wed Nov 20 05:26:06 2013 Content-Type: multipart/mixed; boundary="===============2824811190863376628==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) ExtendedDataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 05:26:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============2824811190863376628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925266#com= ment-12925266 ] = Pavol Pitonak commented on RF-13356: ------------------------------------ [~uhim], please create a new issue for EDT footer issue. = > ExtendedDataTable: row height strechted to 100% of the table height > ------------------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2824811190863376628==-- From jira-events at lists.jboss.org Wed Nov 20 05:26:07 2013 Content-Type: multipart/mixed; boundary="===============3355758745317647356==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) DataTable: row height strechted to 100% of the table height Date: Wed, 20 Nov 2013 05:26:07 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============3355758745317647356== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13356: ------------------------------- Summary: DataTable: row height strechted to 100% of the table height (= was: ExtendedDataTable: row height strechted to 100% of the table height) = > DataTable: row height strechted to 100% of the table height > ----------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3355758745317647356==-- From jira-events at lists.jboss.org Wed Nov 20 06:55:06 2013 Content-Type: multipart/mixed; boundary="===============6939254214180729139==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Wed, 20 Nov 2013 06:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============6939254214180729139== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13361: ---------------------------------- Assignee: Michal Petrov = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6939254214180729139==-- From jira-events at lists.jboss.org Wed Nov 20 07:01:06 2013 Content-Type: multipart/mixed; boundary="===============0482180346930451863==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Wed, 20 Nov 2013 07:01:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============0482180346930451863== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925297#com= ment-12925297 ] = Michal Petrov commented on RF-13361: ------------------------------------ Well, that's a weird one. The {{":input"}} selector doesn't seem to work pr= operly in RF 5. Trying this in console: {code} $("
").find(":input") {code} works in RF 4 but not in RF 5, even though both are using jQuery v1.8.3. = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0482180346930451863==-- From jira-events at lists.jboss.org Wed Nov 20 07:53:06 2013 Content-Type: multipart/mixed; boundary="===============4300892413873081898==" MIME-Version: 1.0 From: Gustavo Ehrhardt (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Wed, 20 Nov 2013 07:53:06 -0500 Message-ID: In-Reply-To: JIRA.12462470.1332784893000@jira02.app.mwc.hst.phx2.redhat.com --===============4300892413873081898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925314#com= ment-12925314 ] = Gustavo Ehrhardt commented on RF-12092: --------------------------------------- Just another workaround: Move the "a4j:status" to inside of "f:view" but outside of "h:form". This workaround doesn't require to change the commandLink call. = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final, 4.2.1.Final > Reporter: Robert Gary > Fix For: 5-Tracking > > Attachments: a4jPollIssue.war > > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4300892413873081898==-- From jira-events at lists.jboss.org Wed Nov 20 08:12:06 2013 Content-Type: multipart/mixed; boundary="===============4271263585587325098==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Wed, 20 Nov 2013 08:12:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090549@jira02.app.mwc.hst.phx2.redhat.com --===============4271263585587325098== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13365: -------------------------------- Summary: push: cannot be disabled with ajax request Key: RF-13365 URL: https://issues.jboss.org/browse/RF-13365 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 5.0.0.Alpha2 Environment: EAP 6.1, Glassfish 3.1.2.2 FF 25, Chrome 31 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4271263585587325098==-- From jira-events at lists.jboss.org Wed Nov 20 08:24:06 2013 Content-Type: multipart/mixed; boundary="===============3971269326424455640==" MIME-Version: 1.0 From: Anton Bogoslavskyi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13366) ExtendedDataTable: footer is in the middle of the control if the height is constant Date: Wed, 20 Nov 2013 08:24:05 -0500 Message-ID: In-Reply-To: JIRA.12525699.1384953843049@jira02.app.mwc.hst.phx2.redhat.com --===============3971269326424455640== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Anton Bogoslavskyi created RF-13366: --------------------------------------- Summary: ExtendedDataTable: footer is in the middle of the con= trol if the height is constant Key: RF-13366 URL: https://issues.jboss.org/browse/RF-13366 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.3.3 Reporter: Anton Bogoslavskyi Reproduce: Define class and assign it to your extendedDataTable: .table_style { height: 500px; } Prepare the test data to have minimum rows (not fill the whole table with d= ata). Expected: Table height is 500px. Footer is on the bottom of the table and won't chang= e place when rows amount changes. The whitespace is between the last row and the footer Actual: Table height is 500px. Footer is right under the last row and jumps each ti= me the amount of rows changes. The whitespace is under the footer and surrounded by the table border. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3971269326424455640==-- From jira-events at lists.jboss.org Wed Nov 20 08:30:08 2013 Content-Type: multipart/mixed; boundary="===============7948535607785129986==" MIME-Version: 1.0 From: Anton Bogoslavskyi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13366) ExtendedDataTable: footer is in the middle of the control if the height is constant Date: Wed, 20 Nov 2013 08:30:06 -0500 Message-ID: In-Reply-To: JIRA.12525699.1384953843000@jira02.app.mwc.hst.phx2.redhat.com --===============7948535607785129986== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13366?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Anton Bogoslavskyi updated RF-13366: ------------------------------------ Attachment: edt[1].png = > ExtendedDataTable: footer is in the middle of the control if the height i= s constant > -------------------------------------------------------------------------= ---------- > > Key: RF-13366 > URL: https://issues.jboss.org/browse/RF-13366 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Attachments: edt[1].png > > > Reproduce: > Define class and assign it to your extendedDataTable: > .table_style { > height: 500px; > } > Prepare the test data to have minimum rows (not fill the whole table with= data). > Expected: > Table height is 500px. Footer is on the bottom of the table and won't cha= nge place when rows amount changes. > The whitespace is between the last row and the footer > Actual: > Table height is 500px. Footer is right under the last row and jumps each = time the amount of rows changes. > The whitespace is under the footer and surrounded by the table border. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7948535607785129986==-- From jira-events at lists.jboss.org Wed Nov 20 09:05:06 2013 Content-Type: multipart/mixed; boundary="===============3685235001541468328==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Wed, 20 Nov 2013 09:05:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============3685235001541468328== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925334#com= ment-12925334 ] = Michal Petrov commented on RF-13361: ------------------------------------ Fix [pushed|https://github.com/richfaces/richfaces/commit/177d138dbf3de18fe= 9d2ea691e821aea6212f4ec]. = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3685235001541468328==-- From jira-events at lists.jboss.org Wed Nov 20 09:05:06 2013 Content-Type: multipart/mixed; boundary="===============8212701234101964140==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Wed, 20 Nov 2013 09:05:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============8212701234101964140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov resolved RF-13361. -------------------------------- Resolution: Done = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8212701234101964140==-- From jira-events at lists.jboss.org Wed Nov 20 09:07:06 2013 Content-Type: multipart/mixed; boundary="===============1785236763882624268==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13367) pickList nested in accordion has clipped ordering buttons Date: Wed, 20 Nov 2013 09:07:06 -0500 Message-ID: In-Reply-To: JIRA.12525704.1384956330000@jira02.app.mwc.hst.phx2.redhat.com --===============1785236763882624268== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13367?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13367: ----------------------------- Attachment: pickListInAccordion.png = > pickList nested in accordion has clipped ordering buttons > --------------------------------------------------------- > > Key: RF-13367 > URL: https://issues.jboss.org/browse/RF-13367 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListInAccordion.png > > > When using {{pickList}} inside of {{accordion}}, then pickList ordering b= uttons are clipped. One has to scroll the view to the right in order to see= it fully. > Please see the attached screenshot. IMHO the pickList should adapt its si= ze to its parent container. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1785236763882624268==-- From jira-events at lists.jboss.org Wed Nov 20 09:07:06 2013 Content-Type: multipart/mixed; boundary="===============4015669751007989447==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13367) pickList nested in accordion has clipped ordering buttons Date: Wed, 20 Nov 2013 09:07:05 -0500 Message-ID: In-Reply-To: JIRA.12525704.1384956330702@jira02.app.mwc.hst.phx2.redhat.com --===============4015669751007989447== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13367: -------------------------------- Summary: pickList nested in accordion has clipped ordering but= tons Key: RF-13367 URL: https://issues.jboss.org/browse/RF-13367 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska Attachments: pickListInAccordion.png When using {{pickList}} inside of {{accordion}}, then pickList ordering but= tons are clipped. One has to scroll the view to the right in order to see i= t fully. Please see the attached screenshot. IMHO the pickList should adapt its size= to its parent container. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4015669751007989447==-- From jira-events at lists.jboss.org Wed Nov 20 09:09:05 2013 Content-Type: multipart/mixed; boundary="===============2272022899988334946==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13367) pickList nested in accordion has clipped ordering buttons Date: Wed, 20 Nov 2013 09:09:05 -0500 Message-ID: In-Reply-To: JIRA.12525704.1384956330000@jira02.app.mwc.hst.phx2.redhat.com --===============2272022899988334946== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13367?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13367: ----------------------------- Steps to Reproduce: = # Build and load metamer # access http://localhost:8080/metamer/faces/components/richPickList/simple= .xhtml # switch to the accordion template # see that pickList is clipped = > pickList nested in accordion has clipped ordering buttons > --------------------------------------------------------- > > Key: RF-13367 > URL: https://issues.jboss.org/browse/RF-13367 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListInAccordion.png > > > When using {{pickList}} inside of {{accordion}}, then pickList ordering b= uttons are clipped. One has to scroll the view to the right in order to see= it fully. > Please see the attached screenshot. IMHO the pickList should adapt its si= ze to its parent container. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2272022899988334946==-- From jira-events at lists.jboss.org Wed Nov 20 09:13:06 2013 Content-Type: multipart/mixed; boundary="===============8273374194082052201==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflow it Date: Wed, 20 Nov 2013 09:13:06 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741850@jira02.app.mwc.hst.phx2.redhat.com --===============8273374194082052201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13368: -------------------------------- Summary: pickList nested in collapsiblePanel overflow it Key: RF-13368 URL: https://issues.jboss.org/browse/RF-13368 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. Please see the attached screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8273374194082052201==-- From jira-events at lists.jboss.org Wed Nov 20 09:15:07 2013 Content-Type: multipart/mixed; boundary="===============0107900108545773912==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflow it Date: Wed, 20 Nov 2013 09:15:07 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============0107900108545773912== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13368: ----------------------------- Attachment: pickListAndCollapsiblePanel.png = > pickList nested in collapsiblePanel overflow it > ----------------------------------------------- > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0107900108545773912==-- From jira-events at lists.jboss.org Wed Nov 20 09:17:06 2013 Content-Type: multipart/mixed; boundary="===============5289782868001353305==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 09:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============5289782868001353305== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13368: ----------------------------- Summary: pickList nested in collapsiblePanel overflows it (was: pickLi= st nested in collapsiblePanel overflow it) = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5289782868001353305==-- From jira-events at lists.jboss.org Wed Nov 20 09:21:06 2013 Content-Type: multipart/mixed; boundary="===============7016652253338422331==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 09:21:06 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============7016652253338422331== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13368: ----------------------------- Description: = When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. Please see the attached screenshot. It also overflows other components: * {{r:panel}}, = * {{r:tabPanel}} but I guess its related ? Tell me if you feel like there should be separate= d JIRA for each. was: When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. Please see the attached screenshot. = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. > It also overflows other components: > * {{r:panel}}, = > * {{r:tabPanel}} > but I guess its related ? Tell me if you feel like there should be separa= ted JIRA for each. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7016652253338422331==-- From jira-events at lists.jboss.org Wed Nov 20 09:54:07 2013 Content-Type: multipart/mixed; boundary="===============2559236558719487457==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13361) Placeholder inside calendar is not rendered Date: Wed, 20 Nov 2013 09:54:06 -0500 Message-ID: In-Reply-To: JIRA.12525562.1384867150000@jira02.app.mwc.hst.phx2.redhat.com --===============2559236558719487457== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13361?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13361. ------------------------------ Verified = > Placeholder inside calendar is not rendered > ------------------------------------------- > > Key: RF-13361 > URL: https://issues.jboss.org/browse/RF-13361 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Attachments: placeholder1.png > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # open Showcase 5 http://showcaselatest-richfaces.rhcloud.com/richfaces/c= omponent-sample.jsf?demo=3Dplaceholder&skin=3DblueSky > # open Showcase 4 http://showcase.richfaces.org/richfaces/component-sampl= e.jsf?demo=3Dplaceholder&skin=3DblueSky > result: > * in Showcase 4 calendar component has a placeholder text > * in Showcase 5 placeholder in calendar is missing, see screenshot = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2559236558719487457==-- From jira-events at lists.jboss.org Wed Nov 20 10:14:06 2013 Content-Type: multipart/mixed; boundary="===============8660108992208706264==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13200) Tree: Uncaught TypeError: Object # has no method '$' Date: Wed, 20 Nov 2013 10:14:06 -0500 Message-ID: In-Reply-To: JIRA.12500915.1379512164000@jira02.app.mwc.hst.phx2.redhat.com --===============8660108992208706264== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13200?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13200. ------------------------------ Verified = > Tree: Uncaught TypeError: Object # has no method '$' > ------------------------------------------------------------ > > Key: RF-13200 > URL: https://issues.jboss.org/browse/RF-13200 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > JBoss Application Server: Weld Integration 7.2.1.Final-redhat-10 > JBoss AS 7.2.1.Final-redhat-10 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 29.0.1547.65 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > # deploy Metamer and open http://127.0.0.1:8080/metamer/faces/components/= richTree/treeAdaptors.xhtml?templates=3Dplain > # open node R-1 > # open node R-1.1 > # click on node R-1.1-M-V-1 > expected result: > * node should be selected > actual: > * exception in browser console: Uncaught TypeError: Object # has = no method '$' > reason: > * response to Ajax request contains this code > {code} > RichFaces.$("form:richTree").__updateSelectionFromInput(); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8660108992208706264==-- From jira-events at lists.jboss.org Wed Nov 20 11:26:06 2013 Content-Type: multipart/mixed; boundary="===============2608254644523441563==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 11:26:05 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============2608254644523441563== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925413#com= ment-12925413 ] = Brian Leathem commented on RF-13368: ------------------------------------ this should have been resolved with a recent richwidget fix. I'll double c= heck the fix was pulled in to RichFaces. = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. > It also overflows other components: > * {{r:panel}}, = > * {{r:tabPanel}} > but I guess its related ? Tell me if you feel like there should be separa= ted JIRA for each. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2608254644523441563==-- From jira-events at lists.jboss.org Wed Nov 20 11:44:06 2013 Content-Type: multipart/mixed; boundary="===============8569772322833595140==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13366) ExtendedDataTable: footer is in the middle of the control if the height is constant Date: Wed, 20 Nov 2013 11:44:06 -0500 Message-ID: In-Reply-To: JIRA.12525699.1384953843000@jira02.app.mwc.hst.phx2.redhat.com --===============8569772322833595140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13366?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13366: ------------------------------- Description: = Reproduce: Define class and assign it to your extendedDataTable: {code} .table_style { height: 500px; } {code} Prepare the test data to have minimum rows (not fill the whole table with d= ata). Expected: Table height is 500px. Footer is on the bottom of the table and won't chang= e place when rows amount changes. The whitespace is between the last row and the footer Actual: Table height is 500px. Footer is right under the last row and jumps each ti= me the amount of rows changes. The whitespace is under the footer and surrounded by the table border. was: Reproduce: Define class and assign it to your extendedDataTable: .table_style { height: 500px; } Prepare the test data to have minimum rows (not fill the whole table with d= ata). Expected: Table height is 500px. Footer is on the bottom of the table and won't chang= e place when rows amount changes. The whitespace is between the last row and the footer Actual: Table height is 500px. Footer is right under the last row and jumps each ti= me the amount of rows changes. The whitespace is under the footer and surrounded by the table border. = > ExtendedDataTable: footer is in the middle of the control if the height i= s constant > -------------------------------------------------------------------------= ---------- > > Key: RF-13366 > URL: https://issues.jboss.org/browse/RF-13366 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Attachments: edt[1].png > > > Reproduce: > Define class and assign it to your extendedDataTable: > {code} > .table_style { > height: 500px; > } > {code} > Prepare the test data to have minimum rows (not fill the whole table with= data). > Expected: > Table height is 500px. Footer is on the bottom of the table and won't cha= nge place when rows amount changes. > The whitespace is between the last row and the footer > Actual: > Table height is 500px. Footer is right under the last row and jumps each = time the amount of rows changes. > The whitespace is under the footer and surrounded by the table border. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8569772322833595140==-- From jira-events at lists.jboss.org Wed Nov 20 12:18:06 2013 Content-Type: multipart/mixed; boundary="===============0560072214036156134==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13366) ExtendedDataTable: footer is in the middle of the control if the height is constant Date: Wed, 20 Nov 2013 12:18:05 -0500 Message-ID: In-Reply-To: JIRA.12525699.1384953843000@jira02.app.mwc.hst.phx2.redhat.com --===============0560072214036156134== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13366?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13366. -------------------------------- Resolution: Won't Fix The table footer is intended to be after the final row of the table. It wo= uld be unintuitive to have whitespace between the footer an the table rows,= they would appear to be disconnected. Try placing an additional element/component underneath your table to achiev= e the layout you are looking for. = > ExtendedDataTable: footer is in the middle of the control if the height i= s constant > -------------------------------------------------------------------------= ---------- > > Key: RF-13366 > URL: https://issues.jboss.org/browse/RF-13366 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3 > Reporter: Anton Bogoslavskyi > Attachments: edt[1].png > > > Reproduce: > Define class and assign it to your extendedDataTable: > {code} > .table_style { > height: 500px; > } > {code} > Prepare the test data to have minimum rows (not fill the whole table with= data). > Expected: > Table height is 500px. Footer is on the bottom of the table and won't cha= nge place when rows amount changes. > The whitespace is between the last row and the footer > Actual: > Table height is 500px. Footer is right under the last row and jumps each = time the amount of rows changes. > The whitespace is under the footer and surrounded by the table border. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0560072214036156134==-- From jira-events at lists.jboss.org Wed Nov 20 12:21:06 2013 Content-Type: multipart/mixed; boundary="===============2882415970801755024==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13364) Upgrade Mojarra to 2.1.26 in RichFaces 4 Date: Wed, 20 Nov 2013 12:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525674.1384941255000@jira02.app.mwc.hst.phx2.redhat.com --===============2882415970801755024== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13364?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13364: ------------------------------- Fix Version/s: 4.3.5 = > Upgrade Mojarra to 2.1.26 in RichFaces 4 > ---------------------------------------- > > Key: RF-13364 > URL: https://issues.jboss.org/browse/RF-13364 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.3.4 > Reporter: Pavol Pitonak > Fix For: 4.3.5 > > > RichFaces 4 [1] now depends on Mojarra 2.1.19 (bundled in EAP 6.1.1). Upg= rade it to the lastest version 2.1.26. > [1] https://github.com/richfaces4/build/blob/master/bom/pom.xml -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2882415970801755024==-- From jira-events at lists.jboss.org Wed Nov 20 12:21:06 2013 Content-Type: multipart/mixed; boundary="===============4105028621235413538==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Wed, 20 Nov 2013 12:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============4105028621235413538== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13365: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4105028621235413538==-- From jira-events at lists.jboss.org Wed Nov 20 12:26:06 2013 Content-Type: multipart/mixed; boundary="===============0408335646789287814==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 20 Nov 2013 12:26:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============0408335646789287814== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925444#com= ment-12925444 ] = Brian Leathem commented on RF-13323: ------------------------------------ [~wish79] can you take [~jstefek]'s sample as a starting point and modify i= t to be more like you application to reproduce the failure you describe? D= oing this will help tremendously on isolating the root cause and put us on = a path to a resolution of the issue. = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0408335646789287814==-- From jira-events at lists.jboss.org Wed Nov 20 12:28:06 2013 Content-Type: multipart/mixed; boundary="===============0702466972161223735==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13289) inputspinner : setting the value to empty/null Date: Wed, 20 Nov 2013 12:28:05 -0500 Message-ID: In-Reply-To: JIRA.12508761.1382687176000@jira02.app.mwc.hst.phx2.redhat.com --===============0702466972161223735== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13289?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13289: ------------------------------- Fix Version/s: 5-Tracking = > inputspinner : setting the value to empty/null > ----------------------------------------------- > > Key: RF-13289 > URL: https://issues.jboss.org/browse/RF-13289 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.3, 5.0.0.Alpha2 > Reporter: liumin hu > Fix For: 5-Tracking > > > can put empty/null value in a spinner, everytime the spinner changes emp= ty to 0. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0702466972161223735==-- From jira-events at lists.jboss.org Wed Nov 20 12:28:06 2013 Content-Type: multipart/mixed; boundary="===============5903383366007986212==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12092) a4j:poll : a4j:status never clears Date: Wed, 20 Nov 2013 12:28:06 -0500 Message-ID: In-Reply-To: JIRA.12462470.1332784893000@jira02.app.mwc.hst.phx2.redhat.com --===============5903383366007986212== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12092?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12092: ------------------------------- Description: = When a4j:poll fires a4j:status correctly displays the request is in progres= s. However, it never shows it complete. Using any other a4j component will = correctly update the a4j:status. So if the a4j:status is stuck showing its = waiting because of an a4j:poll if you click on an a4j:commandButton the a4j= :status will correctly show its now complete. {code} {code} This code works correctly in RF 3.3.3. was: When a4j:poll fires a4j:status correctly displays the request is in progres= s. However, it never shows it complete. Using any other a4j component will = correctly update the a4j:status. So if the a4j:status is stuck showing its = waiting because of an a4j:poll if you click on an a4j:commandButton the a4j= :status will correctly show its now complete. This code works correctly in RF 3.3.3. = > a4j:poll : a4j:status never clears > ---------------------------------- > > Key: RF-12092 > URL: https://issues.jboss.org/browse/RF-12092 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.2.0.Final, 4.2.1.Final > Reporter: Robert Gary > Fix For: 5-Tracking > > Attachments: a4jPollIssue.war > > > When a4j:poll fires a4j:status correctly displays the request is in progr= ess. However, it never shows it complete. Using any other a4j component wil= l correctly update the a4j:status. So if the a4j:status is stuck showing it= s waiting because of an a4j:poll if you click on an a4j:commandButton the a= 4j:status will correctly show its now complete. > {code} > render=3D"#{faces$DiscoveryStatus.reRenderStr}"/> > > > > > > > > > {code} > This code works correctly in RF 3.3.3. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5903383366007986212==-- From jira-events at lists.jboss.org Wed Nov 20 12:32:06 2013 Content-Type: multipart/mixed; boundary="===============2707035245498166201==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13367) pickList nested in accordion has clipped ordering buttons Date: Wed, 20 Nov 2013 12:32:06 -0500 Message-ID: In-Reply-To: JIRA.12525704.1384956330000@jira02.app.mwc.hst.phx2.redhat.com --===============2707035245498166201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13367?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13367. -------------------------------- Resolution: Out of Date = > pickList nested in accordion has clipped ordering buttons > --------------------------------------------------------- > > Key: RF-13367 > URL: https://issues.jboss.org/browse/RF-13367 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListInAccordion.png > > > When using {{pickList}} inside of {{accordion}}, then pickList ordering b= uttons are clipped. One has to scroll the view to the right in order to see= it fully. > Please see the attached screenshot. IMHO the pickList should adapt its si= ze to its parent container. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2707035245498166201==-- From jira-events at lists.jboss.org Wed Nov 20 12:32:06 2013 Content-Type: multipart/mixed; boundary="===============0275960606151405543==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 12:32:05 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============0275960606151405543== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925449#com= ment-12925449 ] = Brian Leathem commented on RF-13368: ------------------------------------ this issue seems out-of-date to me, I was unable to reproduce the issue wit= hout pulling in any additional richwidget changes. = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. > It also overflows other components: > * {{r:panel}}, = > * {{r:tabPanel}} > but I guess its related ? Tell me if you feel like there should be separa= ted JIRA for each. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0275960606151405543==-- From jira-events at lists.jboss.org Wed Nov 20 12:32:06 2013 Content-Type: multipart/mixed; boundary="===============5759253091998571209==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 12:32:06 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============5759253091998571209== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13368. -------------------------------- Resolution: Out of Date = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. > It also overflows other components: > * {{r:panel}}, = > * {{r:tabPanel}} > but I guess its related ? Tell me if you feel like there should be separa= ted JIRA for each. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5759253091998571209==-- From jira-events at lists.jboss.org Wed Nov 20 12:45:06 2013 Content-Type: multipart/mixed; boundary="===============6714742940998378354==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13367) pickList nested in accordion has clipped ordering buttons Date: Wed, 20 Nov 2013 12:45:06 -0500 Message-ID: In-Reply-To: JIRA.12525704.1384956330000@jira02.app.mwc.hst.phx2.redhat.com --===============6714742940998378354== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13367?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13367. ---------------------------- = > pickList nested in accordion has clipped ordering buttons > --------------------------------------------------------- > > Key: RF-13367 > URL: https://issues.jboss.org/browse/RF-13367 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListInAccordion.png > > > When using {{pickList}} inside of {{accordion}}, then pickList ordering b= uttons are clipped. One has to scroll the view to the right in order to see= it fully. > Please see the attached screenshot. IMHO the pickList should adapt its si= ze to its parent container. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6714742940998378354==-- From jira-events at lists.jboss.org Wed Nov 20 12:45:06 2013 Content-Type: multipart/mixed; boundary="===============6866676417106224689==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13368) pickList nested in collapsiblePanel overflows it Date: Wed, 20 Nov 2013 12:45:05 -0500 Message-ID: In-Reply-To: JIRA.12525706.1384956741000@jira02.app.mwc.hst.phx2.redhat.com --===============6866676417106224689== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13368?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13368. ---------------------------- = > pickList nested in collapsiblePanel overflows it > ------------------------------------------------ > > Key: RF-13368 > URL: https://issues.jboss.org/browse/RF-13368 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Attachments: pickListAndCollapsiblePanel.png > > > When {{pickList}} is nested in {{collapsiblePanel}}, then it overflows it. > Please see the attached screenshot. > It also overflows other components: > * {{r:panel}}, = > * {{r:tabPanel}} > but I guess its related ? Tell me if you feel like there should be separa= ted JIRA for each. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6866676417106224689==-- From jira-events at lists.jboss.org Wed Nov 20 13:55:06 2013 Content-Type: multipart/mixed; boundary="===============4468743422110366352==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Wed, 20 Nov 2013 13:55:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============4468743422110366352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13359: ---------------------------------- Assignee: Brian Leathem = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4468743422110366352==-- From jira-events at lists.jboss.org Wed Nov 20 15:09:06 2013 Content-Type: multipart/mixed; boundary="===============4442043284265459493==" MIME-Version: 1.0 From: Mohammad Weshah (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope Date: Wed, 20 Nov 2013 15:09:05 -0500 Message-ID: In-Reply-To: JIRA.12524556.1383900080000@jira02.app.mwc.hst.phx2.redhat.com --===============4442043284265459493== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13323?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925495#com= ment-12925495 ] = Mohammad Weshah commented on RF-13323: -------------------------------------- when i add my code to Jira project it works .but when i add Jira lib to my = project my code dose not works, conclusion it seem the problem with my proj= ect setting . Thanks for all = > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > = > Reporter: Mohammad Weshah > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323= -ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWe= bProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working su= ccessfully , but i notice if i changed the backing bean to viewscope the fi= les list inside the FileUploadEvent listener will be rest every time that i= upload new file , the code as follow : > = > {code} > protected List files =3D new ArrayList(); = > = > public void FileUploadlistener(FileUploadEvent event) throws Exception { = > UploadedFile item =3D event.getUploadedFile(); = > UploadedImage file =3D new UploadedImage(); = > file.setLength(item.getData().length); = > file.setName(item.getName()); = > file.setData(item.getData()); = > = > files.add(file); = > } = > {code} > = > but when i changed the scope to session the files still contain the old f= iles, is it mandatory to the backing be session or there is something wrong= ? > = > Regards > Wish79 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4442043284265459493==-- From jira-events at lists.jboss.org Wed Nov 20 15:41:06 2013 Content-Type: multipart/mixed; boundary="===============4512081542801741587==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Wed, 20 Nov 2013 15:41:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============4512081542801741587== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925503#com= ment-12925503 ] = Brian Leathem commented on RF-13359: ------------------------------------ Further investigation has shown that the progressBar component works when r= esource optimisation is disabled, and fails when resource optimisation is e= nabled. = This failing behaviour began with this commit: [633da4|https://github.com/r= ichfaces/richfaces/commit/633da455d5a301437c2b5eb9d3316ffde2e5e23e] = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4512081542801741587==-- From jira-events at lists.jboss.org Wed Nov 20 15:57:06 2013 Content-Type: multipart/mixed; boundary="===============3118748656279698102==" MIME-Version: 1.0 From: Joao Granado (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13369) autocomplete problem in glassfish 4 with jsf 2.2 Date: Wed, 20 Nov 2013 15:57:05 -0500 Message-ID: In-Reply-To: JIRA.12525764.1384980989999@jira02.app.mwc.hst.phx2.redhat.com --===============3118748656279698102== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Joao Granado created RF-13369: --------------------------------- Summary: autocomplete problem in glassfish 4 with jsf 2.2 Key: RF-13369 URL: https://issues.jboss.org/browse/RF-13369 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.3.4 Environment: glassfish4 with JSF2.2, ubunto 12.04 Reporter: Joao Granado autocomplete: the pop-up list always appears empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3118748656279698102==-- From jira-events at lists.jboss.org Thu Nov 21 02:34:06 2013 Content-Type: multipart/mixed; boundary="===============0642760388415670417==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13369) autocomplete problem in glassfish 4 with jsf 2.2 Date: Thu, 21 Nov 2013 02:34:06 -0500 Message-ID: In-Reply-To: JIRA.12525764.1384980989000@jira02.app.mwc.hst.phx2.redhat.com --===============0642760388415670417== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13369?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13369: ------------------------------- Fix Version/s: 4.3.5 = > autocomplete problem in glassfish 4 with jsf 2.2 > ------------------------------------------------ > > Key: RF-13369 > URL: https://issues.jboss.org/browse/RF-13369 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: glassfish4 with JSF2.2, ubunto 12.04 > Reporter: Joao Granado > Labels: jsf22 > Fix For: 4.3.5 > > > autocomplete: the pop-up list always appears empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0642760388415670417==-- From jira-events at lists.jboss.org Thu Nov 21 02:34:06 2013 Content-Type: multipart/mixed; boundary="===============6293640577111425715==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13369) autocomplete problem in glassfish 4 with jsf 2.2 Date: Thu, 21 Nov 2013 02:34:05 -0500 Message-ID: In-Reply-To: JIRA.12525764.1384980989000@jira02.app.mwc.hst.phx2.redhat.com --===============6293640577111425715== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13369?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13369: ------------------------------- Labels: jsf22 (was: richfaces) = > autocomplete problem in glassfish 4 with jsf 2.2 > ------------------------------------------------ > > Key: RF-13369 > URL: https://issues.jboss.org/browse/RF-13369 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.3.4 > Environment: glassfish4 with JSF2.2, ubunto 12.04 > Reporter: Joao Granado > Labels: jsf22 > > autocomplete: the pop-up list always appears empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6293640577111425715==-- From jira-events at lists.jboss.org Thu Nov 21 04:12:06 2013 Content-Type: multipart/mixed; boundary="===============1257168975724589440==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 04:12:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============1257168975724589440== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925626#com= ment-12925626 ] = Brian Leathem commented on RF-13359: ------------------------------------ It took a while, but I isolated the single offending line: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/push.js#L259 {code} $(document).on('cleanDom.RICH', function(event, ui) { if ($.contains(ui.target, widget.element)) { widget._destroy(); } }); {code} [~lfryc] It's not clear to me what you are trying to achieve here, but the = end result seems to be that the destroy call is too aggressive. Can you re= -visit this please? {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} The isolation was difficult, as the file in question should have nothing to= do with the progressBar component. Hence why the effect was observed only= had an effect when included via resource packaging. {panel} = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1257168975724589440==-- From jira-events at lists.jboss.org Thu Nov 21 04:14:06 2013 Content-Type: multipart/mixed; boundary="===============7338924833335262273==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 04:14:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============7338924833335262273== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925629#com= ment-12925629 ] = Brian Leathem commented on RF-13359: ------------------------------------ The above problem only seems to affect the progressBar. The other componen= ts listed are still broken despite commenting out the offending line. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7338924833335262273==-- From jira-events at lists.jboss.org Thu Nov 21 04:14:07 2013 Content-Type: multipart/mixed; boundary="===============7265617301844676018==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 04:14:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============7265617301844676018== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13359: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7265617301844676018==-- From jira-events at lists.jboss.org Thu Nov 21 05:47:06 2013 Content-Type: multipart/mixed; boundary="===============2329872854565467584==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Thu, 21 Nov 2013 05:47:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============2329872854565467584== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925674#com= ment-12925674 ] = Matej Novotny commented on RF-13210: ------------------------------------ I went through Jenkins jobs to verify this and I also tried to deploy Metam= er and manually check for some resource problems (for both RF 5 and 4.5). E= verything seems to work correctly. = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2329872854565467584==-- From jira-events at lists.jboss.org Thu Nov 21 05:59:06 2013 Content-Type: multipart/mixed; boundary="===============0372028724418639570==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Thu, 21 Nov 2013 05:59:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============0372028724418639570== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925674#com= ment-12925674 ] = Matej Novotny edited comment on RF-13210 at 11/21/13 5:58 AM: -------------------------------------------------------------- I went through Jenkins jobs to verify this and I also tried to deploy Metam= er and manually check for some resource problems (for both RF 5 and 4.5). E= verything seems to work correctly. EDIT: I was asked to post this result on dev forum [here| https://community= .jboss.org/message/846672] is the link. = was (Author: manovotn): I went through Jenkins jobs to verify this and I also tried to deploy M= etamer and manually check for some resource problems (for both RF 5 and 4.5= ). Everything seems to work correctly. = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0372028724418639570==-- From jira-events at lists.jboss.org Thu Nov 21 07:12:06 2013 Content-Type: multipart/mixed; boundary="===============0091422409588196476==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Thu, 21 Nov 2013 07:12:06 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920887@jira02.app.mwc.hst.phx2.redhat.com --===============0091422409588196476== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Macko created RF-13370: -------------------------------- Summary: Charts - server-side Key: RF-13370 URL: https://issues.jboss.org/browse/RF-13370 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-output Reporter: Luk=C3=A1=C5=A1 Macko * rename attribute *clickListener* in chart and series tag to *plotClickLis= tner* * send request to server only if a server-side listener is attached = * particular series server-side listeners (called only for particular serie= s events) * server-side listener method is not called when Bean is annotated with @Na= med (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0091422409588196476==-- From jira-events at lists.jboss.org Thu Nov 21 07:18:06 2013 Content-Type: multipart/mixed; boundary="===============3063093716247547590==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Thu, 21 Nov 2013 07:18:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============3063093716247547590== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925705#com= ment-12925705 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13370: ---------------------------------- I've already done the first and the second item in a [branch | https://gith= ub.com/Lukindo/richfaces/commits/chart-server-side]. = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3063093716247547590==-- From jira-events at lists.jboss.org Thu Nov 21 08:56:07 2013 Content-Type: multipart/mixed; boundary="===============8369434242299884654==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 08:56:07 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============8369434242299884654== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13371: ---------------------------- Priority: Critical (was: Major) = > Refactored Push destroy logic is too aggresive and causes ProgressBar to = fail > -------------------------------------------------------------------------= ---- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > From RF-13359: > {quote} > It took a while, but I isolated the single offending line: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/push.js#L259 > {code} > $(document).on('cleanDom.RICH', function(event, ui) { > if ($.contains(ui.target, widget.element)) { > widget._destroy(); > } > }); > {code} > [~lfryc] It's not clear to me what you are trying to achieve here, but th= e end result seems to be that the destroy call is too aggressive. Can you = re-visit this please? > {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} > The isolation was difficult, as the file in question should have nothing = to do with the progressBar component. Hence why the effect was observed on= ly had an effect when included via resource packaging. > {panel} > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8369434242299884654==-- From jira-events at lists.jboss.org Thu Nov 21 08:56:07 2013 Content-Type: multipart/mixed; boundary="===============5308188348859300166==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 08:56:07 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============5308188348859300166== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13371: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > Refactored Push destroy logic is too aggresive and causes ProgressBar to = fail > -------------------------------------------------------------------------= ---- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > From RF-13359: > {quote} > It took a while, but I isolated the single offending line: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/push.js#L259 > {code} > $(document).on('cleanDom.RICH', function(event, ui) { > if ($.contains(ui.target, widget.element)) { > widget._destroy(); > } > }); > {code} > [~lfryc] It's not clear to me what you are trying to achieve here, but th= e end result seems to be that the destroy call is too aggressive. Can you = re-visit this please? > {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} > The isolation was difficult, as the file in question should have nothing = to do with the progressBar component. Hence why the effect was observed on= ly had an effect when included via resource packaging. > {panel} > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5308188348859300166==-- From jira-events at lists.jboss.org Thu Nov 21 08:56:07 2013 Content-Type: multipart/mixed; boundary="===============5423257062889821286==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 08:56:07 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093703@jira02.app.mwc.hst.phx2.redhat.com --===============5423257062889821286== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13371: ------------------------------- Summary: Refactored Push destroy logic is too aggresive and ca= uses ProgressBar to fail Key: RF-13371 URL: https://issues.jboss.org/browse/RF-13371 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D >From RF-13359: {quote} It took a while, but I isolated the single offending line: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/push.js#L259 {code} $(document).on('cleanDom.RICH', function(event, ui) { if ($.contains(ui.target, widget.element)) { widget._destroy(); } }); {code} [~lfryc] It's not clear to me what you are trying to achieve here, but the = end result seems to be that the destroy call is too aggressive. Can you re= -visit this please? {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} The isolation was difficult, as the file in question should have nothing to= do with the progressBar component. Hence why the effect was observed only= had an effect when included via resource packaging. {panel} {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5423257062889821286==-- From jira-events at lists.jboss.org Thu Nov 21 08:56:08 2013 Content-Type: multipart/mixed; boundary="===============3531984698423411095==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 08:56:08 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============3531984698423411095== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925738#com= ment-12925738 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13359: --------------------------------- Nice catch, Brian! I have created RF-13371 to investigate and added it to A= lpha2 sprint. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3531984698423411095==-- From jira-events at lists.jboss.org Thu Nov 21 08:58:07 2013 Content-Type: multipart/mixed; boundary="===============1062881960160403465==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 08:58:07 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============1062881960160403465== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13371: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Refactored Push destroy logic is too aggresive and causes ProgressBar to = fail > -------------------------------------------------------------------------= ---- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > From RF-13359: > {quote} > It took a while, but I isolated the single offending line: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/push.js#L259 > {code} > $(document).on('cleanDom.RICH', function(event, ui) { > if ($.contains(ui.target, widget.element)) { > widget._destroy(); > } > }); > {code} > [~lfryc] It's not clear to me what you are trying to achieve here, but th= e end result seems to be that the destroy call is too aggressive. Can you = re-visit this please? > {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} > The isolation was difficult, as the file in question should have nothing = to do with the progressBar component. Hence why the effect was observed on= ly had an effect when included via resource packaging. > {panel} > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1062881960160403465==-- From jira-events at lists.jboss.org Thu Nov 21 08:58:07 2013 Content-Type: multipart/mixed; boundary="===============7981370072033710349==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 08:58:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============7981370072033710349== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13371: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Refactored Push destroy logic is too aggresive and causes ProgressBar to = fail > -------------------------------------------------------------------------= ---- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > From RF-13359: > {quote} > It took a while, but I isolated the single offending line: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/push.js#L259 > {code} > $(document).on('cleanDom.RICH', function(event, ui) { > if ($.contains(ui.target, widget.element)) { > widget._destroy(); > } > }); > {code} > [~lfryc] It's not clear to me what you are trying to achieve here, but th= e end result seems to be that the destroy call is too aggressive. Can you = re-visit this please? > {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} > The isolation was difficult, as the file in question should have nothing = to do with the progressBar component. Hence why the effect was observed on= ly had an effect when included via resource packaging. > {panel} > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7981370072033710349==-- From jira-events at lists.jboss.org Thu Nov 21 09:02:06 2013 Content-Type: multipart/mixed; boundary="===============5808423158255310290==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Thu, 21 Nov 2013 09:02:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============5808423158255310290== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925744#com= ment-12925744 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13331: --------------------------------- The pull request was linked again: https://github.com/richfaces/richfaces/pull/62 = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5808423158255310290==-- From jira-events at lists.jboss.org Thu Nov 21 09:02:06 2013 Content-Type: multipart/mixed; boundary="===============3855485725366853283==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Thu, 21 Nov 2013 09:02:05 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============3855485725366853283== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925742#com= ment-12925742 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13210: --------------------------------- Great job, Matej! Thanks for checking. = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3855485725366853283==-- From jira-events at lists.jboss.org Thu Nov 21 09:04:06 2013 Content-Type: multipart/mixed; boundary="===============0369472045480413112==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Thu, 21 Nov 2013 09:04:05 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============0369472045480413112== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13331: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Luk=C3=A1=C5=A1 Macko) = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0369472045480413112==-- From jira-events at lists.jboss.org Thu Nov 21 09:07:06 2013 Content-Type: multipart/mixed; boundary="===============5576360491868516554==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Thu, 21 Nov 2013 09:07:05 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============5576360491868516554== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13352: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Luk=C3=A1=C5=A1 Macko) = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5576360491868516554==-- From jira-events at lists.jboss.org Thu Nov 21 10:30:10 2013 Content-Type: multipart/mixed; boundary="===============3979031948185556355==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 10:30:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782205@jira02.app.mwc.hst.phx2.redhat.com --===============3979031948185556355== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13372: -------------------------------- Summary: togglePanel does not work with toggleControl Key: RF-13372 URL: https://issues.jboss.org/browse/RF-13372 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha2 Environment: GlassFish 3.1.2.2, AS 7.1.1 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3979031948185556355==-- From jira-events at lists.jboss.org Thu Nov 21 10:32:06 2013 Content-Type: multipart/mixed; boundary="===============5382696586090612925==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 10:32:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============5382696586090612925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13372: ----------------------------- Priority: Blocker (was: Major) = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5382696586090612925==-- From jira-events at lists.jboss.org Thu Nov 21 10:32:06 2013 Content-Type: multipart/mixed; boundary="===============8853438350395392294==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 10:32:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============8853438350395392294== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13372: ----------------------------- Steps to Reproduce: = # deploy metamer and open [this|http://localhost:8080/metamer/faces/compone= nts/richTogglePanel/simple.xhtml] # try to toggle item with any of the links # have: page is reloaded and item is not switched # expected: panel is switched by ajax to the chosen item was: # deploy metamer and open = # try to toggle item with any of the links # have: page is reloaded and item is not switched # expected: panel is switched by ajax to the chosen item = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8853438350395392294==-- From jira-events at lists.jboss.org Thu Nov 21 10:34:06 2013 Content-Type: multipart/mixed; boundary="===============2764802110201288812==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 10:34:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============2764802110201288812== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13372: ----------------------------- Workaround Description: The content can be switched by {code}RichFaces.= component('id').$JS-API-function{code} = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2764802110201288812==-- From jira-events at lists.jboss.org Thu Nov 21 10:34:07 2013 Content-Type: multipart/mixed; boundary="===============0646428573359044426==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 10:34:07 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============0646428573359044426== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13372: ----------------------------- Workaround Description: The content can be switched by {code}RichFaces.= component('id').$JS-API-function(){code} (was: The content can be switched= by {code}RichFaces.component('id').$JS-API-function{code}) = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0646428573359044426==-- From jira-events at lists.jboss.org Thu Nov 21 11:08:06 2013 Content-Type: multipart/mixed; boundary="===============0744252250921459011==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13293) accordion: JS API: bugs of function switchTo() Date: Thu, 21 Nov 2013 11:08:06 -0500 Message-ID: In-Reply-To: JIRA.12508933.1383040097000@jira02.app.mwc.hst.phx2.redhat.com --===============0744252250921459011== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13293?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925808#com= ment-12925808 ] = Ji=C5=99=C3=AD =C5=A0tefek edited comment on RF-13293 at 11/21/13 11:07 AM: ------------------------------------------------------------- Same with TogglePanel. Imho with all switchables. = was (Author: jstefek): Same for TogglePanel. Imho for all switchables. = > accordion: JS API: bugs of function switchTo() > ---------------------------------------------- > > Key: RF-13293 > URL: https://issues.jboss.org/browse/RF-13293 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.5-Tracking > > > Bug #1 -- @cycledSwitching > Cannot switch to next item, when there is a disabled item in the way when= @cycledSwitching=3Dfalse. > E.g.:When you use function _switchTo(nextItem())_ > * it switches to next item, but > ** if you use @cycledSwitching=3Dfalse, then it cannot switch to an item = after a disabled item. > ** if you use @cycledSwitching=3Dtrue, then it switches to next available= item after a disabled item (plus it can cycle through items from beginning= ). > ---- > Bug #2 -- result of function _switchTo()_ can be used without params > Function _switchTo_ can be used without parameters and this behaviour is = undocumented. When you use it without parameters (or null) it simply switc= hes to next item. > The catch: When you use _switchTo(previousItem())_ , you use @cycledSwitc= hing=3Dfalse and you have first item active, then it switches to next item = instead of doing nothing (the _previousItem()_ returns null). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0744252250921459011==-- From jira-events at lists.jboss.org Thu Nov 21 11:08:06 2013 Content-Type: multipart/mixed; boundary="===============8252764324730446487==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13293) accordion: JS API: bugs of function switchTo() Date: Thu, 21 Nov 2013 11:08:05 -0500 Message-ID: In-Reply-To: JIRA.12508933.1383040097000@jira02.app.mwc.hst.phx2.redhat.com --===============8252764324730446487== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13293?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925808#com= ment-12925808 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13293: ---------------------------------- Same for TogglePanel. Imho for all switchables. = > accordion: JS API: bugs of function switchTo() > ---------------------------------------------- > > Key: RF-13293 > URL: https://issues.jboss.org/browse/RF-13293 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 4.5-Tracking > > > Bug #1 -- @cycledSwitching > Cannot switch to next item, when there is a disabled item in the way when= @cycledSwitching=3Dfalse. > E.g.:When you use function _switchTo(nextItem())_ > * it switches to next item, but > ** if you use @cycledSwitching=3Dfalse, then it cannot switch to an item = after a disabled item. > ** if you use @cycledSwitching=3Dtrue, then it switches to next available= item after a disabled item (plus it can cycle through items from beginning= ). > ---- > Bug #2 -- result of function _switchTo()_ can be used without params > Function _switchTo_ can be used without parameters and this behaviour is = undocumented. When you use it without parameters (or null) it simply switc= hes to next item. > The catch: When you use _switchTo(previousItem())_ , you use @cycledSwitc= hing=3Dfalse and you have first item active, then it switches to next item = instead of doing nothing (the _previousItem()_ returns null). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8252764324730446487==-- From jira-events at lists.jboss.org Thu Nov 21 11:24:06 2013 Content-Type: multipart/mixed; boundary="===============5677965083274542696==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 11:24:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============5677965083274542696== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13372: ----------------------------- Steps to Reproduce: = # deploy metamer and open [this|http://localhost:8080/metamer/faces/compone= nts/richTogglePanel/rf-13372.xhtml] # try to toggle item with any of the links # have: page is reloaded and item is not switched # expected: panel is switched by ajax to the chosen item was: # deploy metamer and open [this|http://localhost:8080/metamer/faces/compone= nts/richTogglePanel/simple.xhtml] # try to toggle item with any of the links # have: page is reloaded and item is not switched # expected: panel is switched by ajax to the chosen item = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5677965083274542696==-- From jira-events at lists.jboss.org Thu Nov 21 12:55:06 2013 Content-Type: multipart/mixed; boundary="===============9015204166120198157==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 12:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============9015204166120198157== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13359: ---------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9015204166120198157==-- From jira-events at lists.jboss.org Thu Nov 21 13:33:06 2013 Content-Type: multipart/mixed; boundary="===============7265538414799214383==" MIME-Version: 1.0 From: H G (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Thu, 21 Nov 2013 13:33:05 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============7265538414799214383== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925888#com= ment-12925888 ] = H G commented on RF-10756: -------------------------- DataTable is one of the most important frequently used components. Collapsi= bleSubtable adds very nice functionality but is practically useless because= of several bugs related to partial updates, breaks filters, etc... All thi= s bugs are very old and targeted to 5-Future. I'd like to see the fixes in = the comings releases of RF 5 (alpha 2,3). = > 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 > Fix For: 5-Future > > > added to richfaces-showcase code: > > > > > > > expandMode=3D"client"> > > > > 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 ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7265538414799214383==-- From jira-events at lists.jboss.org Thu Nov 21 16:06:05 2013 Content-Type: multipart/mixed; boundary="===============4595106567029780414==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13373) The toggle control renderer is not invoked Date: Thu, 21 Nov 2013 16:06:05 -0500 Message-ID: In-Reply-To: JIRA.12525880.1385067960518@jira02.app.mwc.hst.phx2.redhat.com --===============4595106567029780414== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Brian Leathem created RF-13373: ---------------------------------- Summary: The toggle control renderer is not invoked Key: RF-13373 URL: https://issues.jboss.org/browse/RF-13373 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output Affects Versions: 5.0.0.Alpha2 Reporter: Brian Leathem Assignee: Brian Leathem Fix For: 5.0.0.Alpha2 The toggle control broke because the value returned by the [ToggleControl#g= etRendererType|https://github.com/richfaces/richfaces/blob/master/framework= /src/main/java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L14= 5] method does not match the renderer defined in the [@JsfBehavior annotati= on|https://github.com/richfaces/richfaces/blob/master/framework/src/main/ja= va/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L48]. This descrepency was introduced with this commit: [42fc56|https://github.co= m/richfaces/richfaces/commit/42fc5626a02a1826e29ce8980aba18152a2bca19] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4595106567029780414==-- From jira-events at lists.jboss.org Thu Nov 21 16:08:06 2013 Content-Type: multipart/mixed; boundary="===============8311662108130633235==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 16:08:05 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============8311662108130633235== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925919#com= ment-12925919 ] = Brian Leathem commented on RF-13359: ------------------------------------ The toggle control broke because the value returned by the [ToggleControl#g= etRendererType|https://github.com/richfaces/richfaces/blob/master/framework= /src/main/java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L14= 5] method does not match the renderer defined in the [@JsfBehavior annotati= on|https://github.com/richfaces/richfaces/blob/master/framework/src/main/ja= va/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L48]. This descrepency was introduced with this commit: [42fc56|https://github.co= m/richfaces/richfaces/commit/42fc5626a02a1826e29ce8980aba18152a2bca19] I have filed RF-13373 to track the resolution of this issue. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8311662108130633235==-- From jira-events at lists.jboss.org Thu Nov 21 16:10:06 2013 Content-Type: multipart/mixed; boundary="===============5514883186484136655==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13373) The toggle control renderer is not invoked Date: Thu, 21 Nov 2013 16:10:06 -0500 Message-ID: In-Reply-To: JIRA.12525880.1385067960000@jira02.app.mwc.hst.phx2.redhat.com --===============5514883186484136655== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13373?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13373: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > The toggle control renderer is not invoked > ------------------------------------------ > > Key: RF-13373 > URL: https://issues.jboss.org/browse/RF-13373 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > The toggle control broke because the value returned by the [ToggleControl= #getRendererType|https://github.com/richfaces/richfaces/blob/master/framewo= rk/src/main/java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L= 145] method does not match the renderer defined in the [@JsfBehavior annota= tion|https://github.com/richfaces/richfaces/blob/master/framework/src/main/= java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L48]. > This descrepency was introduced with this commit: [42fc56|https://github.= com/richfaces/richfaces/commit/42fc5626a02a1826e29ce8980aba18152a2bca19] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5514883186484136655==-- From jira-events at lists.jboss.org Thu Nov 21 16:16:06 2013 Content-Type: multipart/mixed; boundary="===============8280927934749667016==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13373) The toggle control renderer is not invoked Date: Thu, 21 Nov 2013 16:16:06 -0500 Message-ID: In-Reply-To: JIRA.12525880.1385067960000@jira02.app.mwc.hst.phx2.redhat.com --===============8280927934749667016== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13373?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13373. -------------------------------- Resolution: Done = > The toggle control renderer is not invoked > ------------------------------------------ > > Key: RF-13373 > URL: https://issues.jboss.org/browse/RF-13373 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > The toggle control broke because the value returned by the [ToggleControl= #getRendererType|https://github.com/richfaces/richfaces/blob/master/framewo= rk/src/main/java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L= 145] method does not match the renderer defined in the [@JsfBehavior annota= tion|https://github.com/richfaces/richfaces/blob/master/framework/src/main/= java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L48]. > This descrepency was introduced with this commit: [42fc56|https://github.= com/richfaces/richfaces/commit/42fc5626a02a1826e29ce8980aba18152a2bca19] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8280927934749667016==-- From jira-events at lists.jboss.org Thu Nov 21 16:18:06 2013 Content-Type: multipart/mixed; boundary="===============1958548810077634993==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 16:18:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============1958548810077634993== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13359: ------------------------------- Original Estimate: 2 days (was: 1 hour) Remaining Estimate: 2 days (was: 1 hour) = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1958548810077634993==-- From jira-events at lists.jboss.org Thu Nov 21 16:39:06 2013 Content-Type: multipart/mixed; boundary="===============7527105910683858213==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 16:39:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============7527105910683858213== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925926#com= ment-12925926 ] = Brian Leathem commented on RF-13359: ------------------------------------ With the resolution of RF-13373 the togglePanel now works, but only for the= first 2 toggles. On the third toggle a javascript error is thrown: {quote} Uncaught TypeError: Cannot read property 'disabled' of undefined = {quote} This error is not present when resource optimisation is disabled. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7527105910683858213==-- From jira-events at lists.jboss.org Thu Nov 21 17:11:06 2013 Content-Type: multipart/mixed; boundary="===============6767155933451766925==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Thu, 21 Nov 2013 17:11:06 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792092@jira02.app.mwc.hst.phx2.redhat.com --===============6767155933451766925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13374: ------------------------------- Summary: RichFaces push registered as $.fn.push overrides jQue= ry function Key: RF-13374 URL: https://issues.jboss.org/browse/RF-13374 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-push/poll Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Priority: Blocker Fix For: 5.0.0.Alpha2 The real cause of an issue mentioned in RF-13359 isn't an invalid implement= ation of _destroy method (RF-13371), but rather conflict caused by register= ing $.fn.push function. The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush}}= or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it w= ould be called then). Let's investigate further how we can namespace our jQ= uery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6767155933451766925==-- From jira-events at lists.jboss.org Thu Nov 21 17:13:06 2013 Content-Type: multipart/mixed; boundary="===============6582017091651921615==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Thu, 21 Nov 2013 17:13:06 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============6582017091651921615== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13374: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6582017091651921615==-- From jira-events at lists.jboss.org Thu Nov 21 17:13:06 2013 Content-Type: multipart/mixed; boundary="===============5023360710950127080==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Thu, 21 Nov 2013 17:13:06 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============5023360710950127080== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13374: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5023360710950127080==-- From jira-events at lists.jboss.org Thu Nov 21 17:15:07 2013 Content-Type: multipart/mixed; boundary="===============6228947170901325249==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Thu, 21 Nov 2013 17:15:07 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============6228947170901325249== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925928#com= ment-12925928 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13354: --------------------------------- As we have discussed offline with Brian and Pavol, Autocomplete specifies d= efault value of {{minChars=3D1}}. This satisfies a behavior that doesn't sh= ow suggestion list when {{input.value.length < 1}}. However in Pavol's case, he used {{minChars =3D 0}} that makes sure auto-co= mpletion works even for {{0}} characters in an input. I believe the behavior is correct and compatible with RF 4.3 implementation. = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6228947170901325249==-- From jira-events at lists.jboss.org Thu Nov 21 17:15:07 2013 Content-Type: multipart/mixed; boundary="===============6884954722933081704==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Thu, 21 Nov 2013 17:15:07 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============6884954722933081704== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13354. ----------------------------- Fix Version/s: (was: 5.0.0.Alpha2) Resolution: Rejected = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6884954722933081704==-- From jira-events at lists.jboss.org Thu Nov 21 17:17:06 2013 Content-Type: multipart/mixed; boundary="===============2708713698198332960==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Refactored Push destroy logic is too aggresive and causes ProgressBar to fail Date: Thu, 21 Nov 2013 17:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============2708713698198332960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925929#com= ment-12925929 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13371: --------------------------------- I have put a breakpoint into debugger and I can't see this component destro= yed more than once or any other issues with the logic. But I will double-check and make sure that the code is properly documented = as it's not obvious. = > Refactored Push destroy logic is too aggresive and causes ProgressBar to = fail > -------------------------------------------------------------------------= ---- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > From RF-13359: > {quote} > It took a while, but I isolated the single offending line: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/push.js#L259 > {code} > $(document).on('cleanDom.RICH', function(event, ui) { > if ($.contains(ui.target, widget.element)) { > widget._destroy(); > } > }); > {code} > [~lfryc] It's not clear to me what you are trying to achieve here, but th= e end result seems to be that the destroy call is too aggressive. Can you = re-visit this please? > {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} > The isolation was difficult, as the file in question should have nothing = to do with the progressBar component. Hence why the effect was observed on= ly had an effect when included via resource packaging. > {panel} > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2708713698198332960==-- From jira-events at lists.jboss.org Thu Nov 21 17:19:05 2013 Content-Type: multipart/mixed; boundary="===============8395402893338848918==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Thu, 21 Nov 2013 17:19:05 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============8395402893338848918== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925930#com= ment-12925930 ] = Brian Leathem commented on RF-13374: ------------------------------------ +1 for _richpush_ = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8395402893338848918==-- From jira-events at lists.jboss.org Thu Nov 21 17:49:06 2013 Content-Type: multipart/mixed; boundary="===============0303708368801697553==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Thu, 21 Nov 2013 17:49:05 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============0303708368801697553== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13374. ----------------------------- Resolution: Done = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0303708368801697553==-- From jira-events at lists.jboss.org Thu Nov 21 17:59:06 2013 Content-Type: multipart/mixed; boundary="===============1851996500787996464==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 17:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============1851996500787996464== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925942#com= ment-12925942 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13359: --------------------------------- All issues with demos mentioned in a issue description cannot be reproduced= anymore. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1851996500787996464==-- From jira-events at lists.jboss.org Thu Nov 21 18:01:07 2013 Content-Type: multipart/mixed; boundary="===============1362554785401232063==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 18:01:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============1362554785401232063== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925942#com= ment-12925942 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13359 at 11/21/13 5:59 PM: ----------------------------------------------------------- All issues with demos mentioned in the issue description cannot be reproduc= ed anymore. = was (Author: lfryc): All issues with demos mentioned in a issue description cannot be reprod= uced anymore. = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1362554785401232063==-- From jira-events at lists.jboss.org Thu Nov 21 18:01:07 2013 Content-Type: multipart/mixed; boundary="===============4308976640080480280==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Thu, 21 Nov 2013 18:01:07 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============4308976640080480280== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13359. ----------------------------- Resolution: Done = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4308976640080480280==-- From jira-events at lists.jboss.org Thu Nov 21 18:10:06 2013 Content-Type: multipart/mixed; boundary="===============2587285516895957153==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Thu, 21 Nov 2013 18:10:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============2587285516895957153== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13365: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2587285516895957153==-- From jira-events at lists.jboss.org Thu Nov 21 18:10:06 2013 Content-Type: multipart/mixed; boundary="===============3450992379311153906==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Thu, 21 Nov 2013 18:10:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============3450992379311153906== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13365: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3450992379311153906==-- From jira-events at lists.jboss.org Thu Nov 21 19:17:06 2013 Content-Type: multipart/mixed; boundary="===============6521704104543636735==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13252) a4j:ajax includes jsf.js script twice Date: Thu, 21 Nov 2013 19:17:06 -0500 Message-ID: In-Reply-To: JIRA.12502662.1381395391000@jira02.app.mwc.hst.phx2.redhat.com --===============6521704104543636735== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13252?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925957#com= ment-12925957 ] = Brian Leathem commented on RF-13252: ------------------------------------ The workaround suggested in RF-13042 is as follows: Add the following code snippet anywhere on the page, outside of the region = participating in the ajax refresh: {quote} {quote} [~ppitonak] would you please verify the above workaround? We should includ= e it in the WFK release notes if so. = > a4j:ajax includes jsf.js script twice > ------------------------------------- > > Key: RF-13252 > URL: https://issues.jboss.org/browse/RF-13252 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.3.4 > Reporter: Jon=C3=A1=C5=A1 Trantina > Fix For: 4.3.5 > > Attachments: reproducer.zip > > > When a4j:script is used in the page like so: > {noformat} > > > > {noformat} > Then two script tags pointing to jsf.js are added to the page, once in th= e head by the inclusion of @ResourceDependency [1], and once again by Overr= iding the ClientBehaviorRenderer#getScript method [2,3]. > Note, that according to Brian, resolving this without introducing any fun= ctional regressions may require the resolution of RF-12270 [4]. > [1] https://github.com/richfaces/richfaces/blob/master/framework/src/main= /java/org/richfaces/ui/ajax/ajax/AjaxBehaviorRenderer.java#L53 > [2] https://github.com/richfaces/richfaces/blob/master/framework/src/main= /java/org/richfaces/ui/ajax/ajax/AjaxBehaviorRenderer.java#L123 > [3] https://github.com/jboss/mojarra/blob/2.1.21-jbossorg-1/jsf-api/src/m= ain/java/javax/faces/render/ClientBehaviorRenderer.java#L95 > [4] https://issues.jboss.org/browse/RF-12270 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6521704104543636735==-- From jira-events at lists.jboss.org Thu Nov 21 19:23:07 2013 Content-Type: multipart/mixed; boundary="===============7398502548519178984==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Thu, 21 Nov 2013 19:23:07 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============7398502548519178984== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-10756: ------------------------------- Description: = added to richfaces-showcase code: {code} {code} and = {code} public void incDaysLive(){ for (InventoryVendorList vendor : inventoryVendorLists) { for (InventoryVendorItem item : vendor.getVendorItems()) { item.setDaysLive(item.getDaysLive()+1); } = } } {code} 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. was: added to richfaces-showcase code: 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. = > 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 > Fix For: 5-Future > > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7398502548519178984==-- From jira-events at lists.jboss.org Thu Nov 21 19:23:08 2013 Content-Type: multipart/mixed; boundary="===============2527953064434530634==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Thu, 21 Nov 2013 19:23:08 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============2527953064434530634== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-10756: ------------------------------- Fix Version/s: (was: 5-Future) = > 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: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2527953064434530634==-- From jira-events at lists.jboss.org Thu Nov 21 19:23:08 2013 Content-Type: multipart/mixed; boundary="===============7352811666832952295==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Thu, 21 Nov 2013 19:23:08 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============7352811666832952295== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-10756: ---------------------------------- Assignee: Pavol Pitonak (was: Nick Belaevski) QE, please verify this issue. = > 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: Pavol Pitonak > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7352811666832952295==-- From jira-events at lists.jboss.org Thu Nov 21 19:27:05 2013 Content-Type: multipart/mixed; boundary="===============6509850444145973970==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Thu, 21 Nov 2013 19:27:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============6509850444145973970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925960#com= ment-12925960 ] = Brian Leathem commented on RF-13370: ------------------------------------ [~lukindo] woudl you like these fixes included in 5.0.0.Alpha2 or Alpha3? = If they fixes are ready, we should consider including them in Alpha2. = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6509850444145973970==-- From jira-events at lists.jboss.org Thu Nov 21 19:29:06 2013 Content-Type: multipart/mixed; boundary="===============6503259742542541955==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 19:29:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============6503259742542541955== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13372. -------------------------------- Resolution: Duplicate Issue = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6503259742542541955==-- From jira-events at lists.jboss.org Thu Nov 21 19:29:06 2013 Content-Type: multipart/mixed; boundary="===============7079619907682703302==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Thu, 21 Nov 2013 19:29:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============7079619907682703302== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925961#com= ment-12925961 ] = Brian Leathem commented on RF-13372: ------------------------------------ The fix for RF-13373 is already committed, so I'm marking this one as the d= uplicate issue. = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7079619907682703302==-- From jira-events at lists.jboss.org Thu Nov 21 19:34:06 2013 Content-Type: multipart/mixed; boundary="===============5547656660703264881==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Thu, 21 Nov 2013 19:34:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============5547656660703264881== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13365: ---------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5547656660703264881==-- From jira-events at lists.jboss.org Fri Nov 22 02:32:06 2013 Content-Type: multipart/mixed; boundary="===============2239439804253889628==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Fri, 22 Nov 2013 02:32:06 -0500 Message-ID: In-Reply-To: JIRA.12440702.1309245969000@jira02.app.mwc.hst.phx2.redhat.com --===============2239439804253889628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11088?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925981#com= ment-12925981 ] = J W commented on RF-11088: -------------------------- I fixed the errors in the mentioned pull request. = > rich:select modify manualInput behavior to avoid single item scoped item = list popup when editing value > -------------------------------------------------------------------------= ----------------------------- > > Key: RF-11088 > URL: https://issues.jboss.org/browse/RF-11088 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Justin Wyer > Labels: rich:select > Fix For: 4.5-Tracking > > > rich:select has usability issues when using enableManualInput=3D"true" th= is will address the issues discussed in the forum post. My current idea is = to attempt to display the full item list and auto highlight the input's val= ue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2239439804253889628==-- From jira-events at lists.jboss.org Fri Nov 22 02:39:06 2013 Content-Type: multipart/mixed; boundary="===============0568300997852882904==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Fri, 22 Nov 2013 02:39:06 -0500 Message-ID: In-Reply-To: JIRA.12440702.1309245969000@jira02.app.mwc.hst.phx2.redhat.com --===============0568300997852882904== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11088?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925981#com= ment-12925981 ] = J W edited comment on RF-11088 at 11/22/13 2:38 AM: ---------------------------------------------------- I fixed the errors in the mentioned pull request. https://github.com/richfaces/richfaces/pull/42 = was (Author: jigg4): I fixed the errors in the mentioned pull request. = > rich:select modify manualInput behavior to avoid single item scoped item = list popup when editing value > -------------------------------------------------------------------------= ----------------------------- > > Key: RF-11088 > URL: https://issues.jboss.org/browse/RF-11088 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Justin Wyer > Labels: rich:select > Fix For: 4.5-Tracking > > > rich:select has usability issues when using enableManualInput=3D"true" th= is will address the issues discussed in the forum post. My current idea is = to attempt to display the full item list and auto highlight the input's val= ue. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0568300997852882904==-- From jira-events at lists.jboss.org Fri Nov 22 02:41:06 2013 Content-Type: multipart/mixed; boundary="===============1046910227771560666==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects Date: Fri, 22 Nov 2013 02:41:06 -0500 Message-ID: In-Reply-To: JIRA.12496870.1374222203000@jira02.app.mwc.hst.phx2.redhat.com --===============1046910227771560666== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13101?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925984#com= ment-12925984 ] = J W commented on RF-13101: -------------------------- i have fixed the pull request: https://github.com/richfaces/richfaces/pull/= 42 = > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select > Fix For: 4.5-Tracking > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper= .getSelectInputLabel(FacesContext facesContext, UIComponent component) is n= ot working with the string-representations of the items. If using cloned ob= jects the equals method will return false, even if the items are the same, = because the IDs are different. > The method should use only the strings of the objects, similiar to how My= Faces has solved this (check workarround). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1046910227771560666==-- From jira-events at lists.jboss.org Fri Nov 22 02:41:07 2013 Content-Type: multipart/mixed; boundary="===============0679862615176183851==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11021) rich:select should show first item in list if defaultLabel is not set Date: Fri, 22 Nov 2013 02:41:07 -0500 Message-ID: In-Reply-To: JIRA.12438620.1306850914000@jira02.app.mwc.hst.phx2.redhat.com --===============0679862615176183851== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11021?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925985#com= ment-12925985 ] = J W commented on RF-11021: -------------------------- pls check the pull request again, as i have fixed the errors: https://githu= b.com/richfaces/richfaces/pull/42 = > rich:select should show first item in list if defaultLabel is not set > --------------------------------------------------------------------- > > Key: RF-11021 > URL: https://issues.jboss.org/browse/RF-11021 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: GAE, Win7-64 > Reporter: Ara Minosian > Labels: richfaces > Fix For: 4.5-Tracking > > > This code does not display first value. Id displays emty item. > {code:xml} = > > > > {code} = > This code dispays first value > {code:xml} = > > > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0679862615176183851==-- From jira-events at lists.jboss.org Fri Nov 22 02:43:06 2013 Content-Type: multipart/mixed; boundary="===============6608647128630641527==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12613) rich:select with enablemanualinput selects wrong items Date: Fri, 22 Nov 2013 02:43:06 -0500 Message-ID: In-Reply-To: JIRA.12479359.1353061335000@jira02.app.mwc.hst.phx2.redhat.com --===============6608647128630641527== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12613?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12925986#com= ment-12925986 ] = J W commented on RF-12613: -------------------------- Fixed the Pull request: https://github.com/richfaces/richfaces/pull/42 = > rich:select with enablemanualinput selects wrong items > ------------------------------------------------------ > > Key: RF-12613 > URL: https://issues.jboss.org/browse/RF-12613 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Final, 4.3.0.M2 > Reporter: geert olaerts > Fix For: 4.5-Tracking > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > When using rich:select with enablemanualinput =3D "true", the wrong item = might be selected. If the list of possible items is (in this order): "test = test" and "test" and the user selects "test" richfaces will select "test te= st" as input. The same happens if the user types "test". If the list is "te= st" and "test test" and the user selects or types "test" the correct item i= s selected. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6608647128630641527==-- From jira-events at lists.jboss.org Fri Nov 22 04:47:06 2013 Content-Type: multipart/mixed; boundary="===============8675828143928974778==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10131) Improve SelectItem(s) handling compatibility with JSF 2.0 Date: Fri, 22 Nov 2013 04:47:06 -0500 Message-ID: In-Reply-To: JIRA.12427446.1294236532000@jira02.app.mwc.hst.phx2.redhat.com --===============8675828143928974778== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10131?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926002#com= ment-12926002 ] = J W commented on RF-10131: -------------------------- Is this already finished? Whenever i try to add an Item with f:selectItem with itemDisabled=3D"true",= the item will be always treated like every other item. = > Improve SelectItem(s) handling compatibility with JSF 2.0 > --------------------------------------------------------- > > Key: RF-10131 > URL: https://issues.jboss.org/browse/RF-10131 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: compatibility > Environment: myfaces 2.0.3, richfaces 4.0 trunk rev. 20883 > Reporter: Martin Ko=C4=8D=C3=AD > Assignee: Gleb Galkin > Fix For: 4.0.0.Milestone6 > > > 1) JSF 2.0 specifies new attributes itemLabel, itemDescription and itemDi= sabled for f:selectItem(s). Unfortunately those attributes are not part of = public API but every renderkit must reimplement it again in own code base. = RichFaces org.richfaces.component.util.SelectUtils.getSelectItems(FacesCont= ext, UIComponent) currently support only old JSF 1.2 style (SelectItem inst= ances are obtained from value=3D"#{}"). = > Implement support for f:selectItems value=3D"#{}" var=3D"variable" = > itemLabel=3D"#{...}" itemValue=3D"#{...}"/> > 2) null or empty SelectItems handling: o.j.rf.SelectUtils throws an excep= tion if no SelectItem(s) are available. If think this is too agressive and = not very useful for user. I suggest to use myfaces-like solution: a warning= in development stage like: > WARNING: ValueExpression #{de.bier.humpen} of UISelectItems with componen= t-path {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /= X500Form.xhtml][Class: javax.faces.component.html.HtmlBody, ... ][Class= : javax.faces.component.UISelectItems,Id: selectItemsId} does not reference= an Object of type SelectItem, array, Iterable or Map, but of type: null -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8675828143928974778==-- From jira-events at lists.jboss.org Fri Nov 22 04:49:07 2013 Content-Type: multipart/mixed; boundary="===============0874199155745321820==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10131) Improve SelectItem(s) handling compatibility with JSF 2.0 Date: Fri, 22 Nov 2013 04:49:07 -0500 Message-ID: In-Reply-To: JIRA.12427446.1294236532000@jira02.app.mwc.hst.phx2.redhat.com --===============0874199155745321820== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10131?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926002#com= ment-12926002 ] = J W edited comment on RF-10131 at 11/22/13 4:49 AM: ---------------------------------------------------- Is this already finished? Whenever i try to add an Item with f:selectItem with itemDisabled=3D"true",= the item will be always treated like every other item. I am using RF 4.3.1 = was (Author: jigg4): Is this already finished? Whenever i try to add an Item with f:selectItem with itemDisabled=3D"true",= the item will be always treated like every other item. = > Improve SelectItem(s) handling compatibility with JSF 2.0 > --------------------------------------------------------- > > Key: RF-10131 > URL: https://issues.jboss.org/browse/RF-10131 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: compatibility > Environment: myfaces 2.0.3, richfaces 4.0 trunk rev. 20883 > Reporter: Martin Ko=C4=8D=C3=AD > Assignee: Gleb Galkin > Fix For: 4.0.0.Milestone6 > > > 1) JSF 2.0 specifies new attributes itemLabel, itemDescription and itemDi= sabled for f:selectItem(s). Unfortunately those attributes are not part of = public API but every renderkit must reimplement it again in own code base. = RichFaces org.richfaces.component.util.SelectUtils.getSelectItems(FacesCont= ext, UIComponent) currently support only old JSF 1.2 style (SelectItem inst= ances are obtained from value=3D"#{}"). = > Implement support for f:selectItems value=3D"#{}" var=3D"variable" = > itemLabel=3D"#{...}" itemValue=3D"#{...}"/> > 2) null or empty SelectItems handling: o.j.rf.SelectUtils throws an excep= tion if no SelectItem(s) are available. If think this is too agressive and = not very useful for user. I suggest to use myfaces-like solution: a warning= in development stage like: > WARNING: ValueExpression #{de.bier.humpen} of UISelectItems with componen= t-path {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /= X500Form.xhtml][Class: javax.faces.component.html.HtmlBody, ... ][Class= : javax.faces.component.UISelectItems,Id: selectItemsId} does not reference= an Object of type SelectItem, array, Iterable or Map, but of type: null -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0874199155745321820==-- From jira-events at lists.jboss.org Fri Nov 22 04:55:07 2013 Content-Type: multipart/mixed; boundary="===============8629610185966210639==" MIME-Version: 1.0 From: J W (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-6678) RichFaces Select components: implement disabled state support for selectItem Date: Fri, 22 Nov 2013 04:55:07 -0500 Message-ID: In-Reply-To: JIRA.12383309.1238663780000@jira02.app.mwc.hst.phx2.redhat.com --===============8629610185966210639== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6678?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926011#comm= ent-12926011 ] = J W commented on RF-6678: ------------------------- Shouldnt this have be done in this issue already? https://issues.jboss.org/= browse/RF-10131 = > RichFaces Select components: implement disabled state support for selectI= tem > -------------------------------------------------------------------------= --- > > Key: RF-6678 > URL: https://issues.jboss.org/browse/RF-6678 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Milestone5 > Reporter: Ilya Shaikovsky > Fix For: 5-Tracking > > > components: > inplaceSelect > select > In future we should support the same in: > listShuttle > orderingList > note: s:selectItems disabled attribute should also works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8629610185966210639==-- From jira-events at lists.jboss.org Fri Nov 22 05:03:06 2013 Content-Type: multipart/mixed; boundary="===============3702404999421056318==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 05:03:06 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555913@jira02.app.mwc.hst.phx2.redhat.com --===============3702404999421056318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13375: ------------------------------- Summary: Bridge Base: components can't be destroyed because th= ey listens for non-existing event cleanDom Key: RF-13375 URL: https://issues.jboss.org/browse/RF-13375 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremost = is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3702404999421056318==-- From jira-events at lists.jboss.org Fri Nov 22 05:03:06 2013 Content-Type: multipart/mixed; boundary="===============7042533561411918900==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Clarify and fix Push destroy logic Date: Fri, 22 Nov 2013 05:03:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============7042533561411918900== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13371: ---------------------------- Summary: Clarify and fix Push destroy logic (was: Refactored Push = destroy logic is too aggresive and causes ProgressBar to fail) Description: = I need to commend on the approach I take for destroying Push component whic= h follows approximately what Widget Factory does. I have also found that the widget _destro method isn't called at all, becau= se there is no such event as {{cleanDom}}. richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremost = is the right event to listen for for component cleanup. was: >From RF-13359: {quote} It took a while, but I isolated the single offending line: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/push.js#L259 {code} $(document).on('cleanDom.RICH', function(event, ui) { if ($.contains(ui.target, widget.element)) { widget._destroy(); } }); {code} [~lfryc] It's not clear to me what you are trying to achieve here, but the = end result seems to be that the destroy call is too aggressive. Can you re= -visit this please? {panel:title=3DNote:|borderStyle=3Ddashed|borderColor=3D#ccc|titleBGColor= =3D#F7D6C1|bgColor=3D#FFFFCE} The isolation was difficult, as the file in question should have nothing to= do with the progressBar component. Hence why the effect was observed only= had an effect when included via resource packaging. {panel} {quote} = > Clarify and fix Push destroy logic > ---------------------------------- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > I need to commend on the approach I take for destroying Push component wh= ich follows approximately what Widget Factory does. > I have also found that the widget _destro method isn't called at all, bec= ause there is no such event as {{cleanDom}}. > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7042533561411918900==-- From jira-events at lists.jboss.org Fri Nov 22 05:03:07 2013 Content-Type: multipart/mixed; boundary="===============3812652420574564016==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 05:03:06 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============3812652420574564016== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13375: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3812652420574564016==-- From jira-events at lists.jboss.org Fri Nov 22 05:05:06 2013 Content-Type: multipart/mixed; boundary="===============7320057357701113546==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Clarify and fix Push destroy logic Date: Fri, 22 Nov 2013 05:05:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============7320057357701113546== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13371. ----------------------------- Resolution: Done = > Clarify and fix Push destroy logic > ---------------------------------- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > I need to commend on the approach I take for destroying Push component wh= ich follows approximately what Widget Factory does. > I have also found that the widget _destro method isn't called at all, bec= ause there is no such event as {{cleanDom}}. > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7320057357701113546==-- From jira-events at lists.jboss.org Fri Nov 22 05:17:06 2013 Content-Type: multipart/mixed; boundary="===============4436273719003919870==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 05:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============4436273719003919870== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926021#com= ment-12926021 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13375: --------------------------------- During debugging I haven't found our event handlers in [bridge-base|https:/= /github.com/richfaces/richfaces/blob/0bf739c81460686c839e6cb5c0d43c40015083= 5c/framework/src/main/resources/META-INF/resources/org.richfaces/bridge/bri= dge-base.js#L19] aren't fired, even though the _destroy for Widget Factory = are called. The reason is that richfaces.js calls {{$.cleanData}}: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/richfaces.js#L155 Then jquery.ui.widget.js fires {{remove}} event when cleanData is called: https://github.com/jquery/jquery-ui/blob/1.10.3/ui/jquery.ui.widget.js#L19 Then this event is observed and this.destroy() method is fired which calls = _destroy() method in widget impls: https://github.com/jquery/jquery-ui/blob/1.10.3/ui/jquery.ui.widget.js#L241 ---- We could depend on this Widget Factory cleaning logic or, in order to make = sure the method is called, we could introduce own one. = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4436273719003919870==-- From jira-events at lists.jboss.org Fri Nov 22 05:17:07 2013 Content-Type: multipart/mixed; boundary="===============3705413579929476960==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 05:17:07 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============3705413579929476960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13375: ------------------------------- Assignee: Brian Leathem (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Wdyt [~bleathem] ? = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3705413579929476960==-- From jira-events at lists.jboss.org Fri Nov 22 05:31:06 2013 Content-Type: multipart/mixed; boundary="===============8522398322577100000==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Fri, 22 Nov 2013 05:31:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============8522398322577100000== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13365: ---------------------------- Labels: regression (was: ) = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8522398322577100000==-- From jira-events at lists.jboss.org Fri Nov 22 07:29:06 2013 Content-Type: multipart/mixed; boundary="===============6699879688804183338==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Fri, 22 Nov 2013 07:29:06 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============6699879688804183338== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-13374: ----------------------------- I need to update RF 4.5 = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6699879688804183338==-- From jira-events at lists.jboss.org Fri Nov 22 07:43:06 2013 Content-Type: multipart/mixed; boundary="===============6891222850126311365==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Updated to RW with RCUE theme: fonts aren't loaded correctly Date: Fri, 22 Nov 2013 07:43:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185290@jira02.app.mwc.hst.phx2.redhat.com --===============6891222850126311365== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13376: ------------------------------- Summary: Updated to RW with RCUE theme: fonts aren't loaded co= rrectly Key: RF-13376 URL: https://issues.jboss.org/browse/RF-13376 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component, examples, showcase Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6891222850126311365==-- From jira-events at lists.jboss.org Fri Nov 22 07:45:06 2013 Content-Type: multipart/mixed; boundary="===============5128396192481154079==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Updated to RW with RCUE theme: fonts aren't loaded correctly Date: Fri, 22 Nov 2013 07:45:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============5128396192481154079== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: The issue is visible on a component-demo or showcase. = > Updated to RW with RCUE theme: fonts aren't loaded correctly > ------------------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo or showcase. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5128396192481154079==-- From jira-events at lists.jboss.org Fri Nov 22 07:55:06 2013 Content-Type: multipart/mixed; boundary="===============7280408885247075295==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Updated to RW with RCUE theme: fonts aren't loaded correctly Date: Fri, 22 Nov 2013 07:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============7280408885247075295== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 6 = > Updated to RW with RCUE theme: fonts aren't loaded correctly > ------------------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo or showcase. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7280408885247075295==-- From jira-events at lists.jboss.org Fri Nov 22 07:57:06 2013 Content-Type: multipart/mixed; boundary="===============6828864243963288764==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 07:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============6828864243963288764== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Summary: Issues when updated to RW with RCUE theme (was: Updated to RW= with RCUE theme: fonts aren't loaded correctly) = > Issues when updated to RW with RCUE theme > ----------------------------------------- > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo. > I can't reproduce issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I would suggest disable default controls (buttons/inputs/...) skinning so= that -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6828864243963288764==-- From jira-events at lists.jboss.org Fri Nov 22 07:57:06 2013 Content-Type: multipart/mixed; boundary="===============5126375930977177531==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 07:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============5126375930977177531== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: = Fonts {{Open Sans}} can't be loadedin the component-demo. I can't reproduce this issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest disable default controls (buttons/inputs/...) skinning so t= hat the themes RichFaces/RichWidgets do not conflict. was: The issue is visible on a component-demo. I can't reproduce issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest disable default controls (buttons/inputs/...) skinning so t= hat = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I would suggest disable default controls (buttons/inputs/...) skinning so= that the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5126375930977177531==-- From jira-events at lists.jboss.org Fri Nov 22 07:57:06 2013 Content-Type: multipart/mixed; boundary="===============3542819344291173579==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 07:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============3542819344291173579== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Summary: Visual issues when updated to RW with RCUE theme (was: Issues= when updated to RW with RCUE theme) = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo. > I can't reproduce issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I would suggest disable default controls (buttons/inputs/...) skinning so= that -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3542819344291173579==-- From jira-events at lists.jboss.org Fri Nov 22 07:57:06 2013 Content-Type: multipart/mixed; boundary="===============8207928355821306269==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Updated to RW with RCUE theme: fonts aren't loaded correctly Date: Fri, 22 Nov 2013 07:57:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============8207928355821306269== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: = The issue is visible on a component-demo. I can't reproduce issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest disable default controls (buttons/inputs/...) skinning so t= hat was: The issue is visible on a component-demo. I can't reproduce issue in Showcase. ---- Additionally we should review demos that they all still look correctly. = > Updated to RW with RCUE theme: fonts aren't loaded correctly > ------------------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo. > I can't reproduce issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I would suggest disable default controls (buttons/inputs/...) skinning so= that -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8207928355821306269==-- From jira-events at lists.jboss.org Fri Nov 22 07:57:06 2013 Content-Type: multipart/mixed; boundary="===============2458539206207578087==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Updated to RW with RCUE theme: fonts aren't loaded correctly Date: Fri, 22 Nov 2013 07:57:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============2458539206207578087== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: = The issue is visible on a component-demo. I can't reproduce issue in Showcase. ---- Additionally we should review demos that they all still look correctly. was:The issue is visible on a component-demo or showcase. = > Updated to RW with RCUE theme: fonts aren't loaded correctly > ------------------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > The issue is visible on a component-demo. > I can't reproduce issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2458539206207578087==-- From jira-events at lists.jboss.org Fri Nov 22 07:59:06 2013 Content-Type: multipart/mixed; boundary="===============8172047634873085143==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 07:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============8172047634873085143== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: = Fonts {{Open Sans}} can't be loadedin the component-demo. I can't reproduce this issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest to disable default controls (buttons/inputs/...) skinning s= o that the themes RichFaces/RichWidgets do not conflict. was: Fonts {{Open Sans}} can't be loadedin the component-demo. I can't reproduce this issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest disable default controls (buttons/inputs/...) skinning so t= hat the themes RichFaces/RichWidgets do not conflict. = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I would suggest to disable default controls (buttons/inputs/...) skinning= so that the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8172047634873085143==-- From jira-events at lists.jboss.org Fri Nov 22 07:59:07 2013 Content-Type: multipart/mixed; boundary="===============5932388940925406370==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 07:59:07 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============5932388940925406370== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Description: = Fonts {{Open Sans}} can't be loadedin the component-demo. I can't reproduce this issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I suggest to disable default controls (buttons/inputs/...) skinning so that= the themes RichFaces/RichWidgets do not conflict. was: Fonts {{Open Sans}} can't be loadedin the component-demo. I can't reproduce this issue in Showcase. ---- Additionally we should review demos that they all still look correctly. ---- I would suggest to disable default controls (buttons/inputs/...) skinning s= o that the themes RichFaces/RichWidgets do not conflict. = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5932388940925406370==-- From jira-events at lists.jboss.org Fri Nov 22 08:14:06 2013 Content-Type: multipart/mixed; boundary="===============0788000004657546012==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Fri, 22 Nov 2013 08:14:05 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============0788000004657546012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926064#com= ment-12926064 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13365: --------------------------------- Disabling now works fine as can be seen in commited dev sample in push-demo. However it takes time before the Push start to work again - I believe this = issue might be related to RF-12543. = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0788000004657546012==-- From jira-events at lists.jboss.org Fri Nov 22 08:16:07 2013 Content-Type: multipart/mixed; boundary="===============5664548882373621139==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Fri, 22 Nov 2013 08:16:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============5664548882373621139== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926065#com= ment-12926065 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13365: --------------------------------- [~jstefek], could you please try to reproduce with RF 4.3 whether it was th= e issue as well? = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5664548882373621139==-- From jira-events at lists.jboss.org Fri Nov 22 08:16:07 2013 Content-Type: multipart/mixed; boundary="===============4241074425742295404==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Fri, 22 Nov 2013 08:16:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============4241074425742295404== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926064#com= ment-12926064 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13365 at 11/22/13 8:14 AM: ----------------------------------------------------------- Disabling now works fine as can be seen in commited dev sample in push-demo= (the inability to function correctly was caused by wrong destroy logic - R= F-13371) However it takes time before the Push start to work again - I believe this = issue might be related to RF-12543. = was (Author: lfryc): Disabling now works fine as can be seen in commited dev sample in push-= demo. However it takes time before the Push start to work again - I believe this = issue might be related to RF-12543. = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4241074425742295404==-- From jira-events at lists.jboss.org Fri Nov 22 08:18:06 2013 Content-Type: multipart/mixed; boundary="===============5516813932241858974==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Fri, 22 Nov 2013 08:18:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============5516813932241858974== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13365. ----------------------------- Resolution: Done I believe the original issue is resolved now. Let's higher the priority of = RF-12543 to get a fix for re-rendered Push. = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5516813932241858974==-- From jira-events at lists.jboss.org Fri Nov 22 08:20:06 2013 Content-Type: multipart/mixed; boundary="===============7496108841422410762==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13374) RichFaces push registered as $.fn.push overrides jQuery function Date: Fri, 22 Nov 2013 08:20:06 -0500 Message-ID: In-Reply-To: JIRA.12525883.1385071792000@jira02.app.mwc.hst.phx2.redhat.com --===============7496108841422410762== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13374?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13374. ----------------------------- Resolution: Done = > RichFaces push registered as $.fn.push overrides jQuery function > ---------------------------------------------------------------- > > Key: RF-13374 > URL: https://issues.jboss.org/browse/RF-13374 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > The real cause of an issue mentioned in RF-13359 isn't an invalid impleme= ntation of _destroy method (RF-13371), but rather conflict caused by regist= ering $.fn.push function. > The solution is to rename that jQuery function, e.g. {{$.fn.richfacespush= }} or namespace it in other way (e.g. {{$.fn.rf.push}} - question is how it= would be called then). Let's investigate further how we can namespace our = jQuery plugins. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7496108841422410762==-- From jira-events at lists.jboss.org Fri Nov 22 08:20:06 2013 Content-Type: multipart/mixed; boundary="===============1858134579557093891==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Fri, 22 Nov 2013 08:20:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============1858134579557093891== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reopened RF-13330: ----------------------------- Brian, I believe this needs to be fixed for RF 4.5 as well. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1858134579557093891==-- From jira-events at lists.jboss.org Fri Nov 22 08:53:07 2013 Content-Type: multipart/mixed; boundary="===============7841676124376546029==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13377) NullPointerException in calendar page fragment Date: Fri, 22 Nov 2013 08:53:07 -0500 Message-ID: In-Reply-To: JIRA.12525914.1385128343852@jira02.app.mwc.hst.phx2.redhat.com --===============7841676124376546029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13377: ---------------------------------- Summary: NullPointerException in calendar page fragment Key: RF-13377 URL: https://issues.jboss.org/browse/RF-13377 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: page-fragments Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT Reporter: Pavol Pitonak # run a Metamer test for r:calendar using page fragments, e.g. {code} mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestCalendarAttributes {code} result: * all tests are skipped because a NPE in calendar page fragment {quote} *org.jboss.arquillian.graphene.enricher.exception.PageFragmentInitializatio= nException: java.lang.reflect.InvocationTargetException* at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPageF= ragment(PageFragmentEnricher.java:171) at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.setupPageFr= agment(PageFragmentEnricher.java:208) at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.enrich(Page= FragmentEnricher.java:85) at org.jboss.arquillian.graphene.enricher.GrapheneEnricher.enrich(Graphene= Enricher.java:51) at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstance= Enricher.java:52) at org.jboss.arquillian.container.test.impl.ClientTestInstanceEnricher.enr= ich(ClientTestInstanceEnricher.java:51) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventCo= ntextImpl.java:99) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImp= l.java:81) at org.jboss.arquillian.container.test.impl.client.ContainerEventControlle= r.createContext(ContainerEventController.java:142) at org.jboss.arquillian.container.test.impl.client.ContainerEventControlle= r.createBeforeContext(ContainerEventController.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImp= l.java:88) at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(Tes= tContextHandler.java:89) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImp= l.java:88) at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(Te= stContextHandler.java:75) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImp= l.java:88) at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(Te= stContextHandler.java:60) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImp= l.java:88) at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.before(EventTestR= unnerAdaptor.java:95) at org.jboss.arquillian.testng.Arquillian.arquillianBeforeTest(Arquillian.= java:130) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja= va:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocatio= nHelper.java:80) at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:525) at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202) at org.testng.internal.Invoker.invokeMethod(Invoker.java:613) at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:842) at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1166) at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker= .java:125) at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) at org.testng.TestRunner.runWorkers(TestRunner.java:1178) at org.testng.TestRunner.privateRun(TestRunner.java:757) at org.testng.TestRunner.run(TestRunner.java:608) at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) at org.testng.SuiteRunner.run(SuiteRunner.java:240) at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158) at org.testng.TestNG.runSuitesLocally(TestNG.java:1083) at org.testng.TestNG.run(TestNG.java:999) at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java= :91) at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeSingle= Class(TestNGDirectoryTestSuite.java:128) at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(TestN= GDirectoryTestSuite.java:112) at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.j= ava:113) at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClass= Loader(ForkedBooter.java:200) at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Forked= Booter.java:153) at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:10= 3) *Caused by: java.lang.reflect.InvocationTargetException* at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructor= AccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingCon= structorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:526) at org.jboss.arquillian.graphene.enricher.AbstractSearchContextEnricher.in= stantiate(AbstractSearchContextEnricher.java:174) at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPageF= ragment(PageFragmentEnricher.java:144) ... 76 more *Caused by: java.lang.NullPointerException: configuration is null - it need= s to be setup before starting to use it* at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfiguratio= nContext.get(RichFacesPageFragmentsConfigurationContext.java:43) at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfiguratio= nContext$2.getTarget(RichFacesPageFragmentsConfigurationContext.java:97) at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfiguratio= nContext$1.invoke(RichFacesPageFragmentsConfigurationContext.java:57) at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.intercept(Grap= heneProxyHandler.java:92) at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfiguratio= n$$EnhancerByGraphene$$e41cfe31.isUseJSInteractionStrategy() at org.richfaces.fragment.calendar.RichFacesCalendar.(RichFacesCalen= dar.java:52) ... 82 more {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7841676124376546029==-- From jira-events at lists.jboss.org Fri Nov 22 11:38:06 2013 Content-Type: multipart/mixed; boundary="===============4249486083784642215==" MIME-Version: 1.0 From: David Rawlings (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Fri, 22 Nov 2013 11:38:05 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============4249486083784642215== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] David Rawlings updated RF-12533: -------------------------------- Attachment: TreeStructureManager.java I had the same problem, using webflow 2.3.1, myfaces 2.1.12 and RichFaces 4= .3.3.Final. I'm not sure what the 'correct' fix is, but I've implemented t= he attached patch (spring faces 2.3.1 TreeStructureManager) that seems to w= ork ok. I've added comments in the attached source to show where the patch= starts/finishes. I'm no myfaces/webflow/RichFaces expert so use at your own risk... = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4249486083784642215==-- From jira-events at lists.jboss.org Fri Nov 22 13:11:06 2013 Content-Type: multipart/mixed; boundary="===============6281407416791852757==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 13:11:06 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============6281407416791852757== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926253#com= ment-12926253 ] = Brian Leathem commented on RF-13375: ------------------------------------ Let's add a comment to richfaces.js that this happens and is expected then = we can remove the listeners from bridge-base. = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6281407416791852757==-- From jira-events at lists.jboss.org Fri Nov 22 13:11:06 2013 Content-Type: multipart/mixed; boundary="===============2970891719511438428==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Fri, 22 Nov 2013 13:11:06 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============2970891719511438428== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13375: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Brian Leathem) Agreed: we will depend on Widget Factory's cleanData hook. Let's remove eve= nt hooks from bridge-base.js. = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2970891719511438428==-- From jira-events at lists.jboss.org Fri Nov 22 13:13:06 2013 Content-Type: multipart/mixed; boundary="===============0548113580411506048==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Fri, 22 Nov 2013 13:13:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============0548113580411506048== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926255#com= ment-12926255 ] = Brian Leathem commented on RF-13330: ------------------------------------ +1, let's check RichFaces 4.5 for improper jQuery usage as well. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0548113580411506048==-- From jira-events at lists.jboss.org Fri Nov 22 13:42:06 2013 Content-Type: multipart/mixed; boundary="===============5994342863418981117==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10131) Improve SelectItem(s) handling compatibility with JSF 2.0 Date: Fri, 22 Nov 2013 13:42:06 -0500 Message-ID: In-Reply-To: JIRA.12427446.1294236532000@jira02.app.mwc.hst.phx2.redhat.com --===============5994342863418981117== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10131?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926261#com= ment-12926261 ] = Brian Leathem commented on RF-10131: ------------------------------------ This issue states it was resolved in the select and inplaceSelect component= s. RF-4491 address seeing this impl'ed in the pick and ordering list. = > Improve SelectItem(s) handling compatibility with JSF 2.0 > --------------------------------------------------------- > > Key: RF-10131 > URL: https://issues.jboss.org/browse/RF-10131 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: compatibility > Environment: myfaces 2.0.3, richfaces 4.0 trunk rev. 20883 > Reporter: Martin Ko=C4=8D=C3=AD > Assignee: Gleb Galkin > Fix For: 4.0.0.Milestone6 > > > 1) JSF 2.0 specifies new attributes itemLabel, itemDescription and itemDi= sabled for f:selectItem(s). Unfortunately those attributes are not part of = public API but every renderkit must reimplement it again in own code base. = RichFaces org.richfaces.component.util.SelectUtils.getSelectItems(FacesCont= ext, UIComponent) currently support only old JSF 1.2 style (SelectItem inst= ances are obtained from value=3D"#{}"). = > Implement support for f:selectItems value=3D"#{}" var=3D"variable" = > itemLabel=3D"#{...}" itemValue=3D"#{...}"/> > 2) null or empty SelectItems handling: o.j.rf.SelectUtils throws an excep= tion if no SelectItem(s) are available. If think this is too agressive and = not very useful for user. I suggest to use myfaces-like solution: a warning= in development stage like: > WARNING: ValueExpression #{de.bier.humpen} of UISelectItems with componen= t-path {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /= X500Form.xhtml][Class: javax.faces.component.html.HtmlBody, ... ][Class= : javax.faces.component.UISelectItems,Id: selectItemsId} does not reference= an Object of type SelectItem, array, Iterable or Map, but of type: null -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5994342863418981117==-- From jira-events at lists.jboss.org Fri Nov 22 13:44:05 2013 Content-Type: multipart/mixed; boundary="===============2801414488395779461==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Fri, 22 Nov 2013 13:44:05 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============2801414488395779461== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926262#com= ment-12926262 ] = Brian Leathem commented on RF-12533: ------------------------------------ Is there a corresponding Spring Webflow issue tracking this? = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2801414488395779461==-- From jira-events at lists.jboss.org Fri Nov 22 13:46:06 2013 Content-Type: multipart/mixed; boundary="===============6621458221026658695==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Clarify and fix Push destroy logic Date: Fri, 22 Nov 2013 13:46:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============6621458221026658695== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13371: ------------------------------- Description: = I need to comment on the approach I took for destroying the Push component = which follows approximately what Widget Factory does. I have also found that the widget _destroy method isn't called at all, beca= use there is no such event as {{cleanDom}}. richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremost = is the right event to listen for for component cleanup. was: I need to commend on the approach I take for destroying Push component whic= h follows approximately what Widget Factory does. I have also found that the widget _destro method isn't called at all, becau= se there is no such event as {{cleanDom}}. richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremost = is the right event to listen for for component cleanup. = > Clarify and fix Push destroy logic > ---------------------------------- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > I need to comment on the approach I took for destroying the Push componen= t which follows approximately what Widget Factory does. > I have also found that the widget _destroy method isn't called at all, be= cause there is no such event as {{cleanDom}}. > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6621458221026658695==-- From jira-events at lists.jboss.org Fri Nov 22 13:53:06 2013 Content-Type: multipart/mixed; boundary="===============7804342245650516713==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-6678) RichFaces Select components: implement disabled state support for selectItem Date: Fri, 22 Nov 2013 13:53:06 -0500 Message-ID: In-Reply-To: JIRA.12383309.1238663780000@jira02.app.mwc.hst.phx2.redhat.com --===============7804342245650516713== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6678?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-6678: --------------------------------- Assignee: Pavol Pitonak QE, would you please confirm one way or another the status of disabled Sele= ctItems in select and inplaceSelect components? = > RichFaces Select components: implement disabled state support for selectI= tem > -------------------------------------------------------------------------= --- > > Key: RF-6678 > URL: https://issues.jboss.org/browse/RF-6678 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Milestone5 > Reporter: Ilya Shaikovsky > Assignee: Pavol Pitonak > Fix For: 5-Tracking > > > components: > inplaceSelect > select > In future we should support the same in: > listShuttle > orderingList > note: s:selectItems disabled attribute should also works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7804342245650516713==-- From jira-events at lists.jboss.org Fri Nov 22 14:40:06 2013 Content-Type: multipart/mixed; boundary="===============5340928729635219046==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13377) NullPointerException in calendar page fragment Date: Fri, 22 Nov 2013 14:40:06 -0500 Message-ID: In-Reply-To: JIRA.12525914.1385128343000@jira02.app.mwc.hst.phx2.redhat.com --===============5340928729635219046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13377?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13377: ---------------------------------- Assignee: Pavol Pitonak Pavol, page fragments are owned by QE. Please assess, schedule, and assign= this issue as you see fit. = > NullPointerException in calendar page fragment > ---------------------------------------------- > > Key: RF-13377 > URL: https://issues.jboss.org/browse/RF-13377 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > > # run a Metamer test for r:calendar using page fragments, e.g. > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestCalendarAttributes > {code} > result: > * all tests are skipped because a NPE in calendar page fragment > {quote} > *org.jboss.arquillian.graphene.enricher.exception.PageFragmentInitializat= ionException: java.lang.reflect.InvocationTargetException* > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:171) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.setupPage= Fragment(PageFragmentEnricher.java:208) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.enrich(Pa= geFragmentEnricher.java:85) > at org.jboss.arquillian.graphene.enricher.GrapheneEnricher.enrich(Graphe= neEnricher.java:51) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstan= ceEnricher.java:52) > at org.jboss.arquillian.container.test.impl.ClientTestInstanceEnricher.e= nrich(ClientTestInstanceEnricher.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(Event= ContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:81) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createBeforeContext(ContainerEventController.java:124) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(T= estContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(= TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(= TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.before(EventTes= tRunnerAdaptor.java:95) > at org.jboss.arquillian.testng.Arquillian.arquillianBeforeTest(Arquillia= n.java:130) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocat= ionHelper.java:80) > at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:52= 5) > at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202) > at org.testng.internal.Invoker.invokeMethod(Invoker.java:613) > at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:842) > at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1166) > at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWork= er.java:125) > at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) > at org.testng.TestRunner.runWorkers(TestRunner.java:1178) > at org.testng.TestRunner.privateRun(TestRunner.java:757) > at org.testng.TestRunner.run(TestRunner.java:608) > at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) > at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) > at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) > at org.testng.SuiteRunner.run(SuiteRunner.java:240) > at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) > at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) > at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158) > at org.testng.TestNG.runSuitesLocally(TestNG.java:1083) > at org.testng.TestNG.run(TestNG.java:999) > at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.ja= va:91) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeSing= leClass(TestNGDirectoryTestSuite.java:128) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(Tes= tNGDirectoryTestSuite.java:112) > at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider= .java:113) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameCla= ssLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 103) > *Caused by: java.lang.reflect.InvocationTargetException* > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct= orAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC= onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.jboss.arquillian.graphene.enricher.AbstractSearchContextEnricher.= instantiate(AbstractSearchContextEnricher.java:174) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:144) > ... 76 more > *Caused by: java.lang.NullPointerException: configuration is null - it ne= eds to be setup before starting to use it* > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext.get(RichFacesPageFragmentsConfigurationContext.java:43) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$2.getTarget(RichFacesPageFragmentsConfigurationContext.java:97) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$1.invoke(RichFacesPageFragmentsConfigurationContext.java:57) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.intercept(Gr= apheneProxyHandler.java:92) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ion$$EnhancerByGraphene$$e41cfe31.isUseJSInteractionStrategy() > at org.richfaces.fragment.calendar.RichFacesCalendar.(RichFacesCal= endar.java:52) > ... 82 more > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5340928729635219046==-- From jira-events at lists.jboss.org Fri Nov 22 14:42:07 2013 Content-Type: multipart/mixed; boundary="===============3515145360953976722==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 14:42:07 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============3515145360953976722== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926274#com= ment-12926274 ] = Brian Leathem edited comment on RF-13376 at 11/22/13 2:41 PM: -------------------------------------------------------------- [~lfryc] I suggest we address this along with theming in 5.0.0.Alpha3. = was (Author: bleathem): [~lfryc] I suggest we address this along with theming in 5.0.0.Alpha3? = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3515145360953976722==-- From jira-events at lists.jboss.org Fri Nov 22 14:42:07 2013 Content-Type: multipart/mixed; boundary="===============8487572043884616393==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Fri, 22 Nov 2013 14:42:07 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============8487572043884616393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926274#com= ment-12926274 ] = Brian Leathem commented on RF-13376: ------------------------------------ [~lfryc] I suggest we address this along with theming in 5.0.0.Alpha3? = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8487572043884616393==-- From jira-events at lists.jboss.org Sat Nov 23 05:43:06 2013 Content-Type: multipart/mixed; boundary="===============2730512405152680437==" MIME-Version: 1.0 From: Salvo Isaja (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13378) extendedDataTable not shown inside Bootstrap tab panel Date: Sat, 23 Nov 2013 05:43:05 -0500 Message-ID: In-Reply-To: JIRA.12525973.1385203366104@jira02.app.mwc.hst.phx2.redhat.com --===============2730512405152680437== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Salvo Isaja created RF-13378: -------------------------------- Summary: extendedDataTable not shown inside Bootstrap tab panel Key: RF-13378 URL: https://issues.jboss.org/browse/RF-13378 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.3.4 Environment: Tested on Ubuntu 12.04, Firefox 25, JDK 7u45, GlassFi= sh 3.1.2.2 Reporter: Salvo Isaja As described in RF-12682, when an extendedDataTable is placed in a parent w= hich is not displayed by default, showing the parent causes the table to be= invisible. This was reported to be solved on 4.3.2 for tables inside rich:= tabPanel, while this issue is on 4.3.4 for tables inside a tab panel from B= ootstrap 3. Attached a minimal project which demonstrates the issue. Thanks. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2730512405152680437==-- From jira-events at lists.jboss.org Sat Nov 23 05:45:06 2013 Content-Type: multipart/mixed; boundary="===============0130788018476386939==" MIME-Version: 1.0 From: Salvo Isaja (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13378) extendedDataTable not shown inside Bootstrap tab panel Date: Sat, 23 Nov 2013 05:45:05 -0500 Message-ID: In-Reply-To: JIRA.12525973.1385203366000@jira02.app.mwc.hst.phx2.redhat.com --===============0130788018476386939== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13378?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Salvo Isaja updated RF-13378: ----------------------------- Attachment: ExtendedDataTableTest.7z NetBeans project with a facelet that demonstrates the problem. Includes Boo= tstrap 3. = > extendedDataTable not shown inside Bootstrap tab panel > ------------------------------------------------------ > > Key: RF-13378 > URL: https://issues.jboss.org/browse/RF-13378 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.4 > Environment: Tested on Ubuntu 12.04, Firefox 25, JDK 7u45, GlassF= ish 3.1.2.2 > Reporter: Salvo Isaja > Attachments: ExtendedDataTableTest.7z > > > As described in RF-12682, when an extendedDataTable is placed in a parent= which is not displayed by default, showing the parent causes the table to = be invisible. This was reported to be solved on 4.3.2 for tables inside ric= h:tabPanel, while this issue is on 4.3.4 for tables inside a tab panel from= Bootstrap 3. > Attached a minimal project which demonstrates the issue. > Thanks. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0130788018476386939==-- From jira-events at lists.jboss.org Sat Nov 23 05:45:07 2013 Content-Type: multipart/mixed; boundary="===============6808067154760357663==" MIME-Version: 1.0 From: Salvo Isaja (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel Date: Sat, 23 Nov 2013 05:45:06 -0500 Message-ID: In-Reply-To: JIRA.12481662.1356024824000@jira02.app.mwc.hst.phx2.redhat.com --===============6808067154760357663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12682?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926337#com= ment-12926337 ] = Salvo Isaja commented on RF-12682: ---------------------------------- Hi Brian, I've opened RF-13378, thanks. = > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, test= case_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTabl= e is hidden (when the page loads) and then it is made visible later the tab= le can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if = we have one extendedDataTable in each tab (the first tab shows and the sec= ond tab is not shown at first). In this case once the user clicks on the s= econd tab and tries to populate the extendedDataTable (via any action). The= n the table is not rendered properly. A sample project has been provided a= t the following link that further describe this issue. You can download the= eclipse project attached at the end of the following message to reproduce = this issue. > https://community.jboss.org/message/783787 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6808067154760357663==-- From jira-events at lists.jboss.org Sun Nov 24 02:49:05 2013 Content-Type: multipart/mixed; boundary="===============8463819807279416188==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Sun, 24 Nov 2013 02:49:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============8463819807279416188== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926363#com= ment-12926363 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13376: --------------------------------- +1, since it doesn't affect Showcase much = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8463819807279416188==-- From jira-events at lists.jboss.org Sun Nov 24 02:51:06 2013 Content-Type: multipart/mixed; boundary="===============5315728486640904207==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Sun, 24 Nov 2013 02:51:06 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============5315728486640904207== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Fix Version/s: 5.0.0.Alpha3 (was: 5.0.0.Alpha2) = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5315728486640904207==-- From jira-events at lists.jboss.org Sun Nov 24 02:51:06 2013 Content-Type: multipart/mixed; boundary="===============3373387371002933470==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Sun, 24 Nov 2013 02:51:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============3373387371002933470== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926363#com= ment-12926363 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13376 at 11/24/13 2:49 AM: ----------------------------------------------------------- +1, since it doesn't affect Showcase = was (Author: lfryc): +1, since it doesn't affect Showcase much = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3373387371002933470==-- From jira-events at lists.jboss.org Sun Nov 24 02:56:06 2013 Content-Type: multipart/mixed; boundary="===============6111298974001098131==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13375) Bridge Base: components can't be destroyed because they listens for non-existing event cleanDom Date: Sun, 24 Nov 2013 02:56:05 -0500 Message-ID: In-Reply-To: JIRA.12525898.1385114555000@jira02.app.mwc.hst.phx2.redhat.com --===============6111298974001098131== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13375?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13375. ----------------------------- Resolution: Done = > Bridge Base: components can't be destroyed because they listens for non-e= xisting event cleanDom > -------------------------------------------------------------------------= ---------------------- > > Key: RF-13375 > URL: https://issues.jboss.org/browse/RF-13375 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6111298974001098131==-- From jira-events at lists.jboss.org Sun Nov 24 02:58:06 2013 Content-Type: multipart/mixed; boundary="===============7969318644455391517==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13376) Visual issues when updated to RW with RCUE theme Date: Sun, 24 Nov 2013 02:58:05 -0500 Message-ID: In-Reply-To: JIRA.12525909.1385124185000@jira02.app.mwc.hst.phx2.redhat.com --===============7969318644455391517== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13376?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13376: ---------------------------- Sprint: (was: 5.0.0.Alpha2 - Sprint 6) = > Visual issues when updated to RW with RCUE theme > ------------------------------------------------ > > Key: RF-13376 > URL: https://issues.jboss.org/browse/RF-13376 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, examples, showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > Fonts {{Open Sans}} can't be loadedin the component-demo. > I can't reproduce this issue in Showcase. > ---- > Additionally we should review demos that they all still look correctly. > ---- > I suggest to disable default controls (buttons/inputs/...) skinning so th= at the themes RichFaces/RichWidgets do not conflict. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7969318644455391517==-- From jira-events at lists.jboss.org Sun Nov 24 03:19:06 2013 Content-Type: multipart/mixed; boundary="===============2779887192194496741==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Sun, 24 Nov 2013 03:19:06 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============2779887192194496741== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13330: ---------------------------- Fix Version/s: 4.5.0.Alpha1 = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2779887192194496741==-- From jira-events at lists.jboss.org Sun Nov 24 03:19:06 2013 Content-Type: multipart/mixed; boundary="===============7334804167366699992==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13330) RichFaces.jQuery should be used in CDK templates instead of $ Date: Sun, 24 Nov 2013 03:19:05 -0500 Message-ID: In-Reply-To: JIRA.12524718.1384095223000@jira02.app.mwc.hst.phx2.redhat.com --===============7334804167366699992== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13330?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13330. ----------------------------- Resolution: Done I have replaced occurences of improper $/jQuery usage with RichFaces.jQuery= in 4.5.x branch. = > RichFaces.jQuery should be used in CDK templates instead of $ > ------------------------------------------------------------- > > Key: RF-13330 > URL: https://issues.jboss.org/browse/RF-13330 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > RichFaces make use of non-conflicting jQuery reference to avoid collision= s with user-specific use of jQuery. > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/input/autocomplete/aut= ocomplete.template.xml#L44 > https://github.com/richfaces/richfaces/blob/b7df8b6d5d46e17f47ecc8d099f34= 41bb81b8b9e/framework/src/main/java/org/richfaces/ui/select/orderingList/or= dering-list.template.xml#L92 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7334804167366699992==-- From jira-events at lists.jboss.org Sun Nov 24 03:21:05 2013 Content-Type: multipart/mixed; boundary="===============3776431927479299396==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet Date: Sun, 24 Nov 2013 03:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263567@jira02.app.mwc.hst.phx2.redhat.com --===============3776431927479299396== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13379: ------------------------------- Summary: Build on Travis fails due to NoClassDefFoundEx.: java= x/servlet/Servlet Key: RF-13379 URL: https://issues.jboss.org/browse/RF-13379 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D https://travis-ci.org/richfaces/richfaces/builds/14381706 {code} [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< [INFO] = [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further d= etails. Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerator = execute SEVERE: null java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: ja= vax/servlet/Servlet at java.util.concurrent.FutureTask.report(FutureTask.java:122) at java.util.concurrent.FutureTask.get(FutureTask.java:188) at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGene= rator.java:437) at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateRes= ourcesMain.java:39) at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java:5= 7) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso= rImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) at java.lang.Thread.run(Thread.java:744) Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:800) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) at java.net.URLClassLoader.access$100(URLClassLoader.java:71) at java.net.URLClassLoader$1.run(URLClassLoader.java:361) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:425) at java.lang.ClassLoader.loadClass(ClassLoader.java:358) at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(ResourceF= actoryImpl.java:356) at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFacto= ryImpl.java:343) {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3776431927479299396==-- From jira-events at lists.jboss.org Sun Nov 24 03:23:06 2013 Content-Type: multipart/mixed; boundary="===============0899510260832058667==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet in resource-optimizer Date: Sun, 24 Nov 2013 03:23:06 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263000@jira02.app.mwc.hst.phx2.redhat.com --===============0899510260832058667== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13379?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13379: ---------------------------- Summary: Build on Travis fails due to NoClassDefFoundEx.: javax/servlet= /Servlet in resource-optimizer (was: Build on Travis fails due to NoClassD= efFoundEx.: javax/servlet/Servlet) = > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet in= resource-optimizer > -------------------------------------------------------------------------= ------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] = > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerato= r execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: = javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGe= nerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateR= esourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java= :57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14= 2) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(Resourc= eFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFac= toryImpl.java:343) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0899510260832058667==-- From jira-events at lists.jboss.org Sun Nov 24 03:23:06 2013 Content-Type: multipart/mixed; boundary="===============8191098687708497200==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet Date: Sun, 24 Nov 2013 03:23:06 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263000@jira02.app.mwc.hst.phx2.redhat.com --===============8191098687708497200== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13379?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13379: ---------------------------- Component/s: tests - functional = = > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet > ---------------------------------------------------------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] = > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerato= r execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: = javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGe= nerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateR= esourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java= :57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14= 2) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(Resourc= eFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFac= toryImpl.java:343) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8191098687708497200==-- From jira-events at lists.jboss.org Sun Nov 24 03:23:06 2013 Content-Type: multipart/mixed; boundary="===============3871351961104817408==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet Date: Sun, 24 Nov 2013 03:23:06 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263000@jira02.app.mwc.hst.phx2.redhat.com --===============3871351961104817408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13379?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13379: ---------------------------- Component/s: resource handling (was: tests - functional ) = > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet > ---------------------------------------------------------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] = > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerato= r execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: = javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGe= nerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateR= esourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java= :57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14= 2) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(Resourc= eFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFac= toryImpl.java:343) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3871351961104817408==-- From jira-events at lists.jboss.org Sun Nov 24 03:23:06 2013 Content-Type: multipart/mixed; boundary="===============5720040866679779394==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (during framework resource optimization) Date: Sun, 24 Nov 2013 03:23:06 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263000@jira02.app.mwc.hst.phx2.redhat.com --===============5720040866679779394== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13379?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13379: ---------------------------- Summary: Build on Travis fails due to NoClassDefFoundEx.: javax/servlet= /Servlet (during framework resource optimization) (was: Build on Travis fa= ils due to NoClassDefFoundEx.: javax/servlet/Servlet in resource-optimizer) = > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (d= uring framework resource optimization) > -------------------------------------------------------------------------= -------------------------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] = > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerato= r execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: = javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGe= nerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateR= esourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java= :57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14= 2) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(Resourc= eFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFac= toryImpl.java:343) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5720040866679779394==-- From jira-events at lists.jboss.org Mon Nov 25 03:00:08 2013 Content-Type: multipart/mixed; boundary="===============6818498773451768580==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13377) NullPointerException in calendar page fragment Date: Mon, 25 Nov 2013 03:00:06 -0500 Message-ID: In-Reply-To: JIRA.12525914.1385128343000@jira02.app.mwc.hst.phx2.redhat.com --===============6818498773451768580== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13377?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reassigned RF-13377: -------------------------------- Assignee: Ji=C5=99=C3=AD =C5=A0tefek (was: Pavol Pitonak) = > NullPointerException in calendar page fragment > ---------------------------------------------- > > Key: RF-13377 > URL: https://issues.jboss.org/browse/RF-13377 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Ji=C5=99=C3=AD =C5=A0tefek > > # run a Metamer test for r:calendar using page fragments, e.g. > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestCalendarAttributes > {code} > result: > * all tests are skipped because a NPE in calendar page fragment > {quote} > *org.jboss.arquillian.graphene.enricher.exception.PageFragmentInitializat= ionException: java.lang.reflect.InvocationTargetException* > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:171) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.setupPage= Fragment(PageFragmentEnricher.java:208) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.enrich(Pa= geFragmentEnricher.java:85) > at org.jboss.arquillian.graphene.enricher.GrapheneEnricher.enrich(Graphe= neEnricher.java:51) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstan= ceEnricher.java:52) > at org.jboss.arquillian.container.test.impl.ClientTestInstanceEnricher.e= nrich(ClientTestInstanceEnricher.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(Event= ContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:81) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createBeforeContext(ContainerEventController.java:124) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(T= estContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(= TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(= TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.before(EventTes= tRunnerAdaptor.java:95) > at org.jboss.arquillian.testng.Arquillian.arquillianBeforeTest(Arquillia= n.java:130) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocat= ionHelper.java:80) > at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:52= 5) > at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202) > at org.testng.internal.Invoker.invokeMethod(Invoker.java:613) > at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:842) > at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1166) > at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWork= er.java:125) > at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) > at org.testng.TestRunner.runWorkers(TestRunner.java:1178) > at org.testng.TestRunner.privateRun(TestRunner.java:757) > at org.testng.TestRunner.run(TestRunner.java:608) > at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) > at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) > at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) > at org.testng.SuiteRunner.run(SuiteRunner.java:240) > at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) > at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) > at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158) > at org.testng.TestNG.runSuitesLocally(TestNG.java:1083) > at org.testng.TestNG.run(TestNG.java:999) > at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.ja= va:91) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeSing= leClass(TestNGDirectoryTestSuite.java:128) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(Tes= tNGDirectoryTestSuite.java:112) > at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider= .java:113) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameCla= ssLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 103) > *Caused by: java.lang.reflect.InvocationTargetException* > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct= orAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC= onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.jboss.arquillian.graphene.enricher.AbstractSearchContextEnricher.= instantiate(AbstractSearchContextEnricher.java:174) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:144) > ... 76 more > *Caused by: java.lang.NullPointerException: configuration is null - it ne= eds to be setup before starting to use it* > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext.get(RichFacesPageFragmentsConfigurationContext.java:43) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$2.getTarget(RichFacesPageFragmentsConfigurationContext.java:97) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$1.invoke(RichFacesPageFragmentsConfigurationContext.java:57) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.intercept(Gr= apheneProxyHandler.java:92) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ion$$EnhancerByGraphene$$e41cfe31.isUseJSInteractionStrategy() > at org.richfaces.fragment.calendar.RichFacesCalendar.(RichFacesCal= endar.java:52) > ... 82 more > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6818498773451768580==-- From jira-events at lists.jboss.org Mon Nov 25 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============5392386566915619406==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Mon, 25 Nov 2013 03:14:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============5392386566915619406== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926414#com= ment-12926414 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13365: ---------------------------------- [~lfryc], the Metamer sample is working with RF 4.3.x. = Verified, that it works now with RF 5. The delay between repeated subscription (time before the Push start to work= again) is reported in [RF-12096|https://issues.jboss.org/browse/RF-12096]. = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5392386566915619406==-- From jira-events at lists.jboss.org Mon Nov 25 04:09:06 2013 Content-Type: multipart/mixed; boundary="===============8969256343925185094==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13377) NullPointerException in calendar page fragment Date: Mon, 25 Nov 2013 04:09:06 -0500 Message-ID: In-Reply-To: JIRA.12525914.1385128343000@jira02.app.mwc.hst.phx2.redhat.com --===============8969256343925185094== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13377?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13377: ----------------------------- Assignee: Juraj H=C3=BAska (was: Ji=C5=99=C3=AD =C5=A0tefek) = > NullPointerException in calendar page fragment > ---------------------------------------------- > > Key: RF-13377 > URL: https://issues.jboss.org/browse/RF-13377 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Juraj H=C3=BAska > > # run a Metamer test for r:calendar using page fragments, e.g. > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestCalendarAttributes > {code} > result: > * all tests are skipped because a NPE in calendar page fragment > {quote} > *org.jboss.arquillian.graphene.enricher.exception.PageFragmentInitializat= ionException: java.lang.reflect.InvocationTargetException* > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:171) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.setupPage= Fragment(PageFragmentEnricher.java:208) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.enrich(Pa= geFragmentEnricher.java:85) > at org.jboss.arquillian.graphene.enricher.GrapheneEnricher.enrich(Graphe= neEnricher.java:51) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstan= ceEnricher.java:52) > at org.jboss.arquillian.container.test.impl.ClientTestInstanceEnricher.e= nrich(ClientTestInstanceEnricher.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(Event= ContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:81) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createBeforeContext(ContainerEventController.java:124) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(T= estContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(= TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(= TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.before(EventTes= tRunnerAdaptor.java:95) > at org.jboss.arquillian.testng.Arquillian.arquillianBeforeTest(Arquillia= n.java:130) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocat= ionHelper.java:80) > at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:52= 5) > at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202) > at org.testng.internal.Invoker.invokeMethod(Invoker.java:613) > at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:842) > at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1166) > at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWork= er.java:125) > at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) > at org.testng.TestRunner.runWorkers(TestRunner.java:1178) > at org.testng.TestRunner.privateRun(TestRunner.java:757) > at org.testng.TestRunner.run(TestRunner.java:608) > at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) > at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) > at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) > at org.testng.SuiteRunner.run(SuiteRunner.java:240) > at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) > at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) > at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158) > at org.testng.TestNG.runSuitesLocally(TestNG.java:1083) > at org.testng.TestNG.run(TestNG.java:999) > at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.ja= va:91) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeSing= leClass(TestNGDirectoryTestSuite.java:128) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(Tes= tNGDirectoryTestSuite.java:112) > at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider= .java:113) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameCla= ssLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 103) > *Caused by: java.lang.reflect.InvocationTargetException* > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct= orAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC= onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.jboss.arquillian.graphene.enricher.AbstractSearchContextEnricher.= instantiate(AbstractSearchContextEnricher.java:174) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:144) > ... 76 more > *Caused by: java.lang.NullPointerException: configuration is null - it ne= eds to be setup before starting to use it* > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext.get(RichFacesPageFragmentsConfigurationContext.java:43) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$2.getTarget(RichFacesPageFragmentsConfigurationContext.java:97) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$1.invoke(RichFacesPageFragmentsConfigurationContext.java:57) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.intercept(Gr= apheneProxyHandler.java:92) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ion$$EnhancerByGraphene$$e41cfe31.isUseJSInteractionStrategy() > at org.richfaces.fragment.calendar.RichFacesCalendar.(RichFacesCal= endar.java:52) > ... 82 more > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8969256343925185094==-- From jira-events at lists.jboss.org Mon Nov 25 04:55:06 2013 Content-Type: multipart/mixed; boundary="===============7279274656359026500==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13377) NullPointerException in calendar page fragment Date: Mon, 25 Nov 2013 04:55:06 -0500 Message-ID: In-Reply-To: JIRA.12525914.1385128343000@jira02.app.mwc.hst.phx2.redhat.com --===============7279274656359026500== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13377?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926430#com= ment-12926430 ] = Juraj H=C3=BAska commented on RF-13377: ---------------------------------- I am linking the pull request which resolves this issue. The problem was: Some fragments need Page fragment configuration to be initialized. However,= I removed support for it in [this|https://github.com/richfaces/richfaces/c= ommit/d7b47deb404951e93ac8ea05ed5b4ac986b5ea1e] commit for page fragments. I thought that it should not be Arquillian extension till RF-13343 is resol= ved. However, it should be, just the configuration from JSON should not be = used. It did not work before, because {{META-INF/services/org...}} was not = pointing correctly to the page fragments extension class. In the pull request I am making the Page Fragments extension once again. = > NullPointerException in calendar page fragment > ---------------------------------------------- > > Key: RF-13377 > URL: https://issues.jboss.org/browse/RF-13377 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Juraj H=C3=BAska > > # run a Metamer test for r:calendar using page fragments, e.g. > {code} > mvn clean verify -P jbossas-managed-7-1 -Dtest=3DTestCalendarAttributes > {code} > result: > * all tests are skipped because a NPE in calendar page fragment > {quote} > *org.jboss.arquillian.graphene.enricher.exception.PageFragmentInitializat= ionException: java.lang.reflect.InvocationTargetException* > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:171) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.setupPage= Fragment(PageFragmentEnricher.java:208) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.enrich(Pa= geFragmentEnricher.java:85) > at org.jboss.arquillian.graphene.enricher.GrapheneEnricher.enrich(Graphe= neEnricher.java:51) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstan= ceEnricher.java:52) > at org.jboss.arquillian.container.test.impl.ClientTestInstanceEnricher.e= nrich(ClientTestInstanceEnricher.java:51) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(Event= ContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:81) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventControl= ler.createBeforeContext(ContainerEventController.java:124) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(T= estContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(= TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(= TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:= 94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextI= mpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.before(EventTes= tRunnerAdaptor.java:95) > at org.jboss.arquillian.testng.Arquillian.arquillianBeforeTest(Arquillia= n.java:130) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.= java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocat= ionHelper.java:80) > at org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:52= 5) > at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202) > at org.testng.internal.Invoker.invokeMethod(Invoker.java:613) > at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:842) > at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:1166) > at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWork= er.java:125) > at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109) > at org.testng.TestRunner.runWorkers(TestRunner.java:1178) > at org.testng.TestRunner.privateRun(TestRunner.java:757) > at org.testng.TestRunner.run(TestRunner.java:608) > at org.testng.SuiteRunner.runTest(SuiteRunner.java:334) > at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329) > at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291) > at org.testng.SuiteRunner.run(SuiteRunner.java:240) > at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52) > at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86) > at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158) > at org.testng.TestNG.runSuitesLocally(TestNG.java:1083) > at org.testng.TestNG.run(TestNG.java:999) > at org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.ja= va:91) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.executeSing= leClass(TestNGDirectoryTestSuite.java:128) > at org.apache.maven.surefire.testng.TestNGDirectoryTestSuite.execute(Tes= tNGDirectoryTestSuite.java:112) > at org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider= .java:113) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameCla= ssLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(Fork= edBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:= 103) > *Caused by: java.lang.reflect.InvocationTargetException* > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) > at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct= orAccessorImpl.java:57) > at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC= onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:526) > at org.jboss.arquillian.graphene.enricher.AbstractSearchContextEnricher.= instantiate(AbstractSearchContextEnricher.java:174) > at org.jboss.arquillian.graphene.enricher.PageFragmentEnricher.createPag= eFragment(PageFragmentEnricher.java:144) > ... 76 more > *Caused by: java.lang.NullPointerException: configuration is null - it ne= eds to be setup before starting to use it* > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext.get(RichFacesPageFragmentsConfigurationContext.java:43) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$2.getTarget(RichFacesPageFragmentsConfigurationContext.java:97) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ionContext$1.invoke(RichFacesPageFragmentsConfigurationContext.java:57) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.intercept(Gr= apheneProxyHandler.java:92) > at org.richfaces.fragment.configuration.RichFacesPageFragmentsConfigurat= ion$$EnhancerByGraphene$$e41cfe31.isUseJSInteractionStrategy() > at org.richfaces.fragment.calendar.RichFacesCalendar.(RichFacesCal= endar.java:52) > ... 82 more > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7279274656359026500==-- From jira-events at lists.jboss.org Mon Nov 25 04:57:06 2013 Content-Type: multipart/mixed; boundary="===============1877140330522366135==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 04:57:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============1877140330522366135== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926432#com= ment-12926432 ] = Juraj H=C3=BAska commented on RF-13343: ---------------------------------- [~lfryc], [~bleathem], [~ppitonak] Do you think guys that those page fragments methods which depend on JSON pa= rsing - aka various {{setupFromWidget}} should throw {{UnsupportedOperation= Exception}} till this issue is resolved ? IMHO not, as we can quite quickly implement this, right ? = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1877140330522366135==-- From jira-events at lists.jboss.org Mon Nov 25 05:03:06 2013 Content-Type: multipart/mixed; boundary="===============1628071047459272631==" MIME-Version: 1.0 From: David Rawlings (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Mon, 25 Nov 2013 05:03:05 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============1628071047459272631== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926435#com= ment-12926435 ] = David Rawlings commented on RF-12533: ------------------------------------- Created SWF-1612 webflow JIRA... https://jira.springsource.org/browse/SWF-1612 = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1628071047459272631==-- From jira-events at lists.jboss.org Mon Nov 25 05:07:06 2013 Content-Type: multipart/mixed; boundary="===============7109330327909649677==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13252) a4j:ajax includes jsf.js script twice Date: Mon, 25 Nov 2013 05:07:06 -0500 Message-ID: In-Reply-To: JIRA.12502662.1381395391000@jira02.app.mwc.hst.phx2.redhat.com --===============7109330327909649677== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13252?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926437#com= ment-12926437 ] = Pavol Pitonak commented on RF-13252: ------------------------------------ The workaround seems to work. = > a4j:ajax includes jsf.js script twice > ------------------------------------- > > Key: RF-13252 > URL: https://issues.jboss.org/browse/RF-13252 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.3.4 > Reporter: Jon=C3=A1=C5=A1 Trantina > Fix For: 4.3.5 > > Attachments: reproducer.zip > > > When a4j:script is used in the page like so: > {noformat} > > > > {noformat} > Then two script tags pointing to jsf.js are added to the page, once in th= e head by the inclusion of @ResourceDependency [1], and once again by Overr= iding the ClientBehaviorRenderer#getScript method [2,3]. > Note, that according to Brian, resolving this without introducing any fun= ctional regressions may require the resolution of RF-12270 [4]. > [1] https://github.com/richfaces/richfaces/blob/master/framework/src/main= /java/org/richfaces/ui/ajax/ajax/AjaxBehaviorRenderer.java#L53 > [2] https://github.com/richfaces/richfaces/blob/master/framework/src/main= /java/org/richfaces/ui/ajax/ajax/AjaxBehaviorRenderer.java#L123 > [3] https://github.com/jboss/mojarra/blob/2.1.21-jbossorg-1/jsf-api/src/m= ain/java/javax/faces/render/ClientBehaviorRenderer.java#L95 > [4] https://issues.jboss.org/browse/RF-12270 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7109330327909649677==-- From jira-events at lists.jboss.org Mon Nov 25 05:33:06 2013 Content-Type: multipart/mixed; boundary="===============1793609920205117795==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 05:33:05 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============1793609920205117795== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926445#com= ment-12926445 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- [~jhuska], let's go ahead and implement it. As I understand it, It's nothing we rely on, particularly in Alpha2 release. = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1793609920205117795==-- From jira-events at lists.jboss.org Mon Nov 25 06:11:06 2013 Content-Type: multipart/mixed; boundary="===============6811062053549497158==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 06:11:06 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814116@jira02.app.mwc.hst.phx2.redhat.com --===============6811062053549497158== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13380: ---------------------------------- Summary: Error 404 not found for fonts Key: RF-13380 URL: https://issues.jboss.org/browse/RF-13380 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: base functionality Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT Reporter: Pavol Pitonak Priority: Critical # deploy Metamer and open http://localhost:8080/metamer/faces/components/a4= jAjax/hCommandButton.xhtml # see browser console result: * several resources are missing * Chrome console contains these errors: {quote} GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND 40= 4 (Not Found) hCommandButton.xhtml:27 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xhtm= l:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.xht= ml:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.ttf= :1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg#O= penSansRegular:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.svg= #OpenSansSemibold:1 {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6811062053549497158==-- From jira-events at lists.jboss.org Mon Nov 25 06:15:07 2013 Content-Type: multipart/mixed; boundary="===============7348315796357896232==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 06:15:06 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============7348315796357896232== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13380: ------------------------------- Description: = # deploy Metamer and open http://localhost:8080/metamer/faces/components/a4= jAjax/hCommandButton.xhtml # see browser console result: * several resources are missing * Chrome console contains these errors: {quote} GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND 40= 4 (Not Found) hCommandButton.xhtml:27 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xhtm= l:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.xht= ml:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.ttf= :1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg#O= penSansRegular:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.svg= #OpenSansSemibold:1 {quote} * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in serv= er log {quote} 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context] (= http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fonts= /OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mapping = to the applications web.xml. 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context] (= http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fonts= /OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping t= o the applications web.xml. 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context] (= http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fonts= /OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping to= the applications web.xml. 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context] (= http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fonts= /OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping t= o the applications web.xml. {quote} was: # deploy Metamer and open http://localhost:8080/metamer/faces/components/a4= jAjax/hCommandButton.xhtml # see browser console result: * several resources are missing * Chrome console contains these errors: {quote} GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND 40= 4 (Not Found) hCommandButton.xhtml:27 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xhtm= l:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.xht= ml:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.ttf= :1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.ri= chfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg#O= penSansRegular:1 GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.resou= rce/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org.r= ichfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.svg= #OpenSansSemibold:1 {quote} = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Critical > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7348315796357896232==-- From jira-events at lists.jboss.org Mon Nov 25 06:17:06 2013 Content-Type: multipart/mixed; boundary="===============0930603155034267723==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 06:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============0930603155034267723== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926458#com= ment-12926458 ] = Juraj H=C3=BAska commented on RF-13343: ---------------------------------- Sorry I was not clear enough. I think that we do not have to throw {{UnsuportedOperationException}}, beca= use it would be not worth work for Alpha2, as we can easily implement this = issue (and then again remove those throws). Do you agree ? = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0930603155034267723==-- From jira-events at lists.jboss.org Mon Nov 25 07:17:06 2013 Content-Type: multipart/mixed; boundary="===============6016445206606634639==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 07:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============6016445206606634639== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926471#com= ment-12926471 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13343: --------------------------------- Hey Juraj, you was pretty clear and my answer is: agree, let's try to fit t= his to Alpha2 release. = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6016445206606634639==-- From jira-events at lists.jboss.org Mon Nov 25 07:19:06 2013 Content-Type: multipart/mixed; boundary="===============6726346485845852407==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13372) togglePanel does not work with toggleControl Date: Mon, 25 Nov 2013 07:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525839.1385047782000@jira02.app.mwc.hst.phx2.redhat.com --===============6726346485845852407== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13372?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13372. ------------------------------ Verified = > togglePanel does not work with toggleControl > -------------------------------------------- > > Key: RF-13372 > URL: https://issues.jboss.org/browse/RF-13372 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: GlassFish 3.1.2.2, AS 7.1.1 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Blocker > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6726346485845852407==-- From jira-events at lists.jboss.org Mon Nov 25 07:19:06 2013 Content-Type: multipart/mixed; boundary="===============4878318746482609363==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13373) The toggle control renderer is not invoked Date: Mon, 25 Nov 2013 07:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525880.1385067960000@jira02.app.mwc.hst.phx2.redhat.com --===============4878318746482609363== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13373?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13373. ------------------------------ Verified = > The toggle control renderer is not invoked > ------------------------------------------ > > Key: RF-13373 > URL: https://issues.jboss.org/browse/RF-13373 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > The toggle control broke because the value returned by the [ToggleControl= #getRendererType|https://github.com/richfaces/richfaces/blob/master/framewo= rk/src/main/java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L= 145] method does not match the renderer defined in the [@JsfBehavior annota= tion|https://github.com/richfaces/richfaces/blob/master/framework/src/main/= java/org/richfaces/ui/toggle/toggleControl/ToggleControl.java#L48]. > This descrepency was introduced with this commit: [42fc56|https://github.= com/richfaces/richfaces/commit/42fc5626a02a1826e29ce8980aba18152a2bca19] -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4878318746482609363==-- From jira-events at lists.jboss.org Mon Nov 25 07:25:06 2013 Content-Type: multipart/mixed; boundary="===============3692724161829901319==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 07:25:06 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============3692724161829901319== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13380: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3692724161829901319==-- From jira-events at lists.jboss.org Mon Nov 25 07:25:06 2013 Content-Type: multipart/mixed; boundary="===============0143711066910528807==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 07:25:05 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============0143711066910528807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13380: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0143711066910528807==-- From jira-events at lists.jboss.org Mon Nov 25 07:39:06 2013 Content-Type: multipart/mixed; boundary="===============3754583246823583890==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) Hotkey doesn't work with picklist Date: Mon, 25 Nov 2013 07:39:05 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078284@jira02.app.mwc.hst.phx2.redhat.com --===============3754583246823583890== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13381: ---------------------------------- Summary: Hotkey doesn't work with picklist Key: RF-13381 URL: https://issues.jboss.org/browse/RF-13381 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc, component-selects, regression Affects Versions: 5.0.0.Alpha2 Environment: Showcase 5.0.0-SNAPSHOT Reporter: Pavol Pitonak # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-samp= le.jsf?demo=3DhotKey&skin=3DblueSky # click on first item in "Available cities" list # press right arrow key on keyboard # press End button on keyboard result: * nothing happens expected: * selected item moves to to righ list after pressing right arrow * all items from left list should move to the right after pressing End butt= on -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3754583246823583890==-- From jira-events at lists.jboss.org Mon Nov 25 07:53:06 2013 Content-Type: multipart/mixed; boundary="===============0469328629535087575==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13359) Showcase: several components don't work Date: Mon, 25 Nov 2013 07:53:06 -0500 Message-ID: In-Reply-To: JIRA.12525552.1384864466000@jira02.app.mwc.hst.phx2.redhat.com --===============0469328629535087575== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13359?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13359. ------------------------------ Verified. All components but hotkey work fine, I created a new issue for ho= tkey RF-13381 = > Showcase: several components don't work > --------------------------------------- > > Key: RF-13359 > URL: https://issues.jboss.org/browse/RF-13359 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > # deploy Showcase and open http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DprogressBar&skin=3DblueSky > # open browser console > # click on "Start Process" button > result: > * this message appears in browser console = > {quote} > event.returnValue is deprecated. Please use the standard event.preventDef= ault() instead. = > {quote} > * progress bar is rendered wrongly > * the same message is displayed on these pages (and these components are = broken too) > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= ogglePanel&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dt= abPanel&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Da= ccordion&sample=3Ddynamic&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dp= anelMenu&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dd= ragDrop&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Dh= otKey&skin=3DblueSky > ** http://localhost:8080/showcase/richfaces/component-sample.jsf?demo=3Df= ocus&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0469328629535087575==-- From jira-events at lists.jboss.org Mon Nov 25 08:15:07 2013 Content-Type: multipart/mixed; boundary="===============2584377324227812439==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 08:15:07 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============2584377324227812439== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926487#com= ment-12926487 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13380: --------------------------------- Upstream issue: https://github.com/richwidgets/richwidgets/issues/143 = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2584377324227812439==-- From jira-events at lists.jboss.org Mon Nov 25 08:50:06 2013 Content-Type: multipart/mixed; boundary="===============4678342158756513424==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 08:50:06 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============4678342158756513424== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13380. ----------------------------- Resolution: Done = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4678342158756513424==-- From jira-events at lists.jboss.org Mon Nov 25 08:54:07 2013 Content-Type: multipart/mixed; boundary="===============0911800921153266925==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Mon, 25 Nov 2013 08:54:07 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============0911800921153266925== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska reopened RF-13348: ------------------------------ I am reopening the issue, because it is not behaving as the doc describes. IMHO it is a bug and that the doc is correct. It is behaving like this: * *comma separated classes* --> ** _expected:_ provided classes applied to each column ** _actual:_ provided classes applied to individual columns * *space separated classes* --> ** _expected:_ classes for individual columns ** _actual:_ all provided classes applied only for first column Steps to reproduce: # load Metamer at: http://localhost:8080/metamer/faces/components/richPickList/columnLayout.xh= tml # set {{columnClasses}} to: _foo,bar,blah_ # inspect the first item, see that the first column has class _blah_, secon= d the _bar_ and the third one class _blah_. My another concern is abut this part: bq. If the number of classes in this list is less than the number of column= children, then no class will be applied to the columns greater than the number of classes. If however the f= inal class in the list is the `*` character, the classes will instead be applied in a repeating manner every = n-fold column, where n is the order the class in this list. It works only with classes comma separated, so if that is correct the doc s= hould state it. I can create a doc issue if you can confirm my objections ? = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0911800921153266925==-- From jira-events at lists.jboss.org Mon Nov 25 08:54:07 2013 Content-Type: multipart/mixed; boundary="===============0441182994201680464==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Mon, 25 Nov 2013 08:54:07 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============0441182994201680464== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926508#com= ment-12926508 ] = Juraj H=C3=BAska edited comment on RF-13348 at 11/25/13 8:53 AM: ------------------------------------------------------------ I am reopening the issue, because it is not behaving as the doc describes. IMHO it is a bug and that the doc is correct. It is behaving like this: * *comma separated classes* --> ** _expected:_ provided classes applied to each column ** _actual:_ provided classes applied to individual columns * *space separated classes* --> ** _expected:_ classes for individual columns ** _actual:_ all provided classes applied only for first column Steps to reproduce: # load Metamer at: http://localhost:8080/metamer/faces/components/richPickList/columnLayout.xh= tml # set {{columnClasses}} to: _foo,bar,blah_ # inspect the first item, see that the first column has class _blah_, secon= d the _bar_ and the third one class _blah_. My another concern is abut this part: bq. If the number of classes in this list is less than the number of column= children, then no class will be applied to the columns greater than the nu= mber of classes. If however the final class in the list is the `*` characte= r, the classes will instead be applied in a repeating manner every n-fold c= olumn, where n is the order the class in this list. It works only with classes comma separated, so if that is correct the doc s= hould state it. I can create a doc issue if you can confirm my objections ? = was (Author: jhuska): I am reopening the issue, because it is not behaving as the doc describ= es. IMHO it is a bug and that the doc is correct. It is behaving like this: * *comma separated classes* --> ** _expected:_ provided classes applied to each column ** _actual:_ provided classes applied to individual columns * *space separated classes* --> ** _expected:_ classes for individual columns ** _actual:_ all provided classes applied only for first column Steps to reproduce: # load Metamer at: http://localhost:8080/metamer/faces/components/richPickList/columnLayout.xh= tml # set {{columnClasses}} to: _foo,bar,blah_ # inspect the first item, see that the first column has class _blah_, secon= d the _bar_ and the third one class _blah_. My another concern is abut this part: bq. If the number of classes in this list is less than the number of column= children, then no class will be applied to the columns greater than the number of classes. If however the f= inal class in the list is the `*` character, the classes will instead be applied in a repeating manner every = n-fold column, where n is the order the class in this list. It works only with classes comma separated, so if that is correct the doc s= hould state it. I can create a doc issue if you can confirm my objections ? = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0441182994201680464==-- From jira-events at lists.jboss.org Mon Nov 25 08:58:05 2013 Content-Type: multipart/mixed; boundary="===============6004298391449850065==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Mon, 25 Nov 2013 08:58:05 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============6004298391449850065== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926508#com= ment-12926508 ] = Juraj H=C3=BAska edited comment on RF-13348 at 11/25/13 8:56 AM: ------------------------------------------------------------ I am reopening the issue, because it is not behaving as the doc describes. IMHO it is a bug and that the doc is correct. It is behaving like this: * *comma separated classes* --> ** _expected:_ provided classes applied to each column ** _actual:_ provided classes applied to individual columns * *space separated classes* --> ** _expected:_ classes for individual columns ** _actual:_ all provided classes applied only for first column Steps to reproduce: # load Metamer at: http://localhost:8080/metamer/faces/components/richPickList/columnLayout.xh= tml # set {{columnClasses}} to: _foo,bar,blah_ # inspect the first item, see that the first column has class _blah_, secon= d the _bar_ and the third one class _blah_. My another concern is abut this part: bq. If the number of classes in this list is less than the number of column= children, then no class will be applied to the columns greater than the nu= mber of classes. If however the final class in the list is the `*` characte= r, the classes will instead be applied in a repeating manner every n-fold c= olumn, where n is the order the class in this list. It works only with classes comma separated, so if that is correct the doc s= hould state it. I can create a doc issue if you can confirm my objections ? Also if you can confirm it I can reopen [the upstream change|https://github= .com/richwidgets/richwidgets/commit/1fc6d73b1a78669dce4b354ca02afd234d12ee9= e] which is behind it. = was (Author: jhuska): I am reopening the issue, because it is not behaving as the doc describ= es. IMHO it is a bug and that the doc is correct. It is behaving like this: * *comma separated classes* --> ** _expected:_ provided classes applied to each column ** _actual:_ provided classes applied to individual columns * *space separated classes* --> ** _expected:_ classes for individual columns ** _actual:_ all provided classes applied only for first column Steps to reproduce: # load Metamer at: http://localhost:8080/metamer/faces/components/richPickList/columnLayout.xh= tml # set {{columnClasses}} to: _foo,bar,blah_ # inspect the first item, see that the first column has class _blah_, secon= d the _bar_ and the third one class _blah_. My another concern is abut this part: bq. If the number of classes in this list is less than the number of column= children, then no class will be applied to the columns greater than the nu= mber of classes. If however the final class in the list is the `*` characte= r, the classes will instead be applied in a repeating manner every n-fold c= olumn, where n is the order the class in this list. It works only with classes comma separated, so if that is correct the doc s= hould state it. I can create a doc issue if you can confirm my objections ? = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6004298391449850065==-- From jira-events at lists.jboss.org Mon Nov 25 09:06:06 2013 Content-Type: multipart/mixed; boundary="===============5283277942836224536==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element Date: Mon, 25 Nov 2013 09:06:06 -0500 Message-ID: In-Reply-To: JIRA.12524571.1383904100000@jira02.app.mwc.hst.phx2.redhat.com --===============5283277942836224536== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13325?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13325. ---------------------------- = > pickList: onmouseout/onmouseover is triggered even when pointer button is= not moved out/over element > -------------------------------------------------------------------------= --------------------------- > > Key: RF-13325 > URL: https://issues.jboss.org/browse/RF-13325 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{r:pickList}} event callback for *onmouseout* and *onmouseover* is calle= d even when the mouse pointer does not leave the {{r:pickList}} element its= elf. > I believe issue for both event handlers is the same, as both occurs when = moving the mouse pointer in one of the lists (source list or target list). = They should not. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5283277942836224536==-- From jira-events at lists.jboss.org Mon Nov 25 09:08:06 2013 Content-Type: multipart/mixed; boundary="===============4694038071914151086==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13326) pickList - caption attribute is not rendered in to its faces-config Date: Mon, 25 Nov 2013 09:08:06 -0500 Message-ID: In-Reply-To: JIRA.12524612.1383916208000@jira02.app.mwc.hst.phx2.redhat.com --===============4694038071914151086== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13326?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13326. ---------------------------- Verified. Closing = > pickList - caption attribute is not rendered in to its faces-config > ------------------------------------------------------------------- > > Key: RF-13326 > URL: https://issues.jboss.org/browse/RF-13326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > There should be attribute {{caption}} in the {{pickList}} faces-config. I= t is not. > The attribute is defined in [AbstractOrderingList|https://github.com/rich= faces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/select= /orderingList/AbstractOrderingList.java], which is the ancestor of {{Abstra= ctPickList}}. > Is it caused because {{orderingList}} has also that attribute and it is s= omehow overriden as {{pickList}} consists from {{orderingLists}} ? - bit we= ird > Note that {{orderingList}} has generated {{caption}} attribute. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4694038071914151086==-- From jira-events at lists.jboss.org Mon Nov 25 09:08:06 2013 Content-Type: multipart/mixed; boundary="===============8348535973078512041==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component Date: Mon, 25 Nov 2013 09:08:06 -0500 Message-ID: In-Reply-To: JIRA.12524615.1383916680000@jira02.app.mwc.hst.phx2.redhat.com --===============8348535973078512041== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13327?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13327. ---------------------------- Verified. Closing. = > pickList - setting of multiple attributes does not have any effect on the= component > -------------------------------------------------------------------------= ---------- > > Key: RF-13327 > URL: https://issues.jboss.org/browse/RF-13327 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Setting of these attributes on a {{pickList}} has no effect on the render= ed component (I am trying to group them somehow). > *Buttons text* > * addAllText > * addText > * removeAllText > * removeText > * downBottomText > * downText > * upText > * upTopText > *List style* > * maxListHeight > * minListHeight > * style > * columnClasses > *Other RW options* > * switchByClick > * switchByDblClick > *Callbacks* > * onremoveitems > * onadditems > * value > * valueChangeListener > I guess that it is because they are not passed in the [renderer template|= https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/= org/richfaces/ui/select/pickList/pickList.template.xml] ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8348535973078512041==-- From jira-events at lists.jboss.org Mon Nov 25 09:10:06 2013 Content-Type: multipart/mixed; boundary="===============5878714477231557620==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13347) pickList: switchByDblClick does not work Date: Mon, 25 Nov 2013 09:10:06 -0500 Message-ID: In-Reply-To: JIRA.12525090.1384426336000@jira02.app.mwc.hst.phx2.redhat.com --===============5878714477231557620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13347?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13347. ---------------------------- Verified. Closing. = > pickList: switchByDblClick does not work > ---------------------------------------- > > Key: RF-13347 > URL: https://issues.jboss.org/browse/RF-13347 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > Setting of {{pickList}} attribute {{switchByDblClick}} to {{true}} does n= ot work. > Note that {{switchByClick}} works as expected. > It seems that attribute is set in render template. I can not found any me= ntion in pick list bridge if that can be the case ? (there is no mention of= {{switchByClick}} neither and it works). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5878714477231557620==-- From jira-events at lists.jboss.org Mon Nov 25 09:10:06 2013 Content-Type: multipart/mixed; boundary="===============1413741248455419994==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13344) pickList - maxListHeight & minListHeight need to have set units along with number to work Date: Mon, 25 Nov 2013 09:10:06 -0500 Message-ID: In-Reply-To: JIRA.12525076.1384420028000@jira02.app.mwc.hst.phx2.redhat.com --===============1413741248455419994== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13344?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13344. ---------------------------- Verified. Closing. = > pickList - maxListHeight & minListHeight need to have set units along wit= h number to work > -------------------------------------------------------------------------= ---------------- > > Key: RF-13344 > URL: https://issues.jboss.org/browse/RF-13344 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > {{pickList}} attributes: > * {{minListHeight}} and {{maxListHeight}} > need to have set units along with the number value (e.g. 200px) in order = to work correctly. > In RF4 and in RichWidgets, these attributes can be left without units. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1413741248455419994==-- From jira-events at lists.jboss.org Mon Nov 25 09:12:05 2013 Content-Type: multipart/mixed; boundary="===============0626738712634368298==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13350) pickList: styleClass attribute is rendered wrongly as styleclass instead of class attribute Date: Mon, 25 Nov 2013 09:12:05 -0500 Message-ID: In-Reply-To: JIRA.12525335.1384534676000@jira02.app.mwc.hst.phx2.redhat.com --===============0626738712634368298== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13350?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13350. ---------------------------- Verified. Closing. = > pickList: styleClass attribute is rendered wrongly as styleclass instead = of class attribute > -------------------------------------------------------------------------= ------------------ > > Key: RF-13350 > URL: https://issues.jboss.org/browse/RF-13350 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Setting of {{styleClass}} attribute to the {{pickList}} component makes g= enerated markup to contain {{styleclass}} attribute - instead of just adjus= ted {{class}} attribute. > The {{styleClass}} is included just in {{passThrough}} attributes - [her= e|https://github.com/richfaces/richfaces/blob/master/framework/src/main/jav= a/org/richfaces/ui/select/pickList/pick-list.template.xml#L65]. > Should not be it done as it is for example [here|https://github.com/richf= aces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/input/a= utocomplete/autocomplete.template.xml#L33-34] in autocomplate render base ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0626738712634368298==-- From jira-events at lists.jboss.org Mon Nov 25 09:14:06 2013 Content-Type: multipart/mixed; boundary="===============3502421489141388058==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13329) Delete old 4.x and below pickList and orderingList resources from RF5 Date: Mon, 25 Nov 2013 09:14:05 -0500 Message-ID: In-Reply-To: JIRA.12524633.1383925284000@jira02.app.mwc.hst.phx2.redhat.com --===============3502421489141388058== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13329?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13329. ---------------------------- Verified. Closing. = > Delete old 4.x and below pickList and orderingList resources from RF5 > --------------------------------------------------------------------- > > Key: RF-13329 > URL: https://issues.jboss.org/browse/RF-13329 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Now it should be safe to delete the old resources for {{pickList}} and {{= orderingList}}. > I mean {{.js}} and {{.ecss}} files from this folder: > https://github.com/richfaces/richfaces/tree/master/framework/src/main/res= ources/META-INF/resources/org.richfaces/select -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3502421489141388058==-- From jira-events at lists.jboss.org Mon Nov 25 09:33:06 2013 Content-Type: multipart/mixed; boundary="===============3780875121994050969==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13380) Error 404 not found for fonts Date: Mon, 25 Nov 2013 09:33:06 -0500 Message-ID: In-Reply-To: JIRA.12526026.1385377814000@jira02.app.mwc.hst.phx2.redhat.com --===============3780875121994050969== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13380?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13380. ------------------------------ Verified = > Error 404 not found for fonts > ----------------------------- > > Key: RF-13380 > URL: https://issues.jboss.org/browse/RF-13380 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= a4jAjax/hCommandButton.xhtml > # see browser console > result: > * several resources are missing > * Chrome console contains these errors: > {quote} > GET http://localhost:8080/metamer/faces/components/a4jAjax/RES_NOT_FOUND = 404 (Not Found) hCommandButton.xhtml:27 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.woff 404 (Not Found) hCommandButton.xh= tml:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.woff 404 (Not Found) hCommandButton.x= html:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.ttf 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.t= tf:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.ttf 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.ttf= :1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Regular-webfont.svg 404 (Not Found) :8080/metamer/org.= richfaces.resources/javax.faces.resource/fonts/OpenSans-Regular-webfont.svg= #OpenSansRegular:1 > GET http://localhost:8080/metamer/org.richfaces.resources/javax.faces.res= ource/fonts/OpenSans-Semibold-webfont.svg 404 (Not Found) :8080/metamer/org= .richfaces.resources/javax.faces.resource/fonts/OpenSans-Semibold-webfont.s= vg#OpenSansSemibold:1 > {quote} > * when deployed to JBoss AS 7.1.1.Final, you can see these warnings in se= rver log > {quote} > 12:12:53,342 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.woff. To resolve this, add a mime-type mappin= g to the applications web.xml. > 12:12:53,341 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.woff. To resolve this, add a mime-type mapping= to the applications web.xml. > 12:12:53,392 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-6) JSF1091: No mime type could be found for file fon= ts/OpenSans-Regular-webfont.ttf. To resolve this, add a mime-type mapping = to the applications web.xml. > 12:12:53,393 WARNING [javax.enterprise.resource.webcontainer.jsf.context]= (http--127.0.0.1-8080-3) JSF1091: No mime type could be found for file fon= ts/OpenSans-Semibold-webfont.ttf. To resolve this, add a mime-type mapping= to the applications web.xml. > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3780875121994050969==-- From jira-events at lists.jboss.org Mon Nov 25 13:33:06 2013 Content-Type: multipart/mixed; boundary="===============2626783633848470988==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Mon, 25 Nov 2013 13:33:05 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============2626783633848470988== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12533: ------------------------------- Labels: partial_state_saving spring upstream (was: partial_state_savin= g spring) = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring, upstream > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2626783633848470988==-- From jira-events at lists.jboss.org Mon Nov 25 13:35:06 2013 Content-Type: multipart/mixed; boundary="===============3443269384639718227==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Mon, 25 Nov 2013 13:35:06 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============3443269384639718227== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926596#com= ment-12926596 ] = Brian Leathem commented on RF-12533: ------------------------------------ Thanks [~rawlingsd] = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables, third-party > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring, upstream > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3443269384639718227==-- From jira-events at lists.jboss.org Mon Nov 25 13:35:06 2013 Content-Type: multipart/mixed; boundary="===============4357654927876082006==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12533) UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) Date: Mon, 25 Nov 2013 13:35:06 -0500 Message-ID: In-Reply-To: JIRA.12476684.1349966061000@jira02.app.mwc.hst.phx2.redhat.com --===============4357654927876082006== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12533?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12533: ------------------------------- Component/s: third-party = > UIDataAdaptor throws NPE with disabled PSS (webflow 2.3) > -------------------------------------------------------- > > Key: RF-12533 > URL: https://issues.jboss.org/browse/RF-12533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables, third-party > Affects Versions: 4.2.2.Final, 4.2.3.CR1, 4.3.0.M1 > Environment: spring webflow 2.3.1, myfaces-impl 2.1.8 > Reporter: Anton Zukovskij > Priority: Critical > Labels: partial_state_saving, spring, upstream > Fix For: 5-Tracking > > Attachments: log-2.txt, log.txt, swf-rf4.zip, TreeStructureManage= r.java > > > When partial state saving is disabled(javax.faces.PARTIAL_STATE_SAVING=3D= false), nullpointer exception is thrown during restore state phase of webfl= ow rendered view that contains UIDataAdaptor component. In other words NPE = exception is thrown on every page submit of webflow rendered views that con= tain components that exted UIDataAdaptor. Please see log attached and sampl= e application. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4357654927876082006==-- From jira-events at lists.jboss.org Mon Nov 25 13:47:06 2013 Content-Type: multipart/mixed; boundary="===============6501474092443301623==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 13:47:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============6501474092443301623== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13343: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6501474092443301623==-- From jira-events at lists.jboss.org Mon Nov 25 13:47:06 2013 Content-Type: multipart/mixed; boundary="===============3502829473936303772==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Mon, 25 Nov 2013 13:47:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============3502829473936303772== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926601#com= ment-12926601 ] = Brian Leathem commented on RF-13343: ------------------------------------ +1 Let's include this in 5.0.0.Alpha2, time permitting. = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments, qe > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3502829473936303772==-- From jira-events at lists.jboss.org Mon Nov 25 13:59:06 2013 Content-Type: multipart/mixed; boundary="===============0794774365860181431==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Mon, 25 Nov 2013 13:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============0794774365860181431== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13348. -------------------------------- Resolution: Done = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0794774365860181431==-- From jira-events at lists.jboss.org Mon Nov 25 13:59:06 2013 Content-Type: multipart/mixed; boundary="===============2877042947015856208==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Mon, 25 Nov 2013 13:59:06 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============2877042947015856208== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926605#com= ment-12926605 ] = Brian Leathem commented on RF-13348: ------------------------------------ [~jhuska] I think you are not interpreting the docs as intended: {quote} When table layout is used, _columnClasses_ specifies a comma-delimited list= of CSS style classes to apply to each column. A space separated list of cl= asses may be specified for an individual column. {quote} What is meant by this is that the comma character is the column delimeter, = and the space character spearates multiple classes to be applied to a singl= e column in the iteration over the columns. Let me demonstrate with an example: {code} columnClasses =3D class1, class2a class2b, class3, * {code} Then I expect a table with 5 columns to have the following classes: || column || CSS class || | column 1 | class1 | | column 2 | class2a class2b | | column 3 | class3 | | column 4 | class1 | | column 5 | class2a class2b | This behavior is confirmed with the richwidget tests: https://github.com/richwidgets/richwidgets/blob/master/test/widgets/select/= ordering-list/ordering-list-options.js#L445 https://github.com/richwidgets/richwidgets/blob/master/test/widgets/select/= ordering-list/ordering-list-options.js#L500 If you feel the docs are still unclear, please open a new issue addressing = the documentation of the _columnClasses_ attribute. = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2877042947015856208==-- From jira-events at lists.jboss.org Mon Nov 25 14:23:06 2013 Content-Type: multipart/mixed; boundary="===============2934486525578957783==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) Hotkey doesn't work with picklist Date: Mon, 25 Nov 2013 14:23:06 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078000@jira02.app.mwc.hst.phx2.redhat.com --===============2934486525578957783== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13381?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926608#com= ment-12926608 ] = Brian Leathem commented on RF-13381: ------------------------------------ This is rather an issue that _r:componentControl_ doesn't work with pickLis= t. = > Hotkey doesn't work with picklist > --------------------------------- > > Key: RF-13381 > URL: https://issues.jboss.org/browse/RF-13381 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects, regression > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DhotKey&skin=3DblueSky > # click on first item in "Available cities" list > # press right arrow key on keyboard > # press End button on keyboard > result: > * nothing happens > expected: > * selected item moves to to righ list after pressing right arrow > * all items from left list should move to the right after pressing End bu= tton -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2934486525578957783==-- From jira-events at lists.jboss.org Mon Nov 25 15:35:06 2013 Content-Type: multipart/mixed; boundary="===============6776439081483488070==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (during framework resource optimization) Date: Mon, 25 Nov 2013 15:35:06 -0500 Message-ID: In-Reply-To: JIRA.12525985.1385281263000@jira02.app.mwc.hst.phx2.redhat.com --===============6776439081483488070== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13379?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13379: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (d= uring framework resource optimization) > -------------------------------------------------------------------------= -------------------------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] = > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further= details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerato= r execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: = javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGe= nerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateR= esourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java= :57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces= sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14= 2) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(Resourc= eFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFac= toryImpl.java:343) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6776439081483488070==-- From jira-events at lists.jboss.org Tue Nov 26 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============4535004443101517602==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) ComponentControl doesn't work with picklist Date: Tue, 26 Nov 2013 02:19:05 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078000@jira02.app.mwc.hst.phx2.redhat.com --===============4535004443101517602== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13381?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13381. -------------------------------- Assignee: Brian Leathem Fix Version/s: 5.0.0.Alpha2 Resolution: Done = > ComponentControl doesn't work with picklist > ------------------------------------------- > > Key: RF-13381 > URL: https://issues.jboss.org/browse/RF-13381 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects, regression > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DhotKey&skin=3DblueSky > # click on first item in "Available cities" list > # press right arrow key on keyboard > # press End button on keyboard > result: > * nothing happens > expected: > * selected item moves to to righ list after pressing right arrow > * all items from left list should move to the right after pressing End bu= tton -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4535004443101517602==-- From jira-events at lists.jboss.org Tue Nov 26 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============6236840426611057551==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) ComponentControl doesn't work with picklist Date: Tue, 26 Nov 2013 02:19:05 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078000@jira02.app.mwc.hst.phx2.redhat.com --===============6236840426611057551== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13381?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13381: ------------------------------- Summary: ComponentControl doesn't work with picklist (was: Hotkey does= n't work with picklist) = > ComponentControl doesn't work with picklist > ------------------------------------------- > > Key: RF-13381 > URL: https://issues.jboss.org/browse/RF-13381 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects, regression > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DhotKey&skin=3DblueSky > # click on first item in "Available cities" list > # press right arrow key on keyboard > # press End button on keyboard > result: > * nothing happens > expected: > * selected item moves to to righ list after pressing right arrow > * all items from left list should move to the right after pressing End bu= tton -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6236840426611057551==-- From jira-events at lists.jboss.org Tue Nov 26 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============2395371739882852702==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) ComponentControl doesn't work with picklist Date: Tue, 26 Nov 2013 02:19:06 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078000@jira02.app.mwc.hst.phx2.redhat.com --===============2395371739882852702== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13381?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13381: ------------------------------- Labels: needs-qe (was: ) = > ComponentControl doesn't work with picklist > ------------------------------------------- > > Key: RF-13381 > URL: https://issues.jboss.org/browse/RF-13381 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects, regression > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Labels: needs-qe > Fix For: 5.0.0.Alpha2 > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DhotKey&skin=3DblueSky > # click on first item in "Available cities" list > # press right arrow key on keyboard > # press End button on keyboard > result: > * nothing happens > expected: > * selected item moves to to righ list after pressing right arrow > * all items from left list should move to the right after pressing End bu= tton -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2395371739882852702==-- From jira-events at lists.jboss.org Tue Nov 26 03:51:07 2013 Content-Type: multipart/mixed; boundary="===============8008454696822551855==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13348) pickList - columnClass attribute behaves differently than in RF4 Date: Tue, 26 Nov 2013 03:51:07 -0500 Message-ID: In-Reply-To: JIRA.12525097.1384431019000@jira02.app.mwc.hst.phx2.redhat.com --===============8008454696822551855== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13348?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13348. ---------------------------- Thank you for explaining. It was rather my misunderstanding, docs seems to = be clear now. Verified. Closing. = > pickList - columnClass attribute behaves differently than in RF4 > ---------------------------------------------------------------- > > Key: RF-13348 > URL: https://issues.jboss.org/browse/RF-13348 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > > {{collumnClass}} attribute of {{r:pickList}} behaves in this way in *RF5*: > Suppose a {{pickList}}, which items consist from _three_ columns. > * if you set {{collumnClass}} to: {{foo bar}}, then first column has clas= s {{foo}}, the second one {{bar}} > * if you set it to {{foo, bar}}, then the first column has class {{foo,ba= r}} - expected > In *RF4*, it was different though: > * it worked as {{collumnClass}} for {{dataTable}}. Literally as it is des= cribed in VDL doc: > bq. Assigns one or more space-separated CSS class names to the columns of= the table. If the CSS class names are comma-separated, each class will be = assigned to a particular column in the order they follow in the attribute. = If you have less class names than columns, the class will be applied to eve= ry n-fold column where n is the order in which the class is listed in the a= ttribute. If there are more class names than columns, the overflow ones are= ignored. > The way how it worked in RF4 seems more reasonable for me. What is your o= pinion on this ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8008454696822551855==-- From jira-events at lists.jboss.org Tue Nov 26 04:11:08 2013 Content-Type: multipart/mixed; boundary="===============4724201658246542409==" MIME-Version: 1.0 From: Gabriele Gervasi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13382) rich:select realign options list on window resize Date: Tue, 26 Nov 2013 04:11:07 -0500 Message-ID: In-Reply-To: JIRA.12526119.1385457002719@jira02.app.mwc.hst.phx2.redhat.com --===============4724201658246542409== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Gabriele Gervasi created RF-13382: ------------------------------------- Summary: rich:select realign options list on window resize Key: RF-13382 URL: https://issues.jboss.org/browse/RF-13382 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 4.3.4 Reporter: Gabriele Gervasi Priority: Optional I'm currently developing a web application and i notice that rich:select op= tions doesn't follow rich:select input on window resize. If it's possible= to change this behaviour it will be really apprentice. I temporarily simp= ly solved hiding on window resize. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4724201658246542409==-- From jira-events at lists.jboss.org Tue Nov 26 04:13:06 2013 Content-Type: multipart/mixed; boundary="===============5219814745706238603==" MIME-Version: 1.0 From: Gabriele Gervasi (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13382) rich:select realign options list on window resize Date: Tue, 26 Nov 2013 04:13:06 -0500 Message-ID: In-Reply-To: JIRA.12526119.1385457002000@jira02.app.mwc.hst.phx2.redhat.com --===============5219814745706238603== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13382?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Gabriele Gervasi updated RF-13382: ---------------------------------- Attachment: Schermata 2013-11-25 alle 18.51.03.png Schermata 2013-11-25 alle 18.51.30.png = > rich:select realign options list on window resize > ------------------------------------------------- > > Key: RF-13382 > URL: https://issues.jboss.org/browse/RF-13382 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.3.4 > Reporter: Gabriele Gervasi > Priority: Optional > Attachments: Schermata 2013-11-25 alle 18.51.03.png, Schermata 20= 13-11-25 alle 18.51.30.png > > > I'm currently developing a web application and i notice that rich:select = options doesn't follow rich:select input on window resize. If it's possib= le to change this behaviour it will be really apprentice. I temporarily si= mply solved hiding on window resize. > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5219814745706238603==-- From jira-events at lists.jboss.org Tue Nov 26 05:38:06 2013 Content-Type: multipart/mixed; boundary="===============5947341798164265222==" MIME-Version: 1.0 From: RH Bugzilla Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13154) Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coyote.http11.upgrade.UpgradeInbound on latest EAP 6) Date: Tue, 26 Nov 2013 05:38:05 -0500 Message-ID: In-Reply-To: JIRA.12499404.1377547327000@jira02.app.mwc.hst.phx2.redhat.com --===============5947341798164265222== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13154?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926691#com= ment-12926691 ] = RH Bugzilla Integration commented on RF-13154: ---------------------------------------------- Boleslaw Dawidowicz changed the Status of [bug 1002= 971|https://bugzilla.redhat.com/show_bug.cgi?id=3D1002971] from MODIFIED to= ON_QA = > Upgrade Atmosphere to 1.0.17 (a4j:push fails with CNFE for org.apache.coy= ote.http11.upgrade.UpgradeInbound on latest EAP 6) > -------------------------------------------------------------------------= -------------------------------------------------- > > Key: RF-13154 > URL: https://issues.jboss.org/browse/RF-13154 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Affects Versions: 4.3.3 > Environment: EAP 6.1.1.ER7 > Reporter: Ken Finnigan > Assignee: Brian Leathem > Fix For: 4.3.4 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > When accessing a4j:push example in showcase on EAP 6.1.1.ER7 the network = tab of the developer console in Chrome shows failed network attempts for ri= chfaces push and the following exception in the server logs: > {code} > 15:21:29,295 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[d= efault-host].[/showcase].[AutoRegisteredPushServlet]] (http-/127.0.0.1:8080= -2) JBWEB000236: Servlet.service() for servlet AutoRegisteredPushServlet th= rew exception: java.lang.ClassNotFoundException: org.apache.coyote.http11.u= pgrade.UpgradeInbound from [Module "deployment.richfaces-showcase-4.3.3.Fin= al-jbas71.war:main" from Service Module Loader] > at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:= 196) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(Con= currentClassLoader.java:444) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(Concu= rrentClassLoader.java:432) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentCl= assLoader.java:374) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoad= er.java:119) [jboss-modules.jar:1.2.2.Final-redhat-1] > at org.atmosphere.container.Tomcat7AsyncSupportWithWebSocket.service(Tom= cat7AsyncSupportWithWebSocket.java:59) [atmosphere-runtime-1.0.10.jar:1.0.1= 0] > at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFrame= work.java:1370) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:29= 3) [atmosphere-runtime-1.0.10.jar:1.0.10] > at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279= ) [atmosphere-runtime-1.0.10.jar:1.0.10] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-s= ervlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:295) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java= :172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl= icationFilterChain.java:246) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final= -redhat-1] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF= ilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-= 1] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV= alve.java:230) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV= alve.java:149) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmC= loserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-red= hat-10] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(Secu= rityContextAssociationValve.java:169) [jboss-as-web-7.2.1.Final-redhat-10.j= ar:7.2.1.Final-redhat-10] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j= ava:145) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j= ava:97) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal= ve.java:102) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav= a:336) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java= :856) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce= ss(Http11Protocol.java:653) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-= redhat-1] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:92= 0) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} > Running the exact same showcase example war on EAP 6.1.0.GA works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5947341798164265222==-- From jira-events at lists.jboss.org Tue Nov 26 07:01:06 2013 Content-Type: multipart/mixed; boundary="===============3826851666227150428==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13381) ComponentControl doesn't work with picklist Date: Tue, 26 Nov 2013 07:01:06 -0500 Message-ID: In-Reply-To: JIRA.12526035.1385383078000@jira02.app.mwc.hst.phx2.redhat.com --===============3826851666227150428== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13381?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13381. ------------------------------ Verified. = > ComponentControl doesn't work with picklist > ------------------------------------------- > > Key: RF-13381 > URL: https://issues.jboss.org/browse/RF-13381 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc, component-selects, regression > Affects Versions: 5.0.0.Alpha2 > Environment: Showcase 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Labels: needs-qe > Fix For: 5.0.0.Alpha2 > > > # open http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sa= mple.jsf?demo=3DhotKey&skin=3DblueSky > # click on first item in "Available cities" list > # press right arrow key on keyboard > # press End button on keyboard > result: > * nothing happens > expected: > * selected item moves to to righ list after pressing right arrow > * all items from left list should move to the right after pressing End bu= tton -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3826851666227150428==-- From jira-events at lists.jboss.org Tue Nov 26 07:21:05 2013 Content-Type: multipart/mixed; boundary="===============1660765518083044008==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 07:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============1660765518083044008== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926723#com= ment-12926723 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13370: ---------------------------------- Three of them can be part of Alpha2. The last one will probably take some t= ime, I expect Alpha 3. = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1660765518083044008==-- From jira-events at lists.jboss.org Tue Nov 26 07:27:06 2013 Content-Type: multipart/mixed; boundary="===============4534885063997496010==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13178) RichFaces CDI Push fails with NoSuchElementException in OWB Date: Tue, 26 Nov 2013 07:27:05 -0500 Message-ID: In-Reply-To: JIRA.12500327.1378747327000@jira02.app.mwc.hst.phx2.redhat.com --===============4534885063997496010== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13178?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926725#com= ment-12926725 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13178: --------------------------------- This issue may be resolved by leveraging event handling improvements in CDI= , see RF-11455. = > RichFaces CDI Push fails with NoSuchElementException in OWB > ----------------------------------------------------------- > > Key: RF-13178 > URL: https://issues.jboss.org/browse/RF-13178 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.3.3 > Environment: Tomee 1.5.2 (Apache Tomcat (TomEE)/7.0.37)) > Reporter: Brian Leathem > Labels: cdi, cdi11, owb > Fix For: 5.0.0.Alpha3 > > > RichFaces push fails with a NoSuchElementException: > {code} > SEVERE: Servlet.service() for servlet [FacesServlet] in context with path= [] threw exception [javax.el.ELException: java.util.NoSuchElementException= ] with root cause > java.util.NoSuchElementException > at java.util.HashMap$HashIterator.nextEntry(HashMap.java:897) > at java.util.HashMap$KeyIterator.next(HashMap.java:928) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.get= BeanReference(PushCDIExtension.java:172) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.not= ify(PushCDIExtension.java:140) > at org.apache.webbeans.event.NotificationManager.fireEvent(Notifi= cationManager.java:429) > at org.apache.webbeans.container.BeanManagerImpl.fireEvent(BeanMa= nagerImpl.java:484) > at org.apache.webbeans.event.EventImpl.fire(EventImpl.java:75) > at ca.bleathem.sample.PushCdiBean.sendMessage(PushCdiBean.java:31) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess= orImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth= odAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.webbeans.intercept.InterceptorHandler.invoke(Interc= eptorHandler.java:322) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandl= er.invoke(NormalScopedBeanInterceptorHandler.java:117) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandl= er.invoke(NormalScopedBeanInterceptorHandler.java:108) > at ca.bleathem.sample.PushCdiBean_$$_javassist_2.sendMessage(Push= CdiBean_$$_javassist_2.java) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess= orImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth= odAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.el.parser.AstValue.invoke(AstValue.java:278) > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl= .java:274) > at org.apache.myfaces.view.facelets.el.ContextAwareTagMethodExpre= ssion.invoke(ContextAwareTagMethodExpression.java:96) > at org.apache.myfaces.application.ActionListenerImpl.processActio= n(ActionListenerImpl.java:68) > at javax.faces.component.UICommand.broadcast(UICommand.java:120) > at javax.faces.component.UIViewRoot._broadcastAll(UIViewRoot.java= :1028) > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.ja= va:286) > at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1375) > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot= .java:752) > at org.apache.myfaces.lifecycle.InvokeApplicationExecutor.execute= (InvokeApplicationExecutor.java:38) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(Lifecy= cleImpl.java:170) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleIm= pl.java:117) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardW= rapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardC= ontextValve.java:123) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.jav= a:45) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Aut= henticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHost= Valve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport= Valve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValv= e.java:936) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEn= gineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdap= ter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(Abstr= actHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.p= rocess(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIo= Endpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolEx= ecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolE= xecutor.java:615) > at java.lang.Thread.run(Thread.java:722) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4534885063997496010==-- From jira-events at lists.jboss.org Tue Nov 26 07:27:06 2013 Content-Type: multipart/mixed; boundary="===============4835124058069753855==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13178) RichFaces CDI Push fails with NoSuchElementException in OWB Date: Tue, 26 Nov 2013 07:27:05 -0500 Message-ID: In-Reply-To: JIRA.12500327.1378747327000@jira02.app.mwc.hst.phx2.redhat.com --===============4835124058069753855== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13178?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926725#com= ment-12926725 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13178 at 11/26/13 7:26 AM: ----------------------------------------------------------- This issue may be resolved by leveraging event handling improvements in CDI= 1.1 that allows to access event qualifiers, see RF-11455. = was (Author: lfryc): This issue may be resolved by leveraging event handling improvements in= CDI, see RF-11455. = > RichFaces CDI Push fails with NoSuchElementException in OWB > ----------------------------------------------------------- > > Key: RF-13178 > URL: https://issues.jboss.org/browse/RF-13178 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.3.3 > Environment: Tomee 1.5.2 (Apache Tomcat (TomEE)/7.0.37)) > Reporter: Brian Leathem > Labels: cdi, cdi11, owb > Fix For: 5.0.0.Alpha3 > > > RichFaces push fails with a NoSuchElementException: > {code} > SEVERE: Servlet.service() for servlet [FacesServlet] in context with path= [] threw exception [javax.el.ELException: java.util.NoSuchElementException= ] with root cause > java.util.NoSuchElementException > at java.util.HashMap$HashIterator.nextEntry(HashMap.java:897) > at java.util.HashMap$KeyIterator.next(HashMap.java:928) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.get= BeanReference(PushCDIExtension.java:172) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.not= ify(PushCDIExtension.java:140) > at org.apache.webbeans.event.NotificationManager.fireEvent(Notifi= cationManager.java:429) > at org.apache.webbeans.container.BeanManagerImpl.fireEvent(BeanMa= nagerImpl.java:484) > at org.apache.webbeans.event.EventImpl.fire(EventImpl.java:75) > at ca.bleathem.sample.PushCdiBean.sendMessage(PushCdiBean.java:31) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess= orImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth= odAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.webbeans.intercept.InterceptorHandler.invoke(Interc= eptorHandler.java:322) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandl= er.invoke(NormalScopedBeanInterceptorHandler.java:117) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandl= er.invoke(NormalScopedBeanInterceptorHandler.java:108) > at ca.bleathem.sample.PushCdiBean_$$_javassist_2.sendMessage(Push= CdiBean_$$_javassist_2.java) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccess= orImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMeth= odAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.el.parser.AstValue.invoke(AstValue.java:278) > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl= .java:274) > at org.apache.myfaces.view.facelets.el.ContextAwareTagMethodExpre= ssion.invoke(ContextAwareTagMethodExpression.java:96) > at org.apache.myfaces.application.ActionListenerImpl.processActio= n(ActionListenerImpl.java:68) > at javax.faces.component.UICommand.broadcast(UICommand.java:120) > at javax.faces.component.UIViewRoot._broadcastAll(UIViewRoot.java= :1028) > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.ja= va:286) > at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1375) > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot= .java:752) > at org.apache.myfaces.lifecycle.InvokeApplicationExecutor.execute= (InvokeApplicationExecutor.java:38) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(Lifecy= cleImpl.java:170) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleIm= pl.java:117) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilt= er(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli= cationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardW= rapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardC= ontextValve.java:123) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.jav= a:45) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Aut= henticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHost= Valve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport= Valve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValv= e.java:936) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEn= gineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdap= ter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(Abstr= actHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.p= rocess(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIo= Endpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolEx= ecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolE= xecutor.java:615) > at java.lang.Thread.run(Thread.java:722) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4835124058069753855==-- From jira-events at lists.jboss.org Tue Nov 26 08:09:06 2013 Content-Type: multipart/mixed; boundary="===============6422079475939693577==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 08:09:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286369@jira02.app.mwc.hst.phx2.redhat.com --===============6422079475939693577== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13383: ---------------------------------- Summary: Select and CSV doesn't work: UndeclaredThrowableExcep= tion in ResourceFactoryImpl Key: RF-13383 URL: https://issues.jboss.org/browse/RF-13383 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, component-validators, regression Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Metamer 5.0.0-SNAPSHOT EAP 6.1.1 Mojarra 2.1.19 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 31.0.1650.57 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metame and open http://localhost:8080/metamer/faces/components/ric= hSelect/RF-13999.xhtml result: {quote} java.lang.reflect.UndeclaredThrowableException $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.reflect.InvocationTargetException sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.NullPointerException org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:90) org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Resour= ceServletMapping.java:83) org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:72) org.richfaces.resource.external.MappedResourceFactoryImpl.createResource(M= appedResourceFactoryImpl.java:106) sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6422079475939693577==-- From jira-events at lists.jboss.org Tue Nov 26 08:11:06 2013 Content-Type: multipart/mixed; boundary="===============4542317293193240480==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 08:11:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============4542317293193240480== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13383: ------------------------------- Description: = # deploy Metame and open http://localhost:8080/metamer/faces/components/ric= hSelect/RF-13383.xhtml result: * UndeclaredThrowableException is thrown * works fine when you replace r:select with r:inplaceSelect {quote} java.lang.reflect.UndeclaredThrowableException $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.reflect.InvocationTargetException sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.NullPointerException org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:90) org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Resour= ceServletMapping.java:83) org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:72) org.richfaces.resource.external.MappedResourceFactoryImpl.createResource(M= appedResourceFactoryImpl.java:106) sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) {quote} was: # deploy Metame and open http://localhost:8080/metamer/faces/components/ric= hSelect/RF-13999.xhtml result: {quote} java.lang.reflect.UndeclaredThrowableException $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.reflect.InvocationTargetException sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.NullPointerException org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:90) org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Resour= ceServletMapping.java:83) org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:72) org.richfaces.resource.external.MappedResourceFactoryImpl.createResource(M= appedResourceFactoryImpl.java:106) sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) {quote} = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4542317293193240480==-- From jira-events at lists.jboss.org Tue Nov 26 08:11:06 2013 Content-Type: multipart/mixed; boundary="===============5869252620193911605==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 08:11:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============5869252620193911605== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13383: ------------------------------- Priority: Critical (was: Major) = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5869252620193911605==-- From jira-events at lists.jboss.org Tue Nov 26 08:57:06 2013 Content-Type: multipart/mixed; boundary="===============7283937981819149989==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 08:57:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224064@jira02.app.mwc.hst.phx2.redhat.com --===============7283937981819149989== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matej Novotny created RF-13384: ---------------------------------- Summary: Showcase for 4.5.x - richfaces-event.js problem Key: RF-13384 URL: https://issues.jboss.org/browse/RF-13384 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.5.0.Alpha1 Reporter: Matej Novotny Fix For: 4.5.0.Alpha1 The showcase application shows following warning in server console when acc= essing nearly any component. = {code} 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, rich= faces-event.js. {code} The consequences are that the component does not respond on any form of int= eraction. This is probably a missing resource problem (or maybe a conflicti= ng resource since we are talking RF 4.5?). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7283937981819149989==-- From jira-events at lists.jboss.org Tue Nov 26 09:01:10 2013 Content-Type: multipart/mixed; boundary="===============4509341280047386251==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:01:09 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============4509341280047386251== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-13384: ------------------------------- Description: = The showcase application shows following warning in server console when acc= essing nearly any component. = {code} 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, rich= faces-event.js. {code} The consequences are that the component does not respond on any form of int= eraction. This is probably a missing resource problem (or maybe a conflicti= ng resource since we are talking RF 4.5?). May be related to [this issue|https://issues.jboss.org/browse/RF-13186]. was: The showcase application shows following warning in server console when acc= essing nearly any component. = {code} 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, rich= faces-event.js. {code} The consequences are that the component does not respond on any form of int= eraction. This is probably a missing resource problem (or maybe a conflicti= ng resource since we are talking RF 4.5?). = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186]. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4509341280047386251==-- From jira-events at lists.jboss.org Tue Nov 26 09:01:10 2013 Content-Type: multipart/mixed; boundary="===============0746973306129771622==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:01:10 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============0746973306129771622== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-13384: ------------------------------- Description: = The showcase application shows following warning in server console when acc= essing nearly any component. = {code} 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, rich= faces-event.js. {code} The consequences are that the component does not respond on any form of int= eraction. This is probably a missing resource problem (or maybe a conflicti= ng resource since we are talking RF 4.5?). May be related to [this issue|https://issues.jboss.org/browse/RF-13186], bu= t that one is signed as resolved. was: The showcase application shows following warning in server console when acc= essing nearly any component. = {code} 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, rich= faces-event.js. {code} The consequences are that the component does not respond on any form of int= eraction. This is probably a missing resource problem (or maybe a conflicti= ng resource since we are talking RF 4.5?). May be related to [this issue|https://issues.jboss.org/browse/RF-13186]. = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0746973306129771622==-- From jira-events at lists.jboss.org Tue Nov 26 09:03:06 2013 Content-Type: multipart/mixed; boundary="===============2964105179241019657==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:03:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============2964105179241019657== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-13384: ------------------------------- Steps to Reproduce: = * Build (with 'mvn clean package -Pjbas71' command) showcase repo. Make sur= e to build branch 4.5.x. * Start JBoss AS 7.1 server * Deploy to server * Go to [main page|http://localhost:8080/showcase] and try accessing some c= omponent (for instance 'Menus->dropdownMenu) * See console for warning, try to interact with component (nothing happens) was: * Build (with 'mvn clean package -Pjbas71' command) showcase repo * Start JBoss AS 7.1 server * Deploy to server * Go to [main page|http://localhost:8080/showcase] and try accessing some c= omponent (for instance 'Menus->dropdownMenu) * See console for warning, try to interact with component (nothing happens) = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2964105179241019657==-- From jira-events at lists.jboss.org Tue Nov 26 09:05:06 2013 Content-Type: multipart/mixed; boundary="===============6333868976641205854==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13210) Move RichFaces resources from META-INF/resources/ to org.richfaces library Date: Tue, 26 Nov 2013 09:05:06 -0500 Message-ID: In-Reply-To: JIRA.12501334.1379967310000@jira02.app.mwc.hst.phx2.redhat.com --===============6333868976641205854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13210?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13210. ------------------------------ Verified, closing = > Move RichFaces resources from META-INF/resources/ to org.richfaces library > -------------------------------------------------------------------------- > > Key: RF-13210 > URL: https://issues.jboss.org/browse/RF-13210 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6333868976641205854==-- From jira-events at lists.jboss.org Tue Nov 26 09:19:06 2013 Content-Type: multipart/mixed; boundary="===============7260183551359231543==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:19:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============7260183551359231543== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13383: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7260183551359231543==-- From jira-events at lists.jboss.org Tue Nov 26 09:19:06 2013 Content-Type: multipart/mixed; boundary="===============3061283656736756031==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13382) rich:select realign options list on window resize Date: Tue, 26 Nov 2013 09:19:06 -0500 Message-ID: In-Reply-To: JIRA.12526119.1385457002000@jira02.app.mwc.hst.phx2.redhat.com --===============3061283656736756031== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13382?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13382: ------------------------------- Fix Version/s: 5-Tracking = > rich:select realign options list on window resize > ------------------------------------------------- > > Key: RF-13382 > URL: https://issues.jboss.org/browse/RF-13382 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.3.4 > Reporter: Gabriele Gervasi > Priority: Optional > Fix For: 5-Tracking > > Attachments: Schermata 2013-11-25 alle 18.51.03.png, Schermata 20= 13-11-25 alle 18.51.30.png > > > I'm currently developing a web application and i notice that rich:select = options doesn't follow rich:select input on window resize. If it's possib= le to change this behaviour it will be really appreciated. I temporarily s= imply solved hiding on window resize. > {code} > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3061283656736756031==-- From jira-events at lists.jboss.org Tue Nov 26 09:19:06 2013 Content-Type: multipart/mixed; boundary="===============8172526147853956459==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13382) rich:select realign options list on window resize Date: Tue, 26 Nov 2013 09:19:06 -0500 Message-ID: In-Reply-To: JIRA.12526119.1385457002000@jira02.app.mwc.hst.phx2.redhat.com --===============8172526147853956459== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13382?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13382: ------------------------------- Description: = I'm currently developing a web application and i notice that rich:select op= tions doesn't follow rich:select input on window resize. If it's possible= to change this behaviour it will be really appreciated. I temporarily sim= ply solved hiding on window resize. {code} {code} was: I'm currently developing a web application and i notice that rich:select op= tions doesn't follow rich:select input on window resize. If it's possible= to change this behaviour it will be really apprentice. I temporarily simp= ly solved hiding on window resize. = > rich:select realign options list on window resize > ------------------------------------------------- > > Key: RF-13382 > URL: https://issues.jboss.org/browse/RF-13382 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.3.4 > Reporter: Gabriele Gervasi > Priority: Optional > Attachments: Schermata 2013-11-25 alle 18.51.03.png, Schermata 20= 13-11-25 alle 18.51.30.png > > > I'm currently developing a web application and i notice that rich:select = options doesn't follow rich:select input on window resize. If it's possib= le to change this behaviour it will be really appreciated. I temporarily s= imply solved hiding on window resize. > {code} > > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8172526147853956459==-- From jira-events at lists.jboss.org Tue Nov 26 09:21:06 2013 Content-Type: multipart/mixed; boundary="===============5944011524776110529==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 09:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============5944011524776110529== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13370: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5944011524776110529==-- From jira-events at lists.jboss.org Tue Nov 26 09:21:06 2013 Content-Type: multipart/mixed; boundary="===============5199141474824249749==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 09:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============5199141474824249749== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926780#com= ment-12926780 ] = Brian Leathem commented on RF-13370: ------------------------------------ [~lukindo] could you file a separate issue to track the part you want to sc= hedule for 5.0.0.Alpha3? = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5199141474824249749==-- From jira-events at lists.jboss.org Tue Nov 26 09:23:06 2013 Content-Type: multipart/mixed; boundary="===============9010453621931635239==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11455) Full-featured Push CDI integration based on CDI 1.1 Date: Tue, 26 Nov 2013 09:23:06 -0500 Message-ID: In-Reply-To: JIRA.12448627.1317817468000@jira02.app.mwc.hst.phx2.redhat.com --===============9010453621931635239== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11455?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926781#com= ment-12926781 ] = Brian Leathem commented on RF-11455: ------------------------------------ [~lfryc] can we do this in a way that is compatible with CDI 1.0 implementa= tions? = > Full-featured Push CDI integration based on CDI 1.1 > --------------------------------------------------- > > Key: RF-11455 > URL: https://issues.jboss.org/browse/RF-11455 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5-Future > > > When designing Push CDI integration in 4.1.0.M3, it wasn't possible to us= e classic CDI event observers. > As result, CDI extension was designed instead with limitations bellow. > Once CDI-36 will be solved, it will be possible to read InjectionPoint an= d its @Push annotation with classic event observer. > * @Push annotation's parameters will be switched to @Nonbinding (there wi= ll be no reason to have them bound and user will be able to observe all @Pu= sh events). > * It will also make possible to use runtime selection of topics/subtopics= (not currently possible, observers are specifically resolved in deploy tim= e) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9010453621931635239==-- From jira-events at lists.jboss.org Tue Nov 26 09:25:06 2013 Content-Type: multipart/mixed; boundary="===============0745334500797974371==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-11455) Full-featured Push CDI integration based on CDI 1.1 Date: Tue, 26 Nov 2013 09:25:06 -0500 Message-ID: In-Reply-To: JIRA.12448627.1317817468000@jira02.app.mwc.hst.phx2.redhat.com --===============0745334500797974371== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11455?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11455: ------------------------------- Fix Version/s: 5-Tracking (was: 5-Future) = > Full-featured Push CDI integration based on CDI 1.1 > --------------------------------------------------- > > Key: RF-11455 > URL: https://issues.jboss.org/browse/RF-11455 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5-Tracking > > > When designing Push CDI integration in 4.1.0.M3, it wasn't possible to us= e classic CDI event observers. > As result, CDI extension was designed instead with limitations bellow. > Once CDI-36 will be solved, it will be possible to read InjectionPoint an= d its @Push annotation with classic event observer. > * @Push annotation's parameters will be switched to @Nonbinding (there wi= ll be no reason to have them bound and user will be able to observe all @Pu= sh events). > * It will also make possible to use runtime selection of topics/subtopics= (not currently possible, observers are specifically resolved in deploy tim= e) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0745334500797974371==-- From jira-events at lists.jboss.org Tue Nov 26 09:25:06 2013 Content-Type: multipart/mixed; boundary="===============0813888946116932951==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Tue, 26 Nov 2013 09:25:06 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============0813888946116932951== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926783#com= ment-12926783 ] = Matej Novotny commented on RF-13312: ------------------------------------ Verified for rich:editor in Metamer with RF 4.5 - renders correctly and wit= h no errors/warnings in server console. Closing this issue. = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0813888946116932951==-- From jira-events at lists.jboss.org Tue Nov 26 09:25:07 2013 Content-Type: multipart/mixed; boundary="===============1664774377689339099==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13312) rich:editor doesn't work in RF 4.5 Date: Tue, 26 Nov 2013 09:25:07 -0500 Message-ID: In-Reply-To: JIRA.12511014.1383559638000@jira02.app.mwc.hst.phx2.redhat.com --===============1664774377689339099== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13312?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13312. ------------------------------ = > rich:editor doesn't work in RF 4.5 > ---------------------------------- > > Key: RF-13312 > URL: https://issues.jboss.org/browse/RF-13312 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > The editor's UI doesn't get rendered. The rendering fails with: > {panel} > 10:59:36,709 SEVERE \[javax.enterprise.resource.webcontainer.jsf.applicat= ion\] (http--127.0.0.1-8080-1) Error Rendering View\[/richfaces/component-s= ample.xhtml\]: java.lang.StringIndexOutOfBoundsException: String index out = of range: -1 > {panel} > It is caused by [this line|https://github.com/richfaces4/components/blob/= master/input/ui/src/main/java/org/richfaces/renderkit/EditorRendererBase.ja= va#L61]. The actual request path does not contain any parameters. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1664774377689339099==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============8132725202674626175==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============8132725202674626175== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13384: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 7 = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8132725202674626175==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============6637964173730270939==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============6637964173730270939== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13383: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 7 = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6637964173730270939==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============7423430021164334399==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============7423430021164334399== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13370: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 7 = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7423430021164334399==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============4855460682652975122==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13385) Chart listener doesn't work with @Named Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12526168.1385476013142@jira02.app.mwc.hst.phx2.redhat.com --===============4855460682652975122== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Macko created RF-13385: -------------------------------- Summary: Chart listener doesn't work with @Named Key: RF-13385 URL: https://issues.jboss.org/browse/RF-13385 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output Reporter: Luk=C3=A1=C5=A1 Macko server-side plotclick listener method is not called when Bean is annotated = with @Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4855460682652975122==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============8951210163917270360==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============8951210163917270360== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13383: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8951210163917270360==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============4656351603213929913==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============4656351603213929913== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13370: ------------------------------- Original Estimate: 2 hours Remaining Estimate: 2 hours = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4656351603213929913==-- From jira-events at lists.jboss.org Tue Nov 26 09:27:06 2013 Content-Type: multipart/mixed; boundary="===============3659002373183463782==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:27:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============3659002373183463782== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13384: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3659002373183463782==-- From jira-events at lists.jboss.org Tue Nov 26 09:31:06 2013 Content-Type: multipart/mixed; boundary="===============5603931893354634046==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29_=3Cjira-events_at_lists=2Ejbos?= =?utf-8?q?s=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side Date: Tue, 26 Nov 2013 09:31:05 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============5603931893354634046== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926785#com= ment-12926785 ] = Luk=C3=A1=C5=A1 Macko commented on RF-13370: ---------------------------------- New issue for the 5.0.0.Alpha3 part https://issues.jboss.org/browse/RF-13385 = > Charts - server-side > -------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5603931893354634046==-- From jira-events at lists.jboss.org Tue Nov 26 09:33:06 2013 Content-Type: multipart/mixed; boundary="===============8525297201876206028==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:33:05 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============8525297201876206028== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13384: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8525297201876206028==-- From jira-events at lists.jboss.org Tue Nov 26 09:39:06 2013 Content-Type: multipart/mixed; boundary="===============7372507619508065602==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:39:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============7372507619508065602== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13384: ---------------------------- Assignee: Matej Novotny (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Assignee: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7372507619508065602==-- From jira-events at lists.jboss.org Tue Nov 26 09:39:06 2013 Content-Type: multipart/mixed; boundary="===============3197368597150419520==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 09:39:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============3197368597150419520== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926790#com= ment-12926790 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13384: --------------------------------- Matej, I have tried to reproduce, but with fresh build of RF5 and RF4 Compo= nents (branch 4.5.x), everything works as expected, no messages in a consol= e as you indicated. Could you please try to build the demo including dependencies ([RF4 Compone= nts|https://github.com/richfaces4/components/tree/4.5.x]) and try again? = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3197368597150419520==-- From jira-events at lists.jboss.org Tue Nov 26 09:41:06 2013 Content-Type: multipart/mixed; boundary="===============7127735704826865442==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:41:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============7127735704826865442== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13383: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {quote} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {quote} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7127735704826865442==-- From jira-events at lists.jboss.org Tue Nov 26 09:48:06 2013 Content-Type: multipart/mixed; boundary="===============2971205956306198054==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13385) Chart listener doesn't work with @Named Date: Tue, 26 Nov 2013 09:48:05 -0500 Message-ID: In-Reply-To: JIRA.12526168.1385476013000@jira02.app.mwc.hst.phx2.redhat.com --===============2971205956306198054== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13385?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926791#com= ment-12926791 ] = Brian Leathem commented on RF-13385: ------------------------------------ [~lukindo] are you sure you have a beans.xml in the sample you used to test= the @Named annotation? = > Chart listener doesn't work with @Named > --------------------------------------- > > Key: RF-13385 > URL: https://issues.jboss.org/browse/RF-13385 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > > server-side plotclick listener method is not called when Bean is annotate= d with @Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2971205956306198054==-- From jira-events at lists.jboss.org Tue Nov 26 09:53:06 2013 Content-Type: multipart/mixed; boundary="===============2025937024058655029==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13386) Resource Mapping feature throws NPE for non-existing Resource, but it should log message Date: Tue, 26 Nov 2013 09:53:06 -0500 Message-ID: In-Reply-To: JIRA.12526173.1385477544842@jira02.app.mwc.hst.phx2.redhat.com --===============2025937024058655029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13386: ------------------------------- Summary: Resource Mapping feature throws NPE for non-existing = Resource, but it should log message Key: RF-13386 URL: https://issues.jboss.org/browse/RF-13386 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: resource handling Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D In RF-13383, we have discovered that Resource Mapping does not handle situa= tion when a resource is mapped to another ResourcePath, but the ResourcePat= h is not correct (e.g. the resource does not exist on that path). In this situation, a message should be logged and RES_NOT_FOUND resource sh= ould be returned. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2025937024058655029==-- From jira-events at lists.jboss.org Tue Nov 26 09:55:06 2013 Content-Type: multipart/mixed; boundary="===============7526437209620240305==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:55:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============7526437209620240305== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13383: ---------------------------- Description: = # deploy Metame and open http://localhost:8080/metamer/faces/components/ric= hSelect/RF-13383.xhtml result: * UndeclaredThrowableException is thrown * works fine when you replace r:select with r:inplaceSelect {code} java.lang.reflect.UndeclaredThrowableException $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.reflect.InvocationTargetException sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.NullPointerException org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:90) org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Resour= ceServletMapping.java:83) org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:72) org.richfaces.resource.external.MappedResourceFactoryImpl.createResource(M= appedResourceFactoryImpl.java:106) sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) {code} was: # deploy Metame and open http://localhost:8080/metamer/faces/components/ric= hSelect/RF-13383.xhtml result: * UndeclaredThrowableException is thrown * works fine when you replace r:select with r:inplaceSelect {quote} java.lang.reflect.UndeclaredThrowableException $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.reflect.InvocationTargetException sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) JBWEB000071: root cause java.lang.NullPointerException org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:90) org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Resour= ceServletMapping.java:83) org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Reso= urceServletMapping.java:72) org.richfaces.resource.external.MappedResourceFactoryImpl.createResource(M= appedResourceFactoryImpl.java:106) sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm= pl.java:43) java.lang.reflect.Method.invoke(Method.java:601) org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) $Proxy75.createResource(Unknown Source) org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(ResourceF= actoryImpl.java:393) org.richfaces.resource.ResourceFactoryImpl.createMappedResource(ResourceFa= ctoryImpl.java:360) org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryI= mpl.java:343) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:270) org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerI= mpl.java:280) com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRenderer= .java:102) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.jav= a:53) org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(ResourceRe= nderer.java:45) org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.jav= a:105) javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Face= letViewHandlingStrategy.java:439) com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandle= r.java:124) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.j= ava:286) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.ja= va:120) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter= .java:93) {quote} = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {code} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7526437209620240305==-- From jira-events at lists.jboss.org Tue Nov 26 09:57:06 2013 Content-Type: multipart/mixed; boundary="===============1409254465327310959==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Tue, 26 Nov 2013 09:57:06 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============1409254465327310959== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13383. ----------------------------- Resolution: Done = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {code} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1409254465327310959==-- From jira-events at lists.jboss.org Tue Nov 26 09:57:06 2013 Content-Type: multipart/mixed; boundary="===============2828267059348528591==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13386) Resource Mapping feature throws NPE for non-existing Resource, but it should log message Date: Tue, 26 Nov 2013 09:57:06 -0500 Message-ID: In-Reply-To: JIRA.12526173.1385477544000@jira02.app.mwc.hst.phx2.redhat.com --===============2828267059348528591== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13386?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13386: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Resource Mapping feature throws NPE for non-existing Resource, but it sho= uld log message > -------------------------------------------------------------------------= --------------- > > Key: RF-13386 > URL: https://issues.jboss.org/browse/RF-13386 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > In RF-13383, we have discovered that Resource Mapping does not handle sit= uation when a resource is mapped to another ResourcePath, but the ResourceP= ath is not correct (e.g. the resource does not exist on that path). > In this situation, a message should be logged and RES_NOT_FOUND resource = should be returned. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2828267059348528591==-- From jira-events at lists.jboss.org Tue Nov 26 09:59:06 2013 Content-Type: multipart/mixed; boundary="===============4499087296208531984==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13385) Chart listener doesn't work with @Named Date: Tue, 26 Nov 2013 09:59:06 -0500 Message-ID: In-Reply-To: JIRA.12526168.1385476013000@jira02.app.mwc.hst.phx2.redhat.com --===============4499087296208531984== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13385?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13385: ------------------------------- Fix Version/s: 5.0.0.Alpha3 = > Chart listener doesn't work with @Named > --------------------------------------- > > Key: RF-13385 > URL: https://issues.jboss.org/browse/RF-13385 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha3 > > > server-side plotclick listener method is not called when Bean is annotate= d with @Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4499087296208531984==-- From jira-events at lists.jboss.org Tue Nov 26 10:01:06 2013 Content-Type: multipart/mixed; boundary="===============0234963549283292050==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 10:01:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============0234963549283292050== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926799#com= ment-12926799 ] = Matej Novotny commented on RF-13384: ------------------------------------ Hmm now that I rebuild everything from scratch it works for me too. I must = have had outdated build of RF 4 Components, it's my bad. Sorry for botherin= g then, I will close this issue. = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Assignee: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0234963549283292050==-- From jira-events at lists.jboss.org Tue Nov 26 10:03:06 2013 Content-Type: multipart/mixed; boundary="===============0484899730784948245==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13384) Showcase for 4.5.x - richfaces-event.js problem Date: Tue, 26 Nov 2013 10:03:06 -0500 Message-ID: In-Reply-To: JIRA.12526161.1385474224000@jira02.app.mwc.hst.phx2.redhat.com --===============0484899730784948245== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13384?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13384. ------------------------------ Resolution: Cannot Reproduce Bug Had an outdated build causing me to see this error. Works correctly after r= ebuilding dependencies. = > Showcase for 4.5.x - richfaces-event.js problem > ----------------------------------------------- > > Key: RF-13384 > URL: https://issues.jboss.org/browse/RF-13384 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Matej Novotny > Assignee: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The showcase application shows following warning in server console when a= ccessing nearly any component. = > {code} > 14:39:01,300 WARNING [javax.enterprise.resource.webcontainer.jsf.applicat= ion] (http--127.0.0.1-8080-1) JSF1064: Unable to find or serve resource, ri= chfaces-event.js. > {code} > The consequences are that the component does not respond on any form of i= nteraction. This is probably a missing resource problem (or maybe a conflic= ting resource since we are talking RF 4.5?). > May be related to [this issue|https://issues.jboss.org/browse/RF-13186], = but that one is signed as resolved. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0484899730784948245==-- From jira-events at lists.jboss.org Tue Nov 26 10:09:06 2013 Content-Type: multipart/mixed; boundary="===============7091589428995643265==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Tue, 26 Nov 2013 10:09:06 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============7091589428995643265== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926808#com= ment-12926808 ] = Matej Novotny commented on RF-13313: ------------------------------------ Verified using locally deployed showcase app for 4.5 and for 5.0. Progress = bar shows up and images are uploaded correctly. = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7091589428995643265==-- From jira-events at lists.jboss.org Tue Nov 26 10:09:06 2013 Content-Type: multipart/mixed; boundary="===============3585428083736735432==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13313) rich:fileupload - progress bar doesn't show up Date: Tue, 26 Nov 2013 10:09:06 -0500 Message-ID: In-Reply-To: JIRA.12511966.1383560542000@jira02.app.mwc.hst.phx2.redhat.com --===============3585428083736735432== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13313?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13313. ------------------------------ Issue was verified, closing. = > rich:fileupload - progress bar doesn't show up > ---------------------------------------------- > > Key: RF-13313 > URL: https://issues.jboss.org/browse/RF-13313 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > After uploading an image error appears in console: > {panel} > GET http://localhost:8080/showcase/org.richfaces.resources/javax.faces.re= source/org.richfaces/fileUploadProgress?rf_fu_uid_alt=3D0.00801156414672732= 4 404 (Not Found) jquery.js:8434 > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3585428083736735432==-- From jira-events at lists.jboss.org Tue Nov 26 10:37:06 2013 Content-Type: multipart/mixed; boundary="===============6186307773236593646==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Tue, 26 Nov 2013 10:37:06 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============6186307773236593646== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10756: ---------------------------------- Assignee: Juraj H=C3=BAska (was: Pavol Pitonak) = > 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: Juraj H=C3=BAska > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6186307773236593646==-- From jira-events at lists.jboss.org Tue Nov 26 10:37:06 2013 Content-Type: multipart/mixed; boundary="===============6845205367769017284==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13214) TreeModelAdaptor and TreeModelRecursive Adaptor doesn't work Date: Tue, 26 Nov 2013 10:37:05 -0500 Message-ID: In-Reply-To: JIRA.12501341.1379968438000@jira02.app.mwc.hst.phx2.redhat.com --===============6845205367769017284== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13214?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13214. ------------------------------ Verified, closing = > TreeModelAdaptor and TreeModelRecursive Adaptor doesn't work > ------------------------------------------------------------ > > Key: RF-13214 > URL: https://issues.jboss.org/browse/RF-13214 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6845205367769017284==-- From jira-events at lists.jboss.org Tue Nov 26 10:51:06 2013 Content-Type: multipart/mixed; boundary="===============8862441745949686898==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13196) Rename all component/renderers types org.richfaces.ui (so it won't conflict with RF4.5 org.richfaces namespace) Date: Tue, 26 Nov 2013 10:51:06 -0500 Message-ID: In-Reply-To: JIRA.12500864.1379438388000@jira02.app.mwc.hst.phx2.redhat.com --===============8862441745949686898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13196?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13196. ------------------------------ Verified, closing issue. = > Rename all component/renderers types org.richfaces.ui (so it won't confli= ct with RF4.5 org.richfaces namespace) > -------------------------------------------------------------------------= -------------------------------------- > > Key: RF-13196 > URL: https://issues.jboss.org/browse/RF-13196 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8862441745949686898==-- From jira-events at lists.jboss.org Tue Nov 26 13:33:06 2013 Content-Type: multipart/mixed; boundary="===============5194858160326264542==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) pickList: when nested in r:outputPanel with ajaxRendered=true, then submitting breaks pickList Date: Tue, 26 Nov 2013 13:33:06 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770665@jira02.app.mwc.hst.phx2.redhat.com --===============5194858160326264542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Juraj H=C3=BAska created RF-13387: -------------------------------- Summary: pickList: when nested in r:outputPanel with ajaxRende= red=3Dtrue, then submitting breaks pickList Key: RF-13387 URL: https://issues.jboss.org/browse/RF-13387 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Juraj H=C3=BAska When {{pickList}} is nested in {{ }} t= hen ajax submitting breaks the pickList. It seems like the ajax response is being stuck and it is not completed corr= ectly. (Firebug shows request completed correctly with 200, but there is no= response, also the metamer ajax activity indicator stills displays WORKING= like there is still an ajax request). Regular {{h:commandButton}} submitting works correctly. JS error being logged in browser console: {code} TypeError: component.detach is not a function component.detach(source); {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5194858160326264542==-- From jira-events at lists.jboss.org Tue Nov 26 13:37:06 2013 Content-Type: multipart/mixed; boundary="===============9011581279428798412==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13370) Charts - server-side improvements Date: Tue, 26 Nov 2013 13:37:06 -0500 Message-ID: In-Reply-To: JIRA.12525807.1385035920000@jira02.app.mwc.hst.phx2.redhat.com --===============9011581279428798412== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13370?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13370: ---------------------------- Summary: Charts - server-side improvements (was: Charts - server-side) = > Charts - server-side improvements > --------------------------------- > > Key: RF-13370 > URL: https://issues.jboss.org/browse/RF-13370 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > * rename attribute *clickListener* in chart and series tag to *plotClickL= istner* > * send request to server only if a server-side listener is attached = > * particular series server-side listeners (called only for particular ser= ies events) > * server-side listener method is not called when Bean is annotated with @= Named (listener is called properly for @MangedBean) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9011581279428798412==-- From jira-events at lists.jboss.org Wed Nov 27 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============1105340874291445811==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts Date: Wed, 27 Nov 2013 03:14:05 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============1105340874291445811== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12913: ------------------------------- Component/s: (was: qe) = > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1105340874291445811==-- From jira-events at lists.jboss.org Wed Nov 27 03:14:06 2013 Content-Type: multipart/mixed; boundary="===============7139670560328322088==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 27 Nov 2013 03:14:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============7139670560328322088== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13343: ------------------------------- Component/s: (was: qe) = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7139670560328322088==-- From jira-events at lists.jboss.org Wed Nov 27 03:16:08 2013 Content-Type: multipart/mixed; boundary="===============4289010706222310482==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts Date: Wed, 27 Nov 2013 03:16:07 -0500 Message-ID: In-Reply-To: JIRA.12489457.1366021799000@jira02.app.mwc.hst.phx2.redhat.com --===============4289010706222310482== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12913?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12913: ------------------------------- Fix Version/s: 5.0.0.Alpha3 (was: 5.0.0.Alpha2) = > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha3 > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for e= nhancements. > [1] https://github.com/qa/arquillian-qunit/ -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4289010706222310482==-- From jira-events at lists.jboss.org Wed Nov 27 03:18:06 2013 Content-Type: multipart/mixed; boundary="===============6271125659302602042==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) DataTable: row height strechted to 100% of the table height Date: Wed, 27 Nov 2013 03:18:05 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============6271125659302602042== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926971#com= ment-12926971 ] = Brian Leathem commented on RF-13356: ------------------------------------ [~ppitonak] please clarify what was re-produced (this jira conflates severa= l issues). = > DataTable: row height strechted to 100% of the table height > ----------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Brian Leathem > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6271125659302602042==-- From jira-events at lists.jboss.org Wed Nov 27 03:18:06 2013 Content-Type: multipart/mixed; boundary="===============8549009390296913956==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) DataTable: row height strechted to 100% of the table height Date: Wed, 27 Nov 2013 03:18:06 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============8549009390296913956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13356: ------------------------------- Assignee: Pavol Pitonak (was: Brian Leathem) = > DataTable: row height strechted to 100% of the table height > ----------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Pavol Pitonak > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8549009390296913956==-- From jira-events at lists.jboss.org Wed Nov 27 03:31:06 2013 Content-Type: multipart/mixed; boundary="===============4727134954543397338==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) pickList: when nested in r:outputPanel with ajaxRendered=true, then submitting breaks pickList Date: Wed, 27 Nov 2013 03:31:06 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============4727134954543397338== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13387: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > pickList: when nested in r:outputPanel with ajaxRendered=3Dtrue, then sub= mitting breaks pickList > -------------------------------------------------------------------------= --------------------- > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4727134954543397338==-- From jira-events at lists.jboss.org Wed Nov 27 03:33:06 2013 Content-Type: multipart/mixed; boundary="===============4365626465323234201==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) pickList: when nested in r:outputPanel with ajaxRendered=true, then submitting breaks pickList Date: Wed, 27 Nov 2013 03:33:05 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============4365626465323234201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12926976#com= ment-12926976 ] = Brian Leathem commented on RF-13387: ------------------------------------ This error was introduced with the resolution of RF-13381 = > pickList: when nested in r:outputPanel with ajaxRendered=3Dtrue, then sub= mitting breaks pickList > -------------------------------------------------------------------------= --------------------- > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4365626465323234201==-- From jira-events at lists.jboss.org Wed Nov 27 03:35:06 2013 Content-Type: multipart/mixed; boundary="===============4896243774924967756==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) rf.cleanComponent method is incorrectly operating on jQuery UI Widget factory widgets Date: Wed, 27 Nov 2013 03:35:06 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============4896243774924967756== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13387: ------------------------------- Original Estimate: 30 minutes Remaining Estimate: 30 minutes = > rf.cleanComponent method is incorrectly operating on jQuery UI Widget fac= tory widgets > -------------------------------------------------------------------------= ------------ > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4896243774924967756==-- From jira-events at lists.jboss.org Wed Nov 27 03:35:06 2013 Content-Type: multipart/mixed; boundary="===============6992696177999599577==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) rf.cleanComponent method is incorrectly operating on jQuery UI Widget factory widgets Date: Wed, 27 Nov 2013 03:35:05 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============6992696177999599577== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13387: ------------------------------- Priority: Blocker (was: Major) = > rf.cleanComponent method is incorrectly operating on jQuery UI Widget fac= tory widgets > -------------------------------------------------------------------------= ------------ > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6992696177999599577==-- From jira-events at lists.jboss.org Wed Nov 27 03:35:06 2013 Content-Type: multipart/mixed; boundary="===============1892631708615651557==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) rf.cleanComponent method is incorrectly operating on jQuery UI Widget factory widgets Date: Wed, 27 Nov 2013 03:35:05 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============1892631708615651557== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13387: ------------------------------- Summary: rf.cleanComponent method is incorrectly operating on jQuery UI= Widget factory widgets (was: pickList: when nested in r:outputPanel with = ajaxRendered=3Dtrue, then submitting breaks pickList) = > rf.cleanComponent method is incorrectly operating on jQuery UI Widget fac= tory widgets > -------------------------------------------------------------------------= ------------ > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1892631708615651557==-- From jira-events at lists.jboss.org Wed Nov 27 03:58:06 2013 Content-Type: multipart/mixed; boundary="===============1147577575117975338==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) rf.cleanComponent method is incorrectly operating on jQuery UI Widget factory widgets Date: Wed, 27 Nov 2013 03:58:06 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============1147577575117975338== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13387. -------------------------------- Assignee: Brian Leathem Resolution: Done = > rf.cleanComponent method is incorrectly operating on jQuery UI Widget fac= tory widgets > -------------------------------------------------------------------------= ------------ > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1147577575117975338==-- From jira-events at lists.jboss.org Wed Nov 27 04:21:06 2013 Content-Type: multipart/mixed; boundary="===============4697862069215841992==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13311) Make Push independent of BaseComponent Date: Wed, 27 Nov 2013 04:21:06 -0500 Message-ID: In-Reply-To: JIRA.12511012.1383558111000@jira02.app.mwc.hst.phx2.redhat.com --===============4697862069215841992== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13311?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13311. ------------------------------ Verified = > Make Push independent of BaseComponent > -------------------------------------- > > Key: RF-13311 > URL: https://issues.jboss.org/browse/RF-13311 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Affects Versions: 5-Tracking > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Currently Push extends BaseComponent but since BaseComponent is not a par= t of core the extending fails. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4697862069215841992==-- From jira-events at lists.jboss.org Wed Nov 27 04:28:06 2013 Content-Type: multipart/mixed; boundary="===============2188204164752975584==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13387) rf.cleanComponent method is incorrectly operating on jQuery UI Widget factory widgets Date: Wed, 27 Nov 2013 04:28:06 -0500 Message-ID: In-Reply-To: JIRA.12526211.1385490770000@jira02.app.mwc.hst.phx2.redhat.com --===============2188204164752975584== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13387?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska closed RF-13387. ---------------------------- Verified. Closing. = > rf.cleanComponent method is incorrectly operating on jQuery UI Widget fac= tory widgets > -------------------------------------------------------------------------= ------------ > > Key: RF-13387 > URL: https://issues.jboss.org/browse/RF-13387 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Juraj H=C3=BAska > Assignee: Brian Leathem > Priority: Blocker > Fix For: 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > When {{pickList}} is nested in {{ }}= then ajax submitting breaks the pickList. > It seems like the ajax response is being stuck and it is not completed co= rrectly. (Firebug shows request completed correctly with 200, but there is = no response, also the metamer ajax activity indicator stills displays WORKI= NG like there is still an ajax request). > Regular {{h:commandButton}} submitting works correctly. > JS error being logged in browser console: > {code} > TypeError: component.detach is not a function > component.detach(source); > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2188204164752975584==-- From jira-events at lists.jboss.org Wed Nov 27 04:47:06 2013 Content-Type: multipart/mixed; boundary="===============2077234557871722807==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 04:47:05 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552801@jira02.app.mwc.hst.phx2.redhat.com --===============2077234557871722807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13388: -------------------------------- Summary: autocomplete, orderingList, picklist: js error on sub= mit Key: RF-13388 URL: https://issues.jboss.org/browse/RF-13388 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Priority: Critical -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2077234557871722807==-- From jira-events at lists.jboss.org Wed Nov 27 04:58:06 2013 Content-Type: multipart/mixed; boundary="===============3090430638028576140==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Wed, 27 Nov 2013 04:58:06 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192424@jira02.app.mwc.hst.phx2.redhat.com --===============3090430638028576140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matej Novotny created RF-13389: ---------------------------------- Summary: Showcase for RF 5, pick list rendering in firefox Key: RF-13389 URL: https://issues.jboss.org/browse/RF-13389 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Environment: JBoss AS 7.1 Firefox version 25.0 Chrome version 31 Reporter: Matej Novotny Fix For: 5.0.0.Alpha2 When using Firefox (in my case version 25) and accessing a pick list page i= n showcase(selects->r:pickList), the simple pick list does not render corre= ctly (see attached screenshot). However pick list with columns cause no pro= blems. I tested it with Chrome where everything works correctly. Also to make sure I rebuilded whole repository with dependencies not to hav= e any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3090430638028576140==-- From jira-events at lists.jboss.org Wed Nov 27 05:00:06 2013 Content-Type: multipart/mixed; boundary="===============0121042231496635104==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Wed, 27 Nov 2013 05:00:05 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192000@jira02.app.mwc.hst.phx2.redhat.com --===============0121042231496635104== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13389?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-13389: ------------------------------- Attachment: Chrome_screenshot.png Firefox_screenshot.png Screenshots of pick list in showcase, one from FF and the other from Chrome. = > Showcase for RF 5, pick list rendering in firefox > ------------------------------------------------- > > Key: RF-13389 > URL: https://issues.jboss.org/browse/RF-13389 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: JBoss AS 7.1 > Firefox version 25.0 > Chrome version 31 > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > Attachments: Chrome_screenshot.png, Firefox_screenshot.png > > > When using Firefox (in my case version 25) and accessing a pick list page= in showcase(selects->r:pickList), the simple pick list does not render cor= rectly (see attached screenshot). However pick list with columns cause no p= roblems. > I tested it with Chrome where everything works correctly. > Also to make sure I rebuilded whole repository with dependencies not to h= ave any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0121042231496635104==-- From jira-events at lists.jboss.org Wed Nov 27 05:07:06 2013 Content-Type: multipart/mixed; boundary="===============3335881160231704468==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13332) Showcase: update what components are new in 5.0 Alpha2 Date: Wed, 27 Nov 2013 05:07:05 -0500 Message-ID: In-Reply-To: JIRA.12524763.1384173502000@jira02.app.mwc.hst.phx2.redhat.com --===============3335881160231704468== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13332?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13332. ------------------------------ Verified, new components are correctly labeled as "new" in showcase and wor= king. Closing issue. = > Showcase: update what components are new in 5.0 Alpha2 > ------------------------------------------------------ > > Key: RF-13332 > URL: https://issues.jboss.org/browse/RF-13332 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3335881160231704468==-- From jira-events at lists.jboss.org Wed Nov 27 05:18:06 2013 Content-Type: multipart/mixed; boundary="===============8035789257669181173==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13331) Move tests for Chart component from Sandbox to Framework Tests Date: Wed, 27 Nov 2013 05:18:06 -0500 Message-ID: In-Reply-To: JIRA.12524761.1384171743000@jira02.app.mwc.hst.phx2.redhat.com --===============8035789257669181173== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13331?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13331. ------------------------------ Verified, tests are present inside framework tests and running. Closing issue. = > Move tests for Chart component from Sandbox to Framework Tests > -------------------------------------------------------------- > > Key: RF-13331 > URL: https://issues.jboss.org/browse/RF-13331 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8035789257669181173==-- From jira-events at lists.jboss.org Wed Nov 27 05:18:06 2013 Content-Type: multipart/mixed; boundary="===============1029973818603394174==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13352) Introduce @Category(FailingOnFirefox.class) to pom.xml Date: Wed, 27 Nov 2013 05:18:05 -0500 Message-ID: In-Reply-To: JIRA.12525405.1384766969000@jira02.app.mwc.hst.phx2.redhat.com --===============1029973818603394174== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13352?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13352. ------------------------------ Verified, tests are correctly excluded on Firefox. Closing issue. = > Introduce @Category(FailingOnFirefox.class) to pom.xml > ------------------------------------------------------ > > Key: RF-13352 > URL: https://issues.jboss.org/browse/RF-13352 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: tests - functional = > Reporter: Luk=C3=A1=C5=A1 Macko > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > Creating test for the chart component, I came across an issues that one t= est is running in Chrome and PhantomJS and it is failing on Firefox. As [~l= fryc] suggested in the [comment | https://issues.jboss.org/browse/RF-13331?= focusedCommentId=3D12923949&page=3Dcom.atlassian.jira.plugin.system.issueta= bpanels:comment-tabpanel#comment-12923949], I've annotated it with FailingO= nFirefox. ATM it has no effect concerning tests. > It might be useful to add this category to rf/pom.xml configuration to ex= clude FailingOnFirefox test when tests run on firefox. = -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1029973818603394174==-- From jira-events at lists.jboss.org Wed Nov 27 05:24:06 2013 Content-Type: multipart/mixed; boundary="===============4603627357351411273==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13284) Create showcase samples for the chart components Date: Wed, 27 Nov 2013 05:24:05 -0500 Message-ID: In-Reply-To: JIRA.12508522.1382476109000@jira02.app.mwc.hst.phx2.redhat.com --===============4603627357351411273== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13284?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13284. ------------------------------ Verified, showcase sample for charts is present and working. Closing issue. = > Create showcase samples for the chart components > ------------------------------------------------ > > Key: RF-13284 > URL: https://issues.jboss.org/browse/RF-13284 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-output > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Macko > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4603627357351411273==-- From jira-events at lists.jboss.org Wed Nov 27 05:28:06 2013 Content-Type: multipart/mixed; boundary="===============6313749139458282103==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 05:28:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============6313749139458282103== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13388: ----------------------------- Fix Version/s: 5.0.0.Alpha2 = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6313749139458282103==-- From jira-events at lists.jboss.org Wed Nov 27 05:43:06 2013 Content-Type: multipart/mixed; boundary="===============0486975263208354585==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13383) Select and CSV doesn't work: UndeclaredThrowableException in ResourceFactoryImpl Date: Wed, 27 Nov 2013 05:43:05 -0500 Message-ID: In-Reply-To: JIRA.12526143.1385471286000@jira02.app.mwc.hst.phx2.redhat.com --===============0486975263208354585== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13383?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13383. ------------------------------ Verified, page now loads without errors. Closing issue. = > Select and CSV doesn't work: UndeclaredThrowableException in ResourceFact= oryImpl > -------------------------------------------------------------------------= ------- > > Key: RF-13383 > URL: https://issues.jboss.org/browse/RF-13383 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, component-validators, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metame and open http://localhost:8080/metamer/faces/components/r= ichSelect/RF-13383.xhtml > result: > * UndeclaredThrowableException is thrown > * works fine when you replace r:select with r:inplaceSelect > {code} > java.lang.reflect.UndeclaredThrowableException > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.reflect.InvocationTargetException > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > JBWEB000071: root cause > java.lang.NullPointerException > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:90) > org.richfaces.resource.mapping.ResourceServletMapping.getMappedPath(Reso= urceServletMapping.java:83) > org.richfaces.resource.mapping.ResourceServletMapping.getResourcePath(Re= sourceServletMapping.java:72) > org.richfaces.resource.external.MappedResourceFactoryImpl.createResource= (MappedResourceFactoryImpl.java:106) > sun.reflect.GeneratedMethodAccessor930.invoke(Unknown Source) > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor= Impl.java:43) > java.lang.reflect.Method.invoke(Method.java:601) > org.richfaces.services.ServiceTracker$1.invoke(ServiceTracker.java:153) > $Proxy75.createResource(Unknown Source) > org.richfaces.resource.ResourceFactoryImpl.resolveMappedResource(Resourc= eFactoryImpl.java:393) > org.richfaces.resource.ResourceFactoryImpl.createMappedResource(Resource= FactoryImpl.java:360) > org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactor= yImpl.java:343) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:270) > org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandle= rImpl.java:280) > com.sun.faces.renderkit.html_basic.ScriptRenderer.encodeEnd(ScriptRender= er.java:102) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > org.richfaces.ui.core.ResourceRenderer.encodeResource(ResourceRenderer.j= ava:53) > org.richfaces.ui.core.ResourceRenderer.encodeDependentResources(Resource= Renderer.java:45) > org.richfaces.ui.core.ScriptsRenderer.encodeEnd(ScriptsRenderer.java:56) > org.richfaces.ui.core.UITransient.encodeEnd(UITransient.java:263) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > com.sun.faces.renderkit.html_basic.BodyRenderer.encodeEnd(BodyRenderer.j= ava:105) > javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:881) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) > javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) > com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(Fa= celetViewHandlingStrategy.java:439) > com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHand= ler.java:124) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper= .java:286) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.= java:120) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilt= er.java:93) > {code} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0486975263208354585==-- From jira-events at lists.jboss.org Wed Nov 27 06:33:06 2013 Content-Type: multipart/mixed; boundary="===============2151397624504319807==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 06:33:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============2151397624504319807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13388. ----------------------------- Resolution: Duplicate Issue [~jstefek], could you please verify? = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2151397624504319807==-- From jira-events at lists.jboss.org Wed Nov 27 06:33:06 2013 Content-Type: multipart/mixed; boundary="===============5902876018512305243==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 06:33:05 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============5902876018512305243== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927034#com= ment-12927034 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13388: --------------------------------- I believe this is duplicate of RF-13387 = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5902876018512305243==-- From jira-events at lists.jboss.org Wed Nov 27 06:33:06 2013 Content-Type: multipart/mixed; boundary="===============8945312819492700059==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 06:33:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============8945312819492700059== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13388: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8945312819492700059==-- From jira-events at lists.jboss.org Wed Nov 27 06:45:06 2013 Content-Type: multipart/mixed; boundary="===============4913338423485843905==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Wed, 27 Nov 2013 06:45:06 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192000@jira02.app.mwc.hst.phx2.redhat.com --===============4913338423485843905== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13389?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13389: ---------------------------- Assignee: Brian Leathem = > Showcase for RF 5, pick list rendering in firefox > ------------------------------------------------- > > Key: RF-13389 > URL: https://issues.jboss.org/browse/RF-13389 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: JBoss AS 7.1 > Firefox version 25.0 > Chrome version 31 > Reporter: Matej Novotny > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Attachments: Chrome_screenshot.png, Firefox_screenshot.png > > > When using Firefox (in my case version 25) and accessing a pick list page= in showcase(selects->r:pickList), the simple pick list does not render cor= rectly (see attached screenshot). However pick list with columns cause no p= roblems. > I tested it with Chrome where everything works correctly. > Also to make sure I rebuilded whole repository with dependencies not to h= ave any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4913338423485843905==-- From jira-events at lists.jboss.org Wed Nov 27 06:47:06 2013 Content-Type: multipart/mixed; boundary="===============8398658078052626374==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 27 Nov 2013 06:47:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============8398658078052626374== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13343: ---------------------------- Assignee: Juraj H=C3=BAska (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8398658078052626374==-- From jira-events at lists.jboss.org Wed Nov 27 06:47:06 2013 Content-Type: multipart/mixed; boundary="===============2395230527269964030==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Wed, 27 Nov 2013 06:47:06 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============2395230527269964030== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13343: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2395230527269964030==-- From jira-events at lists.jboss.org Wed Nov 27 07:08:06 2013 Content-Type: multipart/mixed; boundary="===============3979541469046309528==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 07:08:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============3979541469046309528== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek closed RF-13388. ---------------------------- Verified. closing. = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3979541469046309528==-- From jira-events at lists.jboss.org Wed Nov 27 07:08:06 2013 Content-Type: multipart/mixed; boundary="===============1331127852136355460==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 07:08:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============1331127852136355460== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927048#com= ment-12927048 ] = Ji=C5=99=C3=AD =C5=A0tefek commented on RF-13388: ---------------------------------- [~lfryc], yes it is a duplicate. = And fixed already, my fault. = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1331127852136355460==-- From jira-events at lists.jboss.org Wed Nov 27 08:18:05 2013 Content-Type: multipart/mixed; boundary="===============1455802117988436097==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Wed, 27 Nov 2013 08:18:05 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============1455802117988436097== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927075#com= ment-12927075 ] = Matej Novotny commented on RF-13186: ------------------------------------ I am trying to verify this issue since it is marked as resolved. So far the components render correctly and interact. However there is one p= roblem present in showcase which is mentioned and crossed out (don't know w= hy though) in this issue's description: = _"The form component needs to have a UIForm in its ancestry. Suggestion: en= close the necessary components within "_ Amongst the comments I didn't manage to find any other issue which would de= scribe this problem separately. Is there a reason why it was crossed out? Please let me know if this should be tracked elsewhere or has nothing to do= with this issue and I will resume the verification. You may come across the above mentioned warning with following components: * a4j:queue (just click Apply button) * a4j:outputPanel (switch to second tab - 'Auto update for h:messages compo= nent', fill out the fields and submit) * rich:graphValidator (fill out some passwords and store them) * rich:messages (since it uses a4j:outputPanel I believe) * rich:notify (first tab, just press Ajax Validate button) Steps to reproduce: * Build a components and showcase repos in respective branches * Deploy to JBoss AS 7.1 * See the components I mentioned earlier = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1455802117988436097==-- From jira-events at lists.jboss.org Wed Nov 27 08:44:06 2013 Content-Type: multipart/mixed; boundary="===============6229495230127911372==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Wed, 27 Nov 2013 08:44:05 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============6229495230127911372== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927082#com= ment-12927082 ] = Michal Petrov commented on RF-13186: ------------------------------------ [~manovotn], it's a bug in JSF, it only appears in Development stage. = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6229495230127911372==-- From jira-events at lists.jboss.org Wed Nov 27 10:15:07 2013 Content-Type: multipart/mixed; boundary="===============3008669659954128807==" MIME-Version: 1.0 From: Cody Lerum (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13390) Region fails to render after ajax request Date: Wed, 27 Nov 2013 10:15:06 -0500 Message-ID: In-Reply-To: JIRA.12526322.1385565192721@jira02.app.mwc.hst.phx2.redhat.com --===============3008669659954128807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Cody Lerum created RF-13390: ------------------------------- Summary: Region fails to render after ajax request Key: RF-13390 URL: https://issues.jboss.org/browse/RF-13390 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f0= d0 Wildfly 8.0.0.Beta2-SNAPSHOT Mojarra 2.2.4-jbossorg-1 20131017-1524 Reporter: Cody Lerum Fix For: 5.0.0.Alpha2 When {code} {code} A partial response seems to be generated with the correct content but the d= om is not updated -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3008669659954128807==-- From jira-events at lists.jboss.org Wed Nov 27 10:17:06 2013 Content-Type: multipart/mixed; boundary="===============0055067413941034445==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13354) Autocomplete: suggestions stay visible after input is cleared Date: Wed, 27 Nov 2013 10:17:06 -0500 Message-ID: In-Reply-To: JIRA.12525458.1384783692000@jira02.app.mwc.hst.phx2.redhat.com --===============0055067413941034445== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13354?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13354. ------------------------------ = > Autocomplete: suggestions stay visible after input is cleared > ------------------------------------------------------------- > > Key: RF-13354 > URL: https://issues.jboss.org/browse/RF-13354 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Metamer 5.0.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # type "ala" into input (several suggestions will appear) > # clear input, e.g. by using backspace key > result: > * the list with all available suggestions is displayed > * in 4.3.4.Final, the suggestions are *not* displayed when input is empty -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0055067413941034445==-- From jira-events at lists.jboss.org Wed Nov 27 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============5360507983354079253==" MIME-Version: 1.0 From: Cody Lerum (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 10:19:05 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450277@jira02.app.mwc.hst.phx2.redhat.com --===============5360507983354079253== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Cody Lerum created RF-13391: ------------------------------- Summary: jsf.ajax.addOnEvent not fired after r:ajax completes Key: RF-13391 URL: https://issues.jboss.org/browse/RF-13391 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha2 Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f0= d0 = Wildfly 8.0.0.Beta2-SNAPSHOT = Mojarra 2.2.4-jbossorg-1 20131017-1524 Reporter: Cody Lerum Unsure if this is a bug or a limiation of using the r:ajax but with f:ajax = I am able to listen for jsf.ajax events and for example {code} jsf.ajax.addOnEvent(function(data) { if (data.status =3D=3D 'success') addFormGroupClasses(); }); {code} This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5360507983354079253==-- From jira-events at lists.jboss.org Wed Nov 27 10:19:06 2013 Content-Type: multipart/mixed; boundary="===============0559694534060223444==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13365) push: cannot be disabled with ajax request Date: Wed, 27 Nov 2013 10:19:06 -0500 Message-ID: In-Reply-To: JIRA.12525697.1384953090000@jira02.app.mwc.hst.phx2.redhat.com --===============0559694534060223444== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13365?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13365. ------------------------------ = > push: cannot be disabled with ajax request > ------------------------------------------ > > Key: RF-13365 > URL: https://issues.jboss.org/browse/RF-13365 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: EAP 6.1, Glassfish 3.1.2.2 > FF 25, Chrome 31 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: regression > Fix For: 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > Worked in 4.3.4.Final. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0559694534060223444==-- From jira-events at lists.jboss.org Wed Nov 27 10:21:06 2013 Content-Type: multipart/mixed; boundary="===============8198712598294040968==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13371) Clarify and fix Push destroy logic Date: Wed, 27 Nov 2013 10:21:06 -0500 Message-ID: In-Reply-To: JIRA.12525811.1385042093000@jira02.app.mwc.hst.phx2.redhat.com --===============8198712598294040968== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13371?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13371. ------------------------------ Verified as part of RF-13365. = > Clarify and fix Push destroy logic > ---------------------------------- > > Key: RF-13371 > URL: https://issues.jboss.org/browse/RF-13371 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 5.0.0.Alpha2 > > > I need to comment on the approach I took for destroying the Push componen= t which follows approximately what Widget Factory does. > I have also found that the widget _destroy method isn't called at all, be= cause there is no such event as {{cleanDom}}. > richfaces.js throws {{beforeDomClean}} and {{afterDomClean}}. The foremos= t is the right event to listen for for component cleanup. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8198712598294040968==-- From jira-events at lists.jboss.org Wed Nov 27 11:26:06 2013 Content-Type: multipart/mixed; boundary="===============5386478204005230458==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Wed, 27 Nov 2013 11:26:05 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============5386478204005230458== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927154#com= ment-12927154 ] = Brian Leathem commented on RF-13186: ------------------------------------ Upstream issue: https://java.net/jira/browse/JAVASERVERFACES-2147 = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5386478204005230458==-- From jira-events at lists.jboss.org Wed Nov 27 12:10:06 2013 Content-Type: multipart/mixed; boundary="===============8019401053192250354==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Wed, 27 Nov 2013 12:10:06 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192000@jira02.app.mwc.hst.phx2.redhat.com --===============8019401053192250354== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13389?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927177#com= ment-12927177 ] = Brian Leathem commented on RF-13389: ------------------------------------ I am unable to reproduce this with a fresh build on firefox 25 (linux). [~= manovotn] would you please check this issue again? Try clearing your brows= er cache to make sure you are not using any old CSS files. = > Showcase for RF 5, pick list rendering in firefox > ------------------------------------------------- > > Key: RF-13389 > URL: https://issues.jboss.org/browse/RF-13389 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: JBoss AS 7.1 > Firefox version 25.0 > Chrome version 31 > Reporter: Matej Novotny > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha2 > > Attachments: Chrome_screenshot.png, Firefox_screenshot.png > > > When using Firefox (in my case version 25) and accessing a pick list page= in showcase(selects->r:pickList), the simple pick list does not render cor= rectly (see attached screenshot). However pick list with columns cause no p= roblems. > I tested it with Chrome where everything works correctly. > Also to make sure I rebuilded whole repository with dependencies not to h= ave any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8019401053192250354==-- From jira-events at lists.jboss.org Wed Nov 27 12:10:06 2013 Content-Type: multipart/mixed; boundary="===============1996534110276321148==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Wed, 27 Nov 2013 12:10:06 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192000@jira02.app.mwc.hst.phx2.redhat.com --===============1996534110276321148== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13389?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13389: ------------------------------- Assignee: Matej Novotny (was: Brian Leathem) = > Showcase for RF 5, pick list rendering in firefox > ------------------------------------------------- > > Key: RF-13389 > URL: https://issues.jboss.org/browse/RF-13389 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: JBoss AS 7.1 > Firefox version 25.0 > Chrome version 31 > Reporter: Matej Novotny > Assignee: Matej Novotny > Fix For: 5.0.0.Alpha2 > > Attachments: Chrome_screenshot.png, Firefox_screenshot.png > > > When using Firefox (in my case version 25) and accessing a pick list page= in showcase(selects->r:pickList), the simple pick list does not render cor= rectly (see attached screenshot). However pick list with columns cause no p= roblems. > I tested it with Chrome where everything works correctly. > Also to make sure I rebuilded whole repository with dependencies not to h= ave any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1996534110276321148==-- From jira-events at lists.jboss.org Wed Nov 27 12:10:07 2013 Content-Type: multipart/mixed; boundary="===============6304285082064953472==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13390) Region fails to render after ajax request Date: Wed, 27 Nov 2013 12:10:07 -0500 Message-ID: In-Reply-To: JIRA.12526322.1385565192000@jira02.app.mwc.hst.phx2.redhat.com --===============6304285082064953472== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13390?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13390: ------------------------------- Labels: jsf22 (was: ) = > Region fails to render after ajax request > ----------------------------------------- > > Key: RF-13390 > URL: https://issues.jboss.org/browse/RF-13390 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 > Wildfly 8.0.0.Beta2-SNAPSHOT > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Labels: jsf22 > Fix For: 4.3.5, 5.0.0.Alpha3 > > > When > {code} > > > > > > {code} > A partial response seems to be generated with the correct content but the= dom is not updated -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6304285082064953472==-- From jira-events at lists.jboss.org Wed Nov 27 12:10:07 2013 Content-Type: multipart/mixed; boundary="===============4396819323387497608==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13390) Region fails to render after ajax request Date: Wed, 27 Nov 2013 12:10:07 -0500 Message-ID: In-Reply-To: JIRA.12526322.1385565192000@jira02.app.mwc.hst.phx2.redhat.com --===============4396819323387497608== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13390?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13390: ------------------------------- Fix Version/s: 4.3.5 5.0.0.Alpha3 (was: 5.0.0.Alpha2) = > Region fails to render after ajax request > ----------------------------------------- > > Key: RF-13390 > URL: https://issues.jboss.org/browse/RF-13390 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 > Wildfly 8.0.0.Beta2-SNAPSHOT > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Fix For: 4.3.5, 5.0.0.Alpha3 > > > When > {code} > > > > > > {code} > A partial response seems to be generated with the correct content but the= dom is not updated -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4396819323387497608==-- From jira-events at lists.jboss.org Wed Nov 27 12:12:06 2013 Content-Type: multipart/mixed; boundary="===============3572973147854470309==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 12:12:06 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450000@jira02.app.mwc.hst.phx2.redhat.com --===============3572973147854470309== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13391?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13391: ------------------------------- Component/s: component-a4j-core = > jsf.ajax.addOnEvent not fired after r:ajax completes > ---------------------------------------------------- > > Key: RF-13391 > URL: https://issues.jboss.org/browse/RF-13391 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 = > Wildfly 8.0.0.Beta2-SNAPSHOT = > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Fix For: 4.3.5, 5.0.0.Alpha3 > > > Unsure if this is a bug or a limiation of using the r:ajax but with f:aja= x I am able to listen for jsf.ajax events and for example > {code} > jsf.ajax.addOnEvent(function(data) { > if (data.status =3D=3D 'success') > addFormGroupClasses(); > }); > {code} > This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3572973147854470309==-- From jira-events at lists.jboss.org Wed Nov 27 12:12:06 2013 Content-Type: multipart/mixed; boundary="===============4703214895197237391==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13390) Region fails to render after ajax request Date: Wed, 27 Nov 2013 12:12:05 -0500 Message-ID: In-Reply-To: JIRA.12526322.1385565192000@jira02.app.mwc.hst.phx2.redhat.com --===============4703214895197237391== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13390?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13390: ------------------------------- Component/s: component-a4j-core = > Region fails to render after ajax request > ----------------------------------------- > > Key: RF-13390 > URL: https://issues.jboss.org/browse/RF-13390 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 > Wildfly 8.0.0.Beta2-SNAPSHOT > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Labels: jsf22 > Fix For: 4.3.5, 5.0.0.Alpha3 > > > When > {code} > > > > > > {code} > A partial response seems to be generated with the correct content but the= dom is not updated -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4703214895197237391==-- From jira-events at lists.jboss.org Wed Nov 27 12:12:06 2013 Content-Type: multipart/mixed; boundary="===============1106136318156361825==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 12:12:05 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450000@jira02.app.mwc.hst.phx2.redhat.com --===============1106136318156361825== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13391?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13391: ------------------------------- Fix Version/s: 4.3.5 5.0.0.Alpha3 = > jsf.ajax.addOnEvent not fired after r:ajax completes > ---------------------------------------------------- > > Key: RF-13391 > URL: https://issues.jboss.org/browse/RF-13391 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 = > Wildfly 8.0.0.Beta2-SNAPSHOT = > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Fix For: 4.3.5, 5.0.0.Alpha3 > > > Unsure if this is a bug or a limiation of using the r:ajax but with f:aja= x I am able to listen for jsf.ajax events and for example > {code} > jsf.ajax.addOnEvent(function(data) { > if (data.status =3D=3D 'success') > addFormGroupClasses(); > }); > {code} > This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1106136318156361825==-- From jira-events at lists.jboss.org Wed Nov 27 12:12:06 2013 Content-Type: multipart/mixed; boundary="===============1969403055810465662==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 12:12:06 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450000@jira02.app.mwc.hst.phx2.redhat.com --===============1969403055810465662== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13391?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13391: ------------------------------- Fix Version/s: (was: 5.0.0.Alpha3) (was: 4.3.5) = > jsf.ajax.addOnEvent not fired after r:ajax completes > ---------------------------------------------------- > > Key: RF-13391 > URL: https://issues.jboss.org/browse/RF-13391 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 = > Wildfly 8.0.0.Beta2-SNAPSHOT = > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > > Unsure if this is a bug or a limiation of using the r:ajax but with f:aja= x I am able to listen for jsf.ajax events and for example > {code} > jsf.ajax.addOnEvent(function(data) { > if (data.status =3D=3D 'success') > addFormGroupClasses(); > }); > {code} > This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1969403055810465662==-- From jira-events at lists.jboss.org Wed Nov 27 12:14:05 2013 Content-Type: multipart/mixed; boundary="===============1826371723976663860==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 12:14:05 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450000@jira02.app.mwc.hst.phx2.redhat.com --===============1826371723976663860== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13391?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927179#com= ment-12927179 ] = Brian Leathem commented on RF-13391: ------------------------------------ [~clerum] this should work. Does it work for you on a JSF 2.1 platform? = > jsf.ajax.addOnEvent not fired after r:ajax completes > ---------------------------------------------------- > > Key: RF-13391 > URL: https://issues.jboss.org/browse/RF-13391 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 = > Wildfly 8.0.0.Beta2-SNAPSHOT = > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > > Unsure if this is a bug or a limiation of using the r:ajax but with f:aja= x I am able to listen for jsf.ajax events and for example > {code} > jsf.ajax.addOnEvent(function(data) { > if (data.status =3D=3D 'success') > addFormGroupClasses(); > }); > {code} > This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1826371723976663860==-- From jira-events at lists.jboss.org Wed Nov 27 12:14:06 2013 Content-Type: multipart/mixed; boundary="===============8204779011604501172==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13391) jsf.ajax.addOnEvent not fired after r:ajax completes Date: Wed, 27 Nov 2013 12:14:05 -0500 Message-ID: In-Reply-To: JIRA.12526323.1385565450000@jira02.app.mwc.hst.phx2.redhat.com --===============8204779011604501172== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13391?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13391: ------------------------------- Labels: waiting_on_user (was: ) = > jsf.ajax.addOnEvent not fired after r:ajax completes > ---------------------------------------------------- > > Key: RF-13391 > URL: https://issues.jboss.org/browse/RF-13391 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2 > Environment: RF 5 Snapshot: aa130b9c034ceb49814e0d409329828d8b81f= 0d0 = > Wildfly 8.0.0.Beta2-SNAPSHOT = > Mojarra 2.2.4-jbossorg-1 20131017-1524 > Reporter: Cody Lerum > Labels: waiting_on_user > > Unsure if this is a bug or a limiation of using the r:ajax but with f:aja= x I am able to listen for jsf.ajax events and for example > {code} > jsf.ajax.addOnEvent(function(data) { > if (data.status =3D=3D 'success') > addFormGroupClasses(); > }); > {code} > This code is called after completion of an f:ajax but not for an r:ajax -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8204779011604501172==-- From jira-events at lists.jboss.org Wed Nov 27 13:21:06 2013 Content-Type: multipart/mixed; boundary="===============5019338136753605759==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 13:21:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============5019338136753605759== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13388: ------------------------------- Fix Version/s: (was: 5.0.0.Alpha2) = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5019338136753605759==-- From jira-events at lists.jboss.org Wed Nov 27 13:21:06 2013 Content-Type: multipart/mixed; boundary="===============1881584155114970591==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 13:21:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============1881584155114970591== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-13388: -------------------------------- Assignee: (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Tr-opening to correct fixVerison = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1881584155114970591==-- From jira-events at lists.jboss.org Wed Nov 27 13:21:07 2013 Content-Type: multipart/mixed; boundary="===============8534839676219356854==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13388) autocomplete, orderingList, picklist: js error on submit Date: Wed, 27 Nov 2013 13:21:06 -0500 Message-ID: In-Reply-To: JIRA.12526250.1385545552000@jira02.app.mwc.hst.phx2.redhat.com --===============8534839676219356854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13388?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem closed RF-13388. ------------------------------ Resolution: Done = > autocomplete, orderingList, picklist: js error on submit > -------------------------------------------------------- > > Key: RF-13388 > URL: https://issues.jboss.org/browse/RF-13388 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8534839676219356854==-- From jira-events at lists.jboss.org Wed Nov 27 15:15:06 2013 Content-Type: multipart/mixed; boundary="===============6444891985512760433==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Wed, 27 Nov 2013 15:15:06 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============6444891985512760433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927212#com= ment-12927212 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13251: --------------------------------- Focus (and FocusManager) works with any [tabbable|http://api.jqueryui.com/t= abbable-selector/] input including autocomplete. I have checked on a modified sample in richfaces-showcase using focus-prese= rving approach: {code} = = {code} When you hit commandButton, the autocomplete is re-rendered and rich:focus = then brings focus back to the component thas was focused before the request= (autocomplete). = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6444891985512760433==-- From jira-events at lists.jboss.org Wed Nov 27 15:17:05 2013 Content-Type: multipart/mixed; boundary="===============0734810049264944686==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Wed, 27 Nov 2013 15:17:05 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============0734810049264944686== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927213#com= ment-12927213 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13251: --------------------------------- Immo, could you please clarify in what aspects is your usage different or p= rovide some sample of usage? I know you use FocusManager and you would probably do something like {{focu= sManager.focus("autocomplete")}} but that should at the end work very simil= ar to my sample above. = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0734810049264944686==-- From jira-events at lists.jboss.org Wed Nov 27 15:17:06 2013 Content-Type: multipart/mixed; boundary="===============6437857137362165892==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Wed, 27 Nov 2013 15:17:06 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============6437857137362165892== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13251: ---------------------------- Labels: waiting_on_user (was: ) = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6437857137362165892==-- From jira-events at lists.jboss.org Thu Nov 28 02:08:06 2013 Content-Type: multipart/mixed; boundary="===============0574680879889951590==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13389) Showcase for RF 5, pick list rendering in firefox Date: Thu, 28 Nov 2013 02:08:05 -0500 Message-ID: In-Reply-To: JIRA.12526251.1385546192000@jira02.app.mwc.hst.phx2.redhat.com --===============0574680879889951590== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13389?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13389. ------------------------------ Resolution: Cannot Reproduce Bug Ok, I double checked everything before I reported this but I forgot to clea= r the cache. It did the trick. Closing as unreproducible and sorry for the bother.. = > Showcase for RF 5, pick list rendering in firefox > ------------------------------------------------- > > Key: RF-13389 > URL: https://issues.jboss.org/browse/RF-13389 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Environment: JBoss AS 7.1 > Firefox version 25.0 > Chrome version 31 > Reporter: Matej Novotny > Assignee: Matej Novotny > Fix For: 5.0.0.Alpha2 > > Attachments: Chrome_screenshot.png, Firefox_screenshot.png > > > When using Firefox (in my case version 25) and accessing a pick list page= in showcase(selects->r:pickList), the simple pick list does not render cor= rectly (see attached screenshot). However pick list with columns cause no p= roblems. > I tested it with Chrome where everything works correctly. > Also to make sure I rebuilded whole repository with dependencies not to h= ave any outdated artifacts. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0574680879889951590==-- From jira-events at lists.jboss.org Thu Nov 28 03:50:07 2013 Content-Type: multipart/mixed; boundary="===============3994770696525528070==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 03:50:05 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============3994770696525528070== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927273#com= ment-12927273 ] = Matej Novotny commented on RF-13186: ------------------------------------ Thanks for quick response and link. I resumed verifying and came across one more thing. It only occurs when _resource optimization_ is set to _False_ and I was als= o using a different _project stage_ to avoid the above mentioned JSF bug. {code} javax.faces.PROJECT_STAGE Production {code} Using these settings go to [inputs->inputNumberSlider|http://localhost:8080= /showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3Dbl= ueSky] and try to interact with the component. There is no response and in = a web console is a JS type error (with a //TODO note attached to that line = of code). {code} Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 {code} The error refers to [this|https://github.com/richfaces4/components/blob/4.5= .x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSlid= er.js#L145] line on GitHub. Otherwise I found no problems/errors/warnings. = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3994770696525528070==-- From jira-events at lists.jboss.org Thu Nov 28 04:03:06 2013 Content-Type: multipart/mixed; boundary="===============7093753500786537801==" MIME-Version: 1.0 From: Andreas Hahne (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13392) TreeSelectionChangeEvent always triggered during Apply Request Phase Date: Thu, 28 Nov 2013 04:03:05 -0500 Message-ID: In-Reply-To: JIRA.12526404.1385629372972@jira02.app.mwc.hst.phx2.redhat.com --===============7093753500786537801== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Andreas Hahne created RF-13392: ---------------------------------- Summary: TreeSelectionChangeEvent always triggered during Appl= y Request Phase Key: RF-13392 URL: https://issues.jboss.org/browse/RF-13392 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tree Affects Versions: 4.3.3 Reporter: Andreas Hahne When selecting a {{rich:treeNode}}, the corresponding {{selectionChangeList= ener}} is triggered during Apply Request Phase, no matter if the immediate = attribute is set to true or false. This leads to a weird behaviour in our application where an output panel is= filled with the data selected in the tree. Both components are located in = the same {{h:form}} element (in contrast to the showcase on the RF homepage= ). While the value of the {{h:outputText}} component is updated correctly, = the one in the {{h:inputText}} is not because it is overwritten by the old = value during Update Model Phase. If the change was processed during Invoke = Application Phase this would not occur most likely. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7093753500786537801==-- From jira-events at lists.jboss.org Thu Nov 28 04:19:06 2013 Content-Type: multipart/mixed; boundary="===============2277382762342931389==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13225) RF5 build fails to render optimized resources Date: Thu, 28 Nov 2013 04:19:05 -0500 Message-ID: In-Reply-To: JIRA.12501617.1380205928000@jira02.app.mwc.hst.phx2.redhat.com --===============2277382762342931389== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13225?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13225. ------------------------------ Verified = > RF5 build fails to render optimized resources > --------------------------------------------- > > Key: RF-13225 > URL: https://issues.jboss.org/browse/RF-13225 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 5.0.0.Alpha2 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 days > Remaining Estimate: 2 days > > The improvements for 4.5.x along with resource handling improvements intr= oduced several issues: > * framework/pom.xml resource optimization > {code} > > static-resources > process-classes > > java > > > > --classpathDir > ${project.build.outputDirectory} > --output > ${optimized.resources.directory}/Static/ > --prefix > ${optimized.resources.prefix}/Static/ > --mapping ${optimized.resources.mapping}/Static.properti= es > --skins > ${optimized.resources.skins} > --excludeFile > ^javax.faces > excludeFile > ^org.richfaces.ui.images.* > {code} > {panel} > the exclusion exists for classes like {{org/richfaces/ui/images/BaseGradi= ent.java}} which end up being rendered as images, with the change to image = resources in RF5 this exclusion causes the resource handling to fail > {panel} > * CSS rendering from *.ecss > {code} > #{richSkin.imageUrl('inputBackgroundImage.png')} > {code} > {panel} > the imageUrl method doesn't return the proper path, e.g. = > {{../org.richfaces.ui.images/gradientA.png}} (proper) = > instead of = > {{%skin%/org.richfaces.ui.images/gradientA.png}} (current) > {panel} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2277382762342931389==-- From jira-events at lists.jboss.org Thu Nov 28 04:21:06 2013 Content-Type: multipart/mixed; boundary="===============7291935553398309695==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13224) RF 4.5 build fails to render optimized resources Date: Thu, 28 Nov 2013 04:21:06 -0500 Message-ID: In-Reply-To: JIRA.12501539.1380130905000@jira02.app.mwc.hst.phx2.redhat.com --===============7291935553398309695== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13224. ------------------------------ Verified = > RF 4.5 build fails to render optimized resources > ------------------------------------------------ > > Key: RF-13224 > URL: https://issues.jboss.org/browse/RF-13224 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: resource handling > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1 > > > -I believe it's caused by:- > https://github.com/richfaces/richfaces/commit/46b03d226ae420bcbc8abd7f79e= d5790f2bb6dc4 > This is no longer an issue. > Current issues: > * packed.js is not generated, .js files do not seem to be handled by the = plugin at all > * some images are not rendered, e.g. gradientA.png (used in several compo= nents for background), it is not defined in resource-mappings.properties -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7291935553398309695==-- From jira-events at lists.jboss.org Thu Nov 28 04:29:06 2013 Content-Type: multipart/mixed; boundary="===============6185311518468587158==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13229) Inspect RF 4.5 Java classes for occurences of 'import org.richfaces.ui' Date: Thu, 28 Nov 2013 04:29:05 -0500 Message-ID: In-Reply-To: JIRA.12501889.1380609002000@jira02.app.mwc.hst.phx2.redhat.com --===============6185311518468587158== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13229?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13229. ------------------------------ Verified = > Inspect RF 4.5 Java classes for occurences of 'import org.richfaces.ui' > ----------------------------------------------------------------------- > > Key: RF-13229 > URL: https://issues.jboss.org/browse/RF-13229 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6185311518468587158==-- From jira-events at lists.jboss.org Thu Nov 28 04:45:06 2013 Content-Type: multipart/mixed; boundary="===============6765174299079450574==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13280) RF 5 packed resources cause conflict in RF 4.5 Date: Thu, 28 Nov 2013 04:45:06 -0500 Message-ID: In-Reply-To: JIRA.12508458.1382446287000@jira02.app.mwc.hst.phx2.redhat.com --===============6765174299079450574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13280?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13280. ------------------------------ Verified = > RF 5 packed resources cause conflict in RF 4.5 > ---------------------------------------------- > > Key: RF-13280 > URL: https://issues.jboss.org/browse/RF-13280 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > > Showcase uses resource from RF 5 core instead of using the proper ones fr= om RF 4.5 components. (e.g. packed.js) > The solution is to split core and ui resources in RF 5. RF 4.5 will only = generate ui resources and use core resources from RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6765174299079450574==-- From jira-events at lists.jboss.org Thu Nov 28 04:49:06 2013 Content-Type: multipart/mixed; boundary="===============2217981003649410306==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13362) ajax.reslib and base-component.reslib conflicts with RF 5.0 versions Date: Thu, 28 Nov 2013 04:49:05 -0500 Message-ID: In-Reply-To: JIRA.12525577.1384871238000@jira02.app.mwc.hst.phx2.redhat.com --===============2217981003649410306== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13362?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13362. ------------------------------ Verified = > ajax.reslib and base-component.reslib conflicts with RF 5.0 versions > -------------------------------------------------------------------- > > Key: RF-13362 > URL: https://issues.jboss.org/browse/RF-13362 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2217981003649410306==-- From jira-events at lists.jboss.org Thu Nov 28 04:57:05 2013 Content-Type: multipart/mixed; boundary="===============5213244221314250663==" MIME-Version: 1.0 From: Immo Benjes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Thu, 28 Nov 2013 04:57:05 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============5213244221314250663== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927298#com= ment-12927298 ] = Immo Benjes commented on RF-13251: ---------------------------------- Hi Luk=C3=A1=C5=A1, If you have a autocomplete component with the id=3D"autocomplete" the actua= l generated code does not have an input field with the id=3D"autocomplete".= It has some subIds. The preserve focus might work but if you want to assig= n the focus with the focusManager it does not work. I have tried using focu= sManager.focus("autocomplete") (does not work) and focusManager.focus("auto= complete_input") (or similar can't remember the subID the actual input fiel= d has) but this doesn't work either. = = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5213244221314250663==-- From jira-events at lists.jboss.org Thu Nov 28 05:03:06 2013 Content-Type: multipart/mixed; boundary="===============4211245895817027991==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13265) Add RichFaces UI 4.5 dist module for generating ZIP distribution Date: Thu, 28 Nov 2013 05:03:06 -0500 Message-ID: In-Reply-To: JIRA.12503108.1381857890000@jira02.app.mwc.hst.phx2.redhat.com --===============4211245895817027991== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13265?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-13265. ------------------------------ Verified, ZIP distribution is created correctly. = > Add RichFaces UI 4.5 dist module for generating ZIP distribution > ---------------------------------------------------------------- > > Key: RF-13265 > URL: https://issues.jboss.org/browse/RF-13265 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.5.0.Alpha1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > Original Estimate: 45 minutes > Remaining Estimate: 45 minutes > > It should distribute at least following artifacts: > - richfaces-components-a4j > - richfaces-components-rich -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4211245895817027991==-- From jira-events at lists.jboss.org Thu Nov 28 05:18:06 2013 Content-Type: multipart/mixed; boundary="===============6287570845117409238==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Thu, 28 Nov 2013 05:18:05 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============6287570845117409238== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927304#com= ment-12927304 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13251: --------------------------------- Hey Immo, you shouldn't try to put focus on input itself, but rather use the componen= t. Focus component itself will determine what to focus inside the component. Here is the alghoritm: 1. determine {{focusCandidates}} (that's what FocusManager, focus preserve = or others do) 2. look for {{:tabbable}} elements under candidates 3. select first {{:tabbable}} candidate element If we have similar DOM: {code}
{code} you have focus candidate {{autocomplete}} (known on server as a client ID) = (step 1), and you build list of actual candidate elements as {{[ 'autocompleteInput' = ]}} (step 2), and use the first of them: {{autocompleteInput}} (step 3). See the implementation here: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/misc/focus/focus.js#L77 ---- In other words, use 'autocomplete' as a focus ID. You can access RichFaces client-side log to see what's happening. = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6287570845117409238==-- From jira-events at lists.jboss.org Thu Nov 28 05:18:06 2013 Content-Type: multipart/mixed; boundary="===============1896412918920972688==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Thu, 28 Nov 2013 05:18:06 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============1896412918920972688== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927305#com= ment-12927305 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13251: --------------------------------- Immo, could you please give it one more try and see whether {{focusManager.= focus("autocomplete")}} works or not? = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1896412918920972688==-- From jira-events at lists.jboss.org Thu Nov 28 05:18:06 2013 Content-Type: multipart/mixed; boundary="===============6977108039089418867==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete Date: Thu, 28 Nov 2013 05:18:06 -0500 Message-ID: In-Reply-To: JIRA.12502430.1381226839000@jira02.app.mwc.hst.phx2.redhat.com --===============6977108039089418867== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13251?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927304#com= ment-12927304 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13251 at 11/28/13 5:18 AM: ----------------------------------------------------------- Hey Immo, you shouldn't try to put focus on input itself, but rather use the componen= t. Focus component itself will determine what to focus inside the target co= mponent. Here is the alghoritm: 1. determine {{focusCandidates}} (that's what FocusManager, focus preserve = or others do) 2. look for {{:tabbable}} elements under candidates 3. select first {{:tabbable}} candidate element If we have similar DOM: {code}
{code} you have focus candidate {{autocomplete}} (known on server as a client ID) = (step 1), and you build list of actual candidate elements as {{[ 'autocompleteInput' = ]}} (step 2), and use the first of them: {{autocompleteInput}} (step 3). See the implementation here: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/misc/focus/focus.js#L77 ---- In other words, use 'autocomplete' as a focus ID. You can access RichFaces client-side log to see what's happening. = was (Author: lfryc): Hey Immo, you shouldn't try to put focus on input itself, but rather use the componen= t. Focus component itself will determine what to focus inside the component. Here is the alghoritm: 1. determine {{focusCandidates}} (that's what FocusManager, focus preserve = or others do) 2. look for {{:tabbable}} elements under candidates 3. select first {{:tabbable}} candidate element If we have similar DOM: {code}
{code} you have focus candidate {{autocomplete}} (known on server as a client ID) = (step 1), and you build list of actual candidate elements as {{[ 'autocompleteInput' = ]}} (step 2), and use the first of them: {{autocompleteInput}} (step 3). See the implementation here: https://github.com/richfaces/richfaces/blob/master/framework/src/main/resou= rces/META-INF/resources/org.richfaces/misc/focus/focus.js#L77 ---- In other words, use 'autocomplete' as a focus ID. You can access RichFaces client-side log to see what's happening. = > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI compone= nts like h:inputText or h:selectOneMenu but not on more complex components = like rich:autocomplete. > It would be good if FocusManager could support complex components or 'rea= l' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to sel= ect the entity and add it to a list. After each ajax submit the focus gets = lost and the user has to manually set the focus back to the autocomplete in= put field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6977108039089418867==-- From jira-events at lists.jboss.org Thu Nov 28 05:31:06 2013 Content-Type: multipart/mixed; boundary="===============2508405168866602661==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12930) Rename RichFaces.$ to less ambiguous RichFaces.component Date: Thu, 28 Nov 2013 05:31:06 -0500 Message-ID: In-Reply-To: JIRA.12489763.1366251374000@jira02.app.mwc.hst.phx2.redhat.com --===============2508405168866602661== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12930?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny closed RF-12930. ------------------------------ Verified = > Rename RichFaces.$ to less ambiguous RichFaces.component > -------------------------------------------------------- > > Key: RF-12930 > URL: https://issues.jboss.org/browse/RF-12930 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: core > Reporter: Brian Leathem > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > Possibly rename it to RichFaces.findComponent -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2508405168866602661==-- From jira-events at lists.jboss.org Thu Nov 28 06:32:05 2013 Content-Type: multipart/mixed; boundary="===============1071023094117378225==" MIME-Version: 1.0 From: Andreas Hahne (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13392) TreeSelectionChangeEvent always triggered during Apply Request Phase Date: Thu, 28 Nov 2013 06:32:05 -0500 Message-ID: In-Reply-To: JIRA.12526404.1385629372000@jira02.app.mwc.hst.phx2.redhat.com --===============1071023094117378225== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13392?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Andreas Hahne updated RF-13392: ------------------------------- Attachment: tree.zip Attached a simple Maven project demonstrating the effect. = > TreeSelectionChangeEvent always triggered during Apply Request Phase > -------------------------------------------------------------------- > > Key: RF-13392 > URL: https://issues.jboss.org/browse/RF-13392 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.3 > Reporter: Andreas Hahne > Labels: richfaces, selectionChangeListener, tree > Attachments: tree.zip > > > When selecting a {{rich:treeNode}}, the corresponding {{selectionChangeLi= stener}} is triggered during Apply Request Phase, no matter if the immediat= e attribute is set to true or false. > This leads to a weird behaviour in our application where an output panel = is filled with the data selected in the tree. Both components are located i= n the same {{h:form}} element (in contrast to the showcase on the RF homepa= ge). While the value of the {{h:outputText}} component is updated correctly= , the one in the {{h:inputText}} is not because it is overwritten by the ol= d value during Update Model Phase. If the change was processed during Invok= e Application Phase this would not occur most likely. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1071023094117378225==-- From jira-events at lists.jboss.org Thu Nov 28 08:06:06 2013 Content-Type: multipart/mixed; boundary="===============8892523654413515563==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 08:06:05 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898379@jira02.app.mwc.hst.phx2.redhat.com --===============8892523654413515563== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Ji=C5=99=C3=AD =C5=A0tefek created RF-13393: -------------------------------- Summary: orderingList: JavaScript api is bound to wrong element Key: RF-13393 URL: https://issues.jboss.org/browse/RF-13393 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 5.0.0.Alpha2 Reporter: Ji=C5=99=C3=AD =C5=A0tefek Priority: Critical -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8892523654413515563==-- From jira-events at lists.jboss.org Thu Nov 28 08:10:06 2013 Content-Type: multipart/mixed; boundary="===============6050260430272451549==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 08:10:06 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============6050260430272451549== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek updated RF-13393: ----------------------------- Fix Version/s: 5.0.0.Alpha2 = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6050260430272451549==-- From jira-events at lists.jboss.org Thu Nov 28 08:26:06 2013 Content-Type: multipart/mixed; boundary="===============4610224502489048002==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 08:26:06 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============4610224502489048002== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13393: ---------------------------------- Assignee: Michal Petrov = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4610224502489048002==-- From jira-events at lists.jboss.org Thu Nov 28 08:32:06 2013 Content-Type: multipart/mixed; boundary="===============1668038096404145687==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 08:32:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============1668038096404145687== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny reopened RF-12224: -------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Simone Cinti) I am trying to verify this issue, however this feature doesn't seem to work. I only tested it manually yet (started working on some automated tests atm,= that will take me some time I guess) but the result is following: * You are able to SELECT (in a file manager) as many files as you like (OK) * All these files will be displayed correctly (OK) * As you try to upload them progress bars pop up and then you see "Done" (O= K) * Filters works (detects which files to accept and which to decline) (OK) * *However then you check the uploaded files (second column, loading all up= loaded files from bean) and only the first of the files is actually uploade= d (ERROR)* = Steps to reproduce: * Use Metamer or Showcase for RF 4.5 (both work the same) * Deploy it to JBoss AS 7.1 * See [Metamer|http://localhost:8080/metamer/faces/components/richFileUploa= d/simple.xhtml] or [Showcase|http://localhost:8080/showcase/richfaces/compo= nent-sample.jsf?demo=3DfileUpload&skin=3DblueSky] page for upload * Get some (preferably small) files you can upload * Add them all in one addition and press Upload * See the "Uploaded files" section - only one file gets uploaded _NOTE: In Showcase there is limitation to GIF, JPG, BMP, PNG and the maximu= m size of each file must not exceed 100kB, so I suggest reproducing with Me= tamer_ *Addition:* If we are implementing this feature in 4.x is there a reason wh= y this is not present in RF 5.x (tested with 5.x showcase)? = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1668038096404145687==-- From jira-events at lists.jboss.org Thu Nov 28 08:38:06 2013 Content-Type: multipart/mixed; boundary="===============4070786168519830415==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 08:38:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============4070786168519830415== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Matej Novotny reopened RF-13186: -------------------------------- = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4070786168519830415==-- From jira-events at lists.jboss.org Thu Nov 28 09:02:06 2013 Content-Type: multipart/mixed; boundary="===============0494316740292105603==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Thu, 28 Nov 2013 09:02:05 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291836@jira02.app.mwc.hst.phx2.redhat.com --===============0494316740292105603== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13394: ---------------------------------- Summary: Toggle control: attributes targetItem and targetPanel= don't work Key: RF-13394 URL: https://issues.jboss.org/browse/RF-13394 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-panels-layout-themes, regression Affects Versions: 4.5.0.Alpha1 Environment: RichFaces 4.5.0-SNAPSHOT Metamer 4.5.0-SNAPSHOT EAP 6.1.1 Mojarra 2.1.19 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 31.0.1650.57 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chToggleControl/accordion.xhtml # set targetPanel=3Dpanel2 # set targetItem=3Ditem3 # click on "universal toggle control" button result: * nothing happens * third item on second panel should be active * when you change targetPanel and/or targetItem and press the button again,= it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0494316740292105603==-- From jira-events at lists.jboss.org Thu Nov 28 09:02:06 2013 Content-Type: multipart/mixed; boundary="===============3353212368397987900==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 09:02:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============3353212368397987900== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13186: ------------------------------- Fix Version/s: (was: 4.5.0.Alpha1) = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3353212368397987900==-- From jira-events at lists.jboss.org Thu Nov 28 09:02:06 2013 Content-Type: multipart/mixed; boundary="===============1772234248649697342==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 09:02:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============1772234248649697342== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13186: ------------------------------- Affects Version/s: 4.5.0.Alpha1 = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1772234248649697342==-- From jira-events at lists.jboss.org Thu Nov 28 09:06:06 2013 Content-Type: multipart/mixed; boundary="===============6539752751456512012==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 09:06:05 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============6539752751456512012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13186: ------------------------------- Fix Version/s: 4.5.0.Alpha1 = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6539752751456512012==-- From jira-events at lists.jboss.org Thu Nov 28 09:18:06 2013 Content-Type: multipart/mixed; boundary="===============1791475949021708753==" MIME-Version: 1.0 From: Michal Petrov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 09:18:05 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============1791475949021708753== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927372#com= ment-12927372 ] = Michal Petrov commented on RF-13393: ------------------------------------ The widget expects to be called directly on a list, but the CDK renders a l= ist wrapped in a div. Now, do we need that wrapper? I seems to work fine wi= thout it (tried it in showcase). = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1791475949021708753==-- From jira-events at lists.jboss.org Thu Nov 28 09:34:06 2013 Content-Type: multipart/mixed; boundary="===============6073516685850723782==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 09:34:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============6073516685850723782== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927377#com= ment-12927377 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13186: --------------------------------- [~manovotn], could you please create a nw issue? This one's history is litt= le bit polluted yet. = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6073516685850723782==-- From jira-events at lists.jboss.org Thu Nov 28 09:38:06 2013 Content-Type: multipart/mixed; boundary="===============3160963765821664949==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 09:38:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============3160963765821664949== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927379#com= ment-12927379 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12224: --------------------------------- {quote} If we are implementing this feature in 4.x is there a reason why this is n= ot present in RF 5.x (tested with 5.x showcase)? {quote} [~manovotn] that's because we haven't yet established a process where we po= rt patches for 4.5 to 5.0 (even though we did so for 4.3). Please create an= issue to identify patches that needs to be ported from 4.5 to 5.0. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3160963765821664949==-- From jira-events at lists.jboss.org Thu Nov 28 09:48:07 2013 Content-Type: multipart/mixed; boundary="===============7195709060577494751==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Thu, 28 Nov 2013 09:48:07 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061591@jira02.app.mwc.hst.phx2.redhat.com --===============7195709060577494751== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matej Novotny created RF-13395: ---------------------------------- Summary: Showcase 4.5.x, input number slider Key: RF-13395 URL: https://issues.jboss.org/browse/RF-13395 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.5.0.Alpha1 Environment: JBoss AS 7.1 Firefox 25 Reporter: Matej Novotny Fix For: 4.5.0.Alpha1 This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. It is about a RF 4.5.x Showcase. The bug only occurs when _resource optimization_ is set to _False_ and I wa= s also using a different _project stage_ to avoid JSF bug mentioned in RF-1= 3186. {code} javax.faces.PROJECT_STAGE Production {code} Using these settings go to [inputs->inputNumberSlider|http://localhost:8080= /showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3Dbl= ueSky] and try to interact with the component. There is no response and in = a web console is a JS type error (with a //TODO note attached to that line = of code). {code} Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 {code} The error refers to [this|https://github.com/richfaces4/components/blob/4.5= .x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSlid= er.js#L145] line on GitHub. Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7195709060577494751==-- From jira-events at lists.jboss.org Thu Nov 28 09:50:07 2013 Content-Type: multipart/mixed; boundary="===============8305549219123904816==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 09:50:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============8305549219123904816== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927386#com= ment-12927386 ] = Matej Novotny commented on RF-13186: ------------------------------------ [~lfryc], the issue can be found [here|https://issues.jboss.org/browse/RF-1= 3395]. = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8305549219123904816==-- From jira-events at lists.jboss.org Thu Nov 28 09:52:06 2013 Content-Type: multipart/mixed; boundary="===============3776021650209749778==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Thu, 28 Nov 2013 09:52:06 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============3776021650209749778== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927389#com= ment-12927389 ] = Matej Novotny commented on RF-13395: ------------------------------------ Linked as "Cloned from". = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3776021650209749778==-- From jira-events at lists.jboss.org Thu Nov 28 10:00:07 2013 Content-Type: multipart/mixed; boundary="===============9082552790207418687==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Identify patches that needs to be ported from 4.5 to 5.0. Date: Thu, 28 Nov 2013 10:00:06 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688125@jira02.app.mwc.hst.phx2.redhat.com --===============9082552790207418687== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Matej Novotny created RF-13396: ---------------------------------- Summary: Identify patches that needs to be ported from 4.5 to = 5.0. Key: RF-13396 URL: https://issues.jboss.org/browse/RF-13396 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 4.5-Tracking, 5-Tracking Reporter: Matej Novotny Identify what changes/features need to be ported from RF 4.5 TO RF 5. Example of such feature would be uploading multiple files using rich:fileUp= load ([request|https://issues.jboss.org/browse/RF-12224]) If all feature requests are listed in JIRA it would be sufficient to go tho= ugh the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9082552790207418687==-- From jira-events at lists.jboss.org Thu Nov 28 10:02:06 2013 Content-Type: multipart/mixed; boundary="===============1492458321891131858==" MIME-Version: 1.0 From: Matej Novotny (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 10:02:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============1492458321891131858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927394#com= ment-12927394 ] = Matej Novotny commented on RF-12224: ------------------------------------ Alright I created an issue [here|https://issues.jboss.org/browse/RF-13396]. Back to this bug, when I manage to write some tests I will link them here s= o we know what exactly is failing. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1492458321891131858==-- From jira-events at lists.jboss.org Thu Nov 28 10:10:06 2013 Content-Type: multipart/mixed; boundary="===============0217809419964321990==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13186) Showcase 4.5.x fails Date: Thu, 28 Nov 2013 10:10:06 -0500 Message-ID: In-Reply-To: JIRA.12500422.1378823872000@jira02.app.mwc.hst.phx2.redhat.com --===============0217809419964321990== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13186?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13186. ----------------------------- Resolution: Done Thanks Matej, I will resolve this one then. = > Showcase 4.5.x fails > -------------------- > > Key: RF-13186 > URL: https://issues.jboss.org/browse/RF-13186 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > [https://github.com/michpetrov/richfaces/tree/showcase-4.5.x/examples/sho= wcase] - showcase 4.5 > [https://github.com/richfaces4/components/tree/4.5.x] - 4.5.x components > [https://github.com/richfaces4/dev-examples/tree/4.5.x] - 4.5 dev-examples > Builds and deploys fine. > Examples that do not work: > * -several examples (e.g. actionListener) produce "The form component nee= ds to have a UIForm in its ancestry. Suggestion: enclose the necessary comp= onents within "- > * validation - fails because rf.rf4.ui.Message is not defined, the resour= ce is not being included due to resource optimization > * trees/rich:tree - missing =E2=80=A6/javax.faces.resource/node_icon.gif.= jsf?ln=3Dorg.richfaces > * menus/rich:contextMenu and rich:dropDownMenu - not working, probably fo= r the same reason as validators (missing proper javascript resource) > * inputs/rich:inplaceInput - ditto > * selects/rich:inplaceSelect - ditto > * output/rich:tooltip - ditto > When resource optimization some components (dataTables) are missing backg= round image causing a badly generated CSS. {{background-image: url()}} > h5. resource optimization turned off > h6. Issue with Validator > - org.richfaces.validator.FacesObjectDescriptor.getMessage() > - collision between RF4.5 and RF5 > the interface is the same in both versions but the Message class is i= n different packages in the two > h6. Issue with menus > - org.richfaces.renderkit.html.MenuItemRendererBase.getUtils() > - probably the same problem -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0217809419964321990==-- From jira-events at lists.jboss.org Thu Nov 28 10:10:07 2013 Content-Type: multipart/mixed; boundary="===============7327366924383324423==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 10:10:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============7327366924383324423== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927399#com= ment-12927399 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12224: --------------------------------- Thanks Matej, we will look into the fileupload issues you mentioned shortly. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7327366924383324423==-- From jira-events at lists.jboss.org Thu Nov 28 10:18:05 2013 Content-Type: multipart/mixed; boundary="===============4158557572405845688==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Thu, 28 Nov 2013 10:18:05 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============4158557572405845688== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13394: ------------------------------- Fix Version/s: 4.5.0.Alpha1 = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.5.0.Alpha1 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4158557572405845688==-- From jira-events at lists.jboss.org Thu Nov 28 10:24:06 2013 Content-Type: multipart/mixed; boundary="===============7215022614814364053==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Identify patches that needs to be ported from 4.5 to 5.0. Date: Thu, 28 Nov 2013 10:24:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============7215022614814364053== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927402#com= ment-12927402 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13396: --------------------------------- There are visible here: https://github.com/richfaces4/components/commits/4.5.x?page=3D4 = > Identify patches that needs to be ported from 4.5 to 5.0. > --------------------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7215022614814364053==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:09 2013 Content-Type: multipart/mixed; boundary="===============4523644559040394858==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Thu, 28 Nov 2013 12:00:07 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============4523644559040394858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13395: ------------------------------- Original Estimate: 30 minutes Remaining Estimate: 30 minutes = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4523644559040394858==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============6330851332022341425==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Thu, 28 Nov 2013 12:00:08 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============6330851332022341425== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13394: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6330851332022341425==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============3513390616029508508==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Thu, 28 Nov 2013 12:00:08 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============3513390616029508508== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13343: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3513390616029508508==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============4059829876732791297==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Thu, 28 Nov 2013 12:00:07 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============4059829876732791297== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13394: ------------------------------- Original Estimate: 1 hour Remaining Estimate: 1 hour = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4059829876732791297==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============2841050331269318903==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13343) Page Fragments: Re-implement setupFragmentFromWidget() methods using component options access Date: Thu, 28 Nov 2013 12:00:07 -0500 Message-ID: In-Reply-To: JIRA.12525011.1384357195000@jira02.app.mwc.hst.phx2.redhat.com --===============2841050331269318903== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13343?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13343: ------------------------------- Original Estimate: 2 hours Remaining Estimate: 2 hours = > Page Fragments: Re-implement setupFragmentFromWidget() methods using comp= onent options access > -------------------------------------------------------------------------= -------------------- > > Key: RF-13343 > URL: https://issues.jboss.org/browse/RF-13343 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: page-fragments > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Juraj H=C3=BAska > Fix For: 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > As we have discussed in RF-13335, we have two options available for acces= sing component options: > * component uses {{BaseComponent}} (RF4 components) > {code} > RichFaces.component("j_idt108").options > {code} > * component uses {{jQuery UI Widget Factory}} (RF5 components) > {code} > $(document.getElementById("j_idt163:j_idt165Input")).autocomplete("option= ", "autoFocus") > {code} > We can use WebDriver's {{JavascriptExecutor}} to access widget settings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2841050331269318903==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============1811967503323760338==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 12:00:07 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============1811967503323760338== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12224: ------------------------------- Original Estimate: 2 hours Remaining Estimate: 2 hours = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1811967503323760338==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============8436179960250876622==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Thu, 28 Nov 2013 12:00:08 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============8436179960250876622== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13395: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8436179960250876622==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:10 2013 Content-Type: multipart/mixed; boundary="===============6524629181942869773==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 12:00:07 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============6524629181942869773== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13393: ------------------------------- Original Estimate: 15 minutes Remaining Estimate: 15 minutes = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6524629181942869773==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:11 2013 Content-Type: multipart/mixed; boundary="===============7598410588769910204==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 12:00:08 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============7598410588769910204== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12224: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7598410588769910204==-- From jira-events at lists.jboss.org Thu Nov 28 12:00:11 2013 Content-Type: multipart/mixed; boundary="===============2137256440997435694==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 12:00:08 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============2137256440997435694== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13393: ------------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2137256440997435694==-- From jira-events at lists.jboss.org Thu Nov 28 12:02:06 2013 Content-Type: multipart/mixed; boundary="===============2055489138027523542==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 12:02:05 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============2055489138027523542== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927436#com= ment-12927436 ] = Brian Leathem commented on RF-13393: ------------------------------------ We need the wrapper div to hold the clientId, as the list gets wrapped by D= OM elements in the widget initialisation. I have some ideas of how to impr= ove this, but they are out of scope for RichWidgets 0.1. = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2055489138027523542==-- From jira-events at lists.jboss.org Thu Nov 28 12:06:06 2013 Content-Type: multipart/mixed; boundary="===============7351585465059054587==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Thu, 28 Nov 2013 12:06:05 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============7351585465059054587== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927437#com= ment-12927437 ] = Brian Leathem commented on RF-13393: ------------------------------------ The fix here is to look up the top-level CDK div via the clientId, and chan= ge [this line|https://github.com/richfaces/richfaces/blob/master/framework/= src/main/resources/META-INF/resources/org.richfaces/bridge/select/ordering-= list-bridge.js#L25] to store the widget in that element, rather than the li= st element. = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Michal Petrov > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7351585465059054587==-- From jira-events at lists.jboss.org Thu Nov 28 12:17:06 2013 Content-Type: multipart/mixed; boundary="===============5046866031736884029==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Identify patches that needs to be ported from 4.5 to 5.0. Date: Thu, 28 Nov 2013 12:17:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============5046866031736884029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13396: ------------------------------- Fix Version/s: 5.0.0.Alpha2 = > Identify patches that needs to be ported from 4.5 to 5.0. > --------------------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5046866031736884029==-- From jira-events at lists.jboss.org Thu Nov 28 12:24:05 2013 Content-Type: multipart/mixed; boundary="===============0696142706526023045==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13392) TreeSelectionChangeEvent always triggered during Apply Request Phase Date: Thu, 28 Nov 2013 12:24:05 -0500 Message-ID: In-Reply-To: JIRA.12526404.1385629372000@jira02.app.mwc.hst.phx2.redhat.com --===============0696142706526023045== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13392?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13392: ------------------------------- Fix Version/s: 5-Tracking = > TreeSelectionChangeEvent always triggered during Apply Request Phase > -------------------------------------------------------------------- > > Key: RF-13392 > URL: https://issues.jboss.org/browse/RF-13392 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.3.3 > Reporter: Andreas Hahne > Labels: richfaces, selectionChangeListener, tree > Fix For: 5-Tracking > > Attachments: tree.zip > > > When selecting a {{rich:treeNode}}, the corresponding {{selectionChangeLi= stener}} is triggered during Apply Request Phase, no matter if the immediat= e attribute is set to true or false. > This leads to a weird behaviour in our application where an output panel = is filled with the data selected in the tree. Both components are located i= n the same {{h:form}} element (in contrast to the showcase on the RF homepa= ge). While the value of the {{h:outputText}} component is updated correctly= , the one in the {{h:inputText}} is not because it is overwritten by the ol= d value during Update Model Phase. If the change was processed during Invok= e Application Phase this would not occur most likely. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0696142706526023045==-- From jira-events at lists.jboss.org Thu Nov 28 12:50:06 2013 Content-Type: multipart/mixed; boundary="===============1723302722836782775==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Identify patches that needs to be ported from 4.5 to 5.0. Date: Thu, 28 Nov 2013 12:50:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============1723302722836782775== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927441#com= ment-12927441 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13396: --------------------------------- RF-12224 fileUpload: Multiple file selection - https://github.com/richfaces4/components/commit/72417a985e2aa9ef9ee316344= 312c34032a1bfec RF-13090 Fixed default argument. - https://github.com/richfaces4/components/commit/4bb0d43e4ea48fabfa64b6293= d95407f26da2722 = > Identify patches that needs to be ported from 4.5 to 5.0. > --------------------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1723302722836782775==-- From jira-events at lists.jboss.org Thu Nov 28 13:37:06 2013 Content-Type: multipart/mixed; boundary="===============3178004512129720539==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 13:37:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============3178004512129720539== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12224: ---------------------------- Assignee: Simone Cinti (was: Luk=C3=A1=C5=A1 Fry=C4=8D) = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Simone Cinti > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3178004512129720539==-- From jira-events at lists.jboss.org Thu Nov 28 13:37:06 2013 Content-Type: multipart/mixed; boundary="===============4421855929833713945==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 13:37:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============4421855929833713945== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-12224: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4421855929833713945==-- From jira-events at lists.jboss.org Thu Nov 28 13:39:06 2013 Content-Type: multipart/mixed; boundary="===============7105266835636093815==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 13:39:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============7105266835636093815== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927453#com= ment-12927453 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12224: --------------------------------- I have introduced support to RF 5 Core + FileUpload component. Additionally, I have fixed support in RF 4.5. It was caused by wrong refactoring here: https://github.com/richfaces4/components/commit/f936e60797c037643937f1eedbd= 2a60c0db242b9 = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Simone Cinti > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============7105266835636093815==-- From jira-events at lists.jboss.org Thu Nov 28 13:39:06 2013 Content-Type: multipart/mixed; boundary="===============2642574365208601651==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 13:39:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============2642574365208601651== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12224. ----------------------------- Resolution: Done = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Simone Cinti > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2642574365208601651==-- From jira-events at lists.jboss.org Thu Nov 28 13:45:06 2013 Content-Type: multipart/mixed; boundary="===============5688170703834002473==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13090) named functions not working as documented Date: Thu, 28 Nov 2013 13:45:06 -0500 Message-ID: In-Reply-To: JIRA.12496244.1373610269000@jira02.app.mwc.hst.phx2.redhat.com --===============5688170703834002473== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13090?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13090: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > named functions not working as documented > ------------------------------------------------------- > > Key: RF-13090 > URL: https://issues.jboss.org/browse/RF-13090 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.2 > Reporter: Vincent W=C3=BClcknitz > Assignee: Vincent W=C3=BClcknitz > Priority: Minor > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > I have found some strange behaviour with the component when= you implement named functions like described in the component reference: > http://docs.jboss.org/richfaces/latest_4_3_X/Component_Reference/en-US/ht= ml/chap-Component_Reference-Layout_and_appearance.html#sect-Component_Refer= ence-richjQuery-Named_queries > If I implement the given code from the reference: > {code} > > > ... > > > {code} > only the onmouseover calls will work. The prictures will get bigger but n= ot smaller onmouseout. > I found out that if I do some small changes to the onmouseout call it wor= ks fine: > {code} > > > ... > > > {code} > It only works when adding a second parameter to the call even if its empt= y. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5688170703834002473==-- From jira-events at lists.jboss.org Thu Nov 28 13:48:06 2013 Content-Type: multipart/mixed; boundary="===============4143078284503008433==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 Date: Thu, 28 Nov 2013 13:48:06 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============4143078284503008433== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13396: ---------------------------- Summary: Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 (was: Port pat= ches from 4.5.0.Alpha1 to 5.0.0.Alpha2.) = > Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 > ---------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4143078284503008433==-- From jira-events at lists.jboss.org Thu Nov 28 13:48:06 2013 Content-Type: multipart/mixed; boundary="===============8797024522096867956==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2. Date: Thu, 28 Nov 2013 13:48:06 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============8797024522096867956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13396: ---------------------------- Summary: Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2. (was: Port pa= tches from 4.5 to 5.0.) = > Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2. > ----------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8797024522096867956==-- From jira-events at lists.jboss.org Thu Nov 28 13:48:06 2013 Content-Type: multipart/mixed; boundary="===============6995464435782213122==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Port patches from 4.5 to 5.0. Date: Thu, 28 Nov 2013 13:48:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============6995464435782213122== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13396: ---------------------------- Summary: Port patches from 4.5 to 5.0. (was: Identify patches that nee= ds to be ported from 4.5 to 5.0.) = > Port patches from 4.5 to 5.0. > ----------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6995464435782213122==-- From jira-events at lists.jboss.org Thu Nov 28 13:50:06 2013 Content-Type: multipart/mixed; boundary="===============5641369539607915230==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 Date: Thu, 28 Nov 2013 13:50:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============5641369539607915230== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13396. ----------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Resolution: Done Done. Issues committed with respective IDs of their issues. = > Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 > ---------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5641369539607915230==-- From jira-events at lists.jboss.org Thu Nov 28 15:20:06 2013 Content-Type: multipart/mixed; boundary="===============6960055704278276066==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13396) Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 Date: Thu, 28 Nov 2013 15:20:05 -0500 Message-ID: In-Reply-To: JIRA.12526465.1385650688000@jira02.app.mwc.hst.phx2.redhat.com --===============6960055704278276066== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13396?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927472#com= ment-12927472 ] = Brian Leathem commented on RF-13396: ------------------------------------ Thanks [~lfryc] Issues: RF-12224 and RF-13090 = > Port patches from 4.5.0.Alpha1 to 5.0.0.Alpha2 > ---------------------------------------------- > > Key: RF-13396 > URL: https://issues.jboss.org/browse/RF-13396 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 4.5-Tracking, 5-Tracking > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > Identify what changes/features need to be ported from RF 4.5 TO RF 5. > Example of such feature would be uploading multiple files using rich:file= Upload ([request|https://issues.jboss.org/browse/RF-12224]) > If all feature requests are listed in JIRA it would be sufficient to go t= hough the implemented ones and see if they are included in RF 5. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6960055704278276066==-- From jira-events at lists.jboss.org Thu Nov 28 15:22:06 2013 Content-Type: multipart/mixed; boundary="===============6852940440649673473==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13090) named functions not working as documented Date: Thu, 28 Nov 2013 15:22:06 -0500 Message-ID: In-Reply-To: JIRA.12496244.1373610269000@jira02.app.mwc.hst.phx2.redhat.com --===============6852940440649673473== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13090?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13090: ------------------------------- Labels: needs-qe (was: ) = > named functions not working as documented > ------------------------------------------------------- > > Key: RF-13090 > URL: https://issues.jboss.org/browse/RF-13090 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.3.2 > Reporter: Vincent W=C3=BClcknitz > Assignee: Vincent W=C3=BClcknitz > Priority: Minor > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > I have found some strange behaviour with the component when= you implement named functions like described in the component reference: > http://docs.jboss.org/richfaces/latest_4_3_X/Component_Reference/en-US/ht= ml/chap-Component_Reference-Layout_and_appearance.html#sect-Component_Refer= ence-richjQuery-Named_queries > If I implement the given code from the reference: > {code} > > > ... > > > {code} > only the onmouseover calls will work. The prictures will get bigger but n= ot smaller onmouseout. > I found out that if I do some small changes to the onmouseout call it wor= ks fine: > {code} > > > ... > > > {code} > It only works when adding a second parameter to the call even if its empt= y. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6852940440649673473==-- From jira-events at lists.jboss.org Thu Nov 28 15:22:06 2013 Content-Type: multipart/mixed; boundary="===============8721602263205573419==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Thu, 28 Nov 2013 15:22:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============8721602263205573419== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12224: ------------------------------- Labels: needs-qe (was: ) = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Simone Cinti > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8721602263205573419==-- From jira-events at lists.jboss.org Fri Nov 29 02:19:06 2013 Content-Type: multipart/mixed; boundary="===============3900811403165777309==" MIME-Version: 1.0 From: Tobias Seppenhauser (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Exporer >= 10 Date: Fri, 29 Nov 2013 02:19:05 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468331@jira02.app.mwc.hst.phx2.redhat.com --===============3900811403165777309== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Tobias Seppenhauser created RF-13397: ---------------------------------------- Summary: a4j:push not working with Internet Exporer >=3D 10 Key: RF-13397 URL: https://issues.jboss.org/browse/RF-13397 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.3.4 Environment: Any where Internet Explorer 10 or above is available Reporter: Tobias Seppenhauser The mechanism seems to be broken when using the Internet Explore= r 10 or above. This can easily be verified by visiting the corresponding sh= owcase component [1]. The UUID never gets updated. = Unfortunately I can't see any error in the Javascript console. [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dpus= h&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3900811403165777309==-- From jira-events at lists.jboss.org Fri Nov 29 02:21:06 2013 Content-Type: multipart/mixed; boundary="===============5327441914652518392==" MIME-Version: 1.0 From: Tobias Seppenhauser (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 02:21:05 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============5327441914652518392== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Tobias Seppenhauser updated RF-13397: ------------------------------------- Summary: a4j:push not working with Internet Explorer >=3D 10 (was: a4j= :push not working with Internet Exporer >=3D 10) = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5327441914652518392==-- From jira-events at lists.jboss.org Fri Nov 29 03:24:07 2013 Content-Type: multipart/mixed; boundary="===============3868571685758661914==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 03:24:07 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============3868571685758661914== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13397: ---------------------------------- Assignee: Pavol Pitonak QE, please verify = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Pavol Pitonak > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3868571685758661914==-- From jira-events at lists.jboss.org Fri Nov 29 03:26:06 2013 Content-Type: multipart/mixed; boundary="===============1233390729539608940==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Fri, 29 Nov 2013 03:26:05 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============1233390729539608940== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13393: ---------------------------------- Assignee: Brian Leathem (was: Michal Petrov) = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1233390729539608940==-- From jira-events at lists.jboss.org Fri Nov 29 03:54:06 2013 Content-Type: multipart/mixed; boundary="===============5156694231398451407==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 03:54:06 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============5156694231398451407== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13397: ---------------------------------- Assignee: Juraj H=C3=BAska (was: Pavol Pitonak) = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Juraj H=C3=BAska > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5156694231398451407==-- From jira-events at lists.jboss.org Fri Nov 29 04:02:07 2013 Content-Type: multipart/mixed; boundary="===============8154530791068738012==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Fri, 29 Nov 2013 04:02:07 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============8154530791068738012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13395: ------------------------------- Priority: Blocker (was: Major) = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Priority: Blocker > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8154530791068738012==-- From jira-events at lists.jboss.org Fri Nov 29 04:02:10 2013 Content-Type: multipart/mixed; boundary="===============9084489963959107045==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Fri, 29 Nov 2013 04:02:08 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============9084489963959107045== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927519#com= ment-12927519 ] = Pavol Pitonak commented on RF-13395: ------------------------------------ It can be reproduced in Metamer, too. = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Priority: Blocker > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9084489963959107045==-- From jira-events at lists.jboss.org Fri Nov 29 04:40:08 2013 Content-Type: multipart/mixed; boundary="===============0503590418829467960==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Fri, 29 Nov 2013 04:40:06 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============0503590418829467960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927538#com= ment-12927538 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13394: --------------------------------- [~ppitonak] is this a regression? = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0503590418829467960==-- From jira-events at lists.jboss.org Fri Nov 29 04:40:08 2013 Content-Type: multipart/mixed; boundary="===============0676486819975431087==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Fri, 29 Nov 2013 04:40:06 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============0676486819975431087== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13395: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0676486819975431087==-- From jira-events at lists.jboss.org Fri Nov 29 04:46:07 2013 Content-Type: multipart/mixed; boundary="===============0116860751037915316==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Fri, 29 Nov 2013 04:46:07 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============0116860751037915316== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13393. -------------------------------- Resolution: Done = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0116860751037915316==-- From jira-events at lists.jboss.org Fri Nov 29 05:14:06 2013 Content-Type: multipart/mixed; boundary="===============6018036226203467398==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Fri, 29 Nov 2013 05:14:05 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============6018036226203467398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927545#com= ment-12927545 ] = Pavol Pitonak commented on RF-13394: ------------------------------------ Yes, it is a regression...you can see it in "Component/s" field :) = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6018036226203467398==-- From jira-events at lists.jboss.org Fri Nov 29 05:22:06 2013 Content-Type: multipart/mixed; boundary="===============8574749648364047829==" MIME-Version: 1.0 From: =?utf-8?q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29_=3Cjira-events_at_lists?= =?utf-8?q?=2Ejboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 05:22:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============8574749648364047829== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ji=C5=99=C3=AD =C5=A0tefek reopened RF-12224: ------------------------------ Assignee: (was: Simone Cinti) I have tried to verify this, but: In both RF 4.5 and 5 Metamer: * You are able to SELECT (in a file manager) as many files as you like (OK) * All these files will be displayed correctly (OK) * As you try to upload them progress bars pop up and then you see "Done" (O= K) * Filters works (detects which files to accept and which to decline) (OK) BUT * FileUploadListener is not invoked with multiple (in single step or in mul= tiple steps) or even a single file upload (ERROR, base component functional= ity is broken) I have used RF framework version 5.0.0-20131129.090901-137 and in 4.5 also = components 4.5.0-20131129.100450-6. Used FF 25, on EAP 6.1 and Glassfish 3.1.2.2. So, I am reopening this issue. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8574749648364047829==-- From jira-events at lists.jboss.org Fri Nov 29 06:17:06 2013 Content-Type: multipart/mixed; boundary="===============5846113139202150167==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13393) orderingList: JavaScript api is bound to wrong element Date: Fri, 29 Nov 2013 06:17:06 -0500 Message-ID: In-Reply-To: JIRA.12526436.1385643898000@jira02.app.mwc.hst.phx2.redhat.com --===============5846113139202150167== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13393?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak closed RF-13393. ------------------------------ Verified = > orderingList: JavaScript api is bound to wrong element > ------------------------------------------------------ > > Key: RF-13393 > URL: https://issues.jboss.org/browse/RF-13393 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 5.0.0.Alpha2 > Reporter: Ji=C5=99=C3=AD =C5=A0tefek > Assignee: Brian Leathem > Priority: Critical > Fix For: 5.0.0.Alpha2 > > Original Estimate: 15 minutes > Remaining Estimate: 15 minutes > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5846113139202150167==-- From jira-events at lists.jboss.org Fri Nov 29 06:21:06 2013 Content-Type: multipart/mixed; boundary="===============8468501162760618871==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13356) DataTable: row height strechted to 100% of the table height Date: Fri, 29 Nov 2013 06:21:05 -0500 Message-ID: In-Reply-To: JIRA.12525467.1384785454000@jira02.app.mwc.hst.phx2.redhat.com --===============8468501162760618871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13356?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927558#com= ment-12927558 ] = Pavol Pitonak commented on RF-13356: ------------------------------------ # in EDT, rows are *not* stretched to 100% of the table height (see attache= d screenshot edt.png) # in data table, rows *are* stretched to 100% so I changed the summary text= of this issue # in EDT, footer is not sticked to the bottom of table (see attached screen= shot edt.png) - I asked Anton to file a new Jira for this issue = > DataTable: row height strechted to 100% of the table height > ----------------------------------------------------------- > > Key: RF-13356 > URL: https://issues.jboss.org/browse/RF-13356 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.3.3, 5.0.0.Alpha1 > Reporter: Anton Bogoslavskyi > Assignee: Pavol Pitonak > Attachments: edt.png, extended-screen1.png, extended-screen2.png,= screen1.png, screen2.png > > > The same as in the parent issue: > Instead of having fixed row height and blank space if not enough rows to = fill the entire table height, the rows are stretched to fill the entire tab= le height. For instance with an extended data table of 500px height and 2 r= ows, each row is approximately 250px height (minus the height of the header= , borders and cell spacing). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============8468501162760618871==-- From jira-events at lists.jboss.org Fri Nov 29 07:41:07 2013 Content-Type: multipart/mixed; boundary="===============3525174406101138643==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-6678) RichFaces Select components: implement disabled state support for selectItem Date: Fri, 29 Nov 2013 07:41:07 -0500 Message-ID: In-Reply-To: JIRA.12383309.1238663780000@jira02.app.mwc.hst.phx2.redhat.com --===============3525174406101138643== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6678?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-6678: --------------------------------- Assignee: Brian Leathem (was: Pavol Pitonak) Brian, in RichFaces 5.0.0-SNAPSHOT, attribute disabled has no effect on rendered s= elect/inplaceSelect. {code:xml} {code} = > RichFaces Select components: implement disabled state support for selectI= tem > -------------------------------------------------------------------------= --- > > Key: RF-6678 > URL: https://issues.jboss.org/browse/RF-6678 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Milestone5 > Reporter: Ilya Shaikovsky > Assignee: Brian Leathem > Fix For: 5-Tracking > > > components: > inplaceSelect > select > In future we should support the same in: > listShuttle > orderingList > note: s:selectItems disabled attribute should also works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3525174406101138643==-- From jira-events at lists.jboss.org Fri Nov 29 09:11:06 2013 Content-Type: multipart/mixed; boundary="===============0545104941599918055==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Fri, 29 Nov 2013 09:11:06 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============0545104941599918055== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927594#com= ment-12927594 ] = Juraj H=C3=BAska commented on RF-10756: ---------------------------------- I have reproduced the issue on Showcase at [this|https://github.com/jhuska/= richfaces/tree/RF-10756] branch. It is so as it is reported. Workaround works as well. Please see Steps to r= eproduce. Please, tell me if you wanna something more. E.g. reproducing it with other= iteration elements as well. = > 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: Juraj H=C3=BAska > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0545104941599918055==-- From jira-events at lists.jboss.org Fri Nov 29 09:13:06 2013 Content-Type: multipart/mixed; boundary="===============1233872612490408989==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Fri, 29 Nov 2013 09:13:06 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============1233872612490408989== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-10756: ----------------------------- Steps to Reproduce: = # checkout showcase from [this|https://github.com/jhuska/richfaces/tree/RF-= 10756] branch. # build it and deploy on any server # load: http://localhost:8080/showcase/richfaces/component-sample.jsf?demo= =3DsubTableToggleControl&skin=3DblueSky # click on the render button # see that the numbers are not increased # see also the {{r:log}} output that the the client id of the table differs= from the one which is being updated = > 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: Juraj H=C3=BAska > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1233872612490408989==-- From jira-events at lists.jboss.org Fri Nov 29 09:13:06 2013 Content-Type: multipart/mixed; boundary="===============1374980216137018945==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-10756) collapsibleSubtable: id set to tbody differs from component id and break rendering. Date: Fri, 29 Nov 2013 09:13:06 -0500 Message-ID: In-Reply-To: JIRA.12432840.1300178676000@jira02.app.mwc.hst.phx2.redhat.com --===============1374980216137018945== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10756?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-10756: ----------------------------- Assignee: (was: Juraj H=C3=BAska) = > 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 > > added to richfaces-showcase code: > {code} > > > > > > > expandMode=3D"client"> > > > > {code} > and = > {code} > public void incDaysLive(){ > for (InventoryVendorList vendor : inventoryVendorLists) { > for (InventoryVendorItem item : vendor.getVendorItems()) { > item.setDaysLive(item.getDaysLive()+1); > } > = > } > } > {code} > do not see values updated before refreshing the browser. > According to log update came fine for the subtable. just wrapper tbody ha= s different id than specified at component. so it can't be updated. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1374980216137018945==-- From jira-events at lists.jboss.org Fri Nov 29 09:32:06 2013 Content-Type: multipart/mixed; boundary="===============1844938214511679360==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 09:32:06 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522016@jira02.app.mwc.hst.phx2.redhat.com --===============1844938214511679360== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Pavol Pitonak created RF-13398: ---------------------------------- Summary: Autocomplete: JavaScript API doesn't work Key: RF-13398 URL: https://issues.jboss.org/browse/RF-13398 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 5.0.0.Alpha2 Environment: RichFaces 5.0.0-SNAPSHOT Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/ri= chAutocomplete/autocomplete.xhtml # open browser console # run in console RichFaces.component("form:autocomplete").disable() result: * the method fails with this error: {code} TypeError: Cannot call method 'attr' of undefined {code} * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1844938214511679360==-- From jira-events at lists.jboss.org Fri Nov 29 11:04:06 2013 Content-Type: multipart/mixed; boundary="===============4698916538359180124==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 11:04:06 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============4698916538359180124== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927626#com= ment-12927626 ] = Juraj H=C3=BAska commented on RF-13397: ---------------------------------- I can reproduce the error. I have reproduced it with both online referenced showcase (after restart of= the application server) and also with locally running JBoss AS 7.1.1.Final. The issue is occurring only in IE. Other browsers works. I git this JS error into the console: {code} HTML1524: Invalid DOCTYPE. The shortest valid doctype is "". = component-sample.jsf, line 1 character 1 {code} I have tried to change the doctype, as is advised [here|http://stackoverflo= w.com/a/16127782]. However the error disappeared, the {{r:push}} is still n= ot working. I can not see any network activity in the browser, so I guess i= t is server/atmosphere problem ? Let me know if I can test sth more. = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Juraj H=C3=BAska > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4698916538359180124==-- From jira-events at lists.jboss.org Fri Nov 29 11:04:07 2013 Content-Type: multipart/mixed; boundary="===============5639026942308665620==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 11:04:07 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============5639026942308665620== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj H=C3=BAska updated RF-13397: ----------------------------- Assignee: (was: Juraj H=C3=BAska) = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5639026942308665620==-- From jira-events at lists.jboss.org Fri Nov 29 11:04:07 2013 Content-Type: multipart/mixed; boundary="===============4083726451264879785==" MIME-Version: 1.0 From: =?utf-8?q?Juraj_H=C3=BAska_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss=2Eo?= =?utf-8?q?rg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 11:04:07 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============4083726451264879785== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927626#com= ment-12927626 ] = Juraj H=C3=BAska edited comment on RF-13397 at 11/29/13 11:03 AM: ------------------------------------------------------------- I can reproduce the error. I have reproduced it with both online referenced showcase (after restart of= the application server) and also with locally running JBoss AS 7.1.1.Final. The issue is occurring only in IE. Other browsers works. I got this JS error into the console: {code} HTML1524: Invalid DOCTYPE. The shortest valid doctype is "". = component-sample.jsf, line 1 character 1 {code} I have tried to change the doctype, as is advised [here|http://stackoverflo= w.com/a/16127782]. However the error disappeared, the {{r:push}} is still n= ot working. I can not see any network activity in the browser, so I guess i= t is server/atmosphere problem ? Let me know if I can test sth more. = was (Author: jhuska): I can reproduce the error. I have reproduced it with both online referenced showcase (after restart of= the application server) and also with locally running JBoss AS 7.1.1.Final. The issue is occurring only in IE. Other browsers works. I git this JS error into the console: {code} HTML1524: Invalid DOCTYPE. The shortest valid doctype is "". = component-sample.jsf, line 1 character 1 {code} I have tried to change the doctype, as is advised [here|http://stackoverflo= w.com/a/16127782]. However the error disappeared, the {{r:push}} is still n= ot working. I can not see any network activity in the browser, so I guess i= t is server/atmosphere problem ? Let me know if I can test sth more. = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Juraj H=C3=BAska > Labels: richfaces > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4083726451264879785==-- From jira-events at lists.jboss.org Fri Nov 29 11:15:07 2013 Content-Type: multipart/mixed; boundary="===============5735586321789816848==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 11:15:07 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============5735586321789816848== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-13398: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5735586321789816848==-- From jira-events at lists.jboss.org Fri Nov 29 11:17:06 2013 Content-Type: multipart/mixed; boundary="===============3440974595583480004==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 11:17:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============3440974595583480004== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-12224: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3440974595583480004==-- From jira-events at lists.jboss.org Fri Nov 29 11:17:06 2013 Content-Type: multipart/mixed; boundary="===============1225025103484853933==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 11:17:05 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============1225025103484853933== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13398: ---------------------------- Fix Version/s: 5.0.0.Alpha2 = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1225025103484853933==-- From jira-events at lists.jboss.org Fri Nov 29 11:17:06 2013 Content-Type: multipart/mixed; boundary="===============3444875786050851662==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 11:17:06 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============3444875786050851662== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-13398: ---------------------------- Sprint: 5.0.0.Alpha2 - Sprint 8 = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3444875786050851662==-- From jira-events at lists.jboss.org Fri Nov 29 12:40:06 2013 Content-Type: multipart/mixed; boundary="===============3471143343863975871==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 12:40:06 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============3471143343863975871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927645#com= ment-12927645 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13398: --------------------------------- Upstream issue: https://github.com/richwidgets/richwidgets/issues/151 = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3471143343863975871==-- From jira-events at lists.jboss.org Fri Nov 29 12:59:06 2013 Content-Type: multipart/mixed; boundary="===============9039067748874371042==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 12:59:05 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============9039067748874371042== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927646#com= ment-12927646 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13398: --------------------------------- Other API methods should work as expected. = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============9039067748874371042==-- From jira-events at lists.jboss.org Fri Nov 29 12:59:06 2013 Content-Type: multipart/mixed; boundary="===============3877714429922538263==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13398) Autocomplete: JavaScript API doesn't work Date: Fri, 29 Nov 2013 12:59:06 -0500 Message-ID: In-Reply-To: JIRA.12526554.1385735522000@jira02.app.mwc.hst.phx2.redhat.com --===============3877714429922538263== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13398?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13398. ----------------------------- Resolution: Done = > Autocomplete: JavaScript API doesn't work > ----------------------------------------- > > Key: RF-13398 > URL: https://issues.jboss.org/browse/RF-13398 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richAutocomplete/autocomplete.xhtml > # open browser console > # run in console RichFaces.component("form:autocomplete").disable() > result: > * the method fails with this error: > {code} > TypeError: Cannot call method 'attr' of undefined > {code} > * the method enable() doesn't work as well -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3877714429922538263==-- From jira-events at lists.jboss.org Fri Nov 29 13:12:05 2013 Content-Type: multipart/mixed; boundary="===============3674502324705546562==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Fri, 29 Nov 2013 13:12:05 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============3674502324705546562== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927651#com= ment-12927651 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13395: --------------------------------- In the console, I can se:; {code} 19:04:53,404 INFO [org.jboss.as.server] (DeploymentScanner-threads - 2) JB= AS018559: Deployed "richfaces-showcase.war" (runtime-name : "richfaces-show= case.war") 19:05:01,245 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http-localhost/127.0.0.1:8080-3) JSF1064: Unable to find or serve resou= rce, jquery.position.js. 19:08:19,785 WARNING [javax.enterprise.resource.webcontainer.jsf.applicatio= n] (http-localhost/127.0.0.1:8080-6) JSF1064: Unable to find or serve resou= rce, jquery.position.js. {code} = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3674502324705546562==-- From jira-events at lists.jboss.org Fri Nov 29 13:18:05 2013 Content-Type: multipart/mixed; boundary="===============2012464368197012111==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13395) Showcase 4.5.x, input number slider Date: Fri, 29 Nov 2013 13:18:05 -0500 Message-ID: In-Reply-To: JIRA.12526458.1385650061000@jira02.app.mwc.hst.phx2.redhat.com --===============2012464368197012111== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13395?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13395. ----------------------------- Resolution: Done Resource library corrected. = > Showcase 4.5.x, input number slider > ----------------------------------- > > Key: RF-13395 > URL: https://issues.jboss.org/browse/RF-13395 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.5.0.Alpha1 > Environment: JBoss AS 7.1 > Firefox 25 > Reporter: Matej Novotny > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Blocker > Fix For: 4.5.0.Alpha1 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > This is a follow-up issue to [https://issues.jboss.org/browse/RF-13186]. > It is about a RF 4.5.x Showcase. > The bug only occurs when _resource optimization_ is set to _False_ and I = was also using a different _project stage_ to avoid JSF bug mentioned in RF= -13186. > {code} > > javax.faces.PROJECT_STAGE > Production > > {code} > Using these settings go to [inputs->inputNumberSlider|http://localhost:80= 80/showcase/richfaces/component-sample.jsf?demo=3DinputNumberSlider&skin=3D= blueSky] and try to interact with the component. There is no response and i= n a web console is a JS type error (with a //TODO note attached to that lin= e of code). > {code} > Uncaught TypeError: Object [object Object] has no method 'setPosition' = inputNumberSlider.js;jsessionid=3DYuqiPJsXtBxYRSB91vgCso2m.undefined:145 > {code} > The error refers to [this|https://github.com/richfaces4/components/blob/4= .5.x/rich/src/main/resources/META-INF/resources/org.richfaces/inputNumberSl= ider.js#L145] line on GitHub. > Otherwise I found no problems/errors/warnings. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2012464368197012111==-- From jira-events at lists.jboss.org Fri Nov 29 13:37:06 2013 Content-Type: multipart/mixed; boundary="===============3890315154491414864==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:37:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============3890315154491414864== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927656#com= ment-12927656 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12224 at 11/29/13 1:35 PM: ----------------------------------------------------------- Hey Jiri, I have re-verified and file upload works for me in latest Showcas= e 4.5 and 5.0 built from sources on EAP 6.1.1 with Firefox 25 and Chrome 31. It also works on latest Showcase uploaded online: http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sample.jsf?= demo=3DfileUpload&skin=3DblueSky = was (Author: lfryc): Hey Jiri, I have re-verified and file upload works for me in latest Sho= wcase 4.5 and 5.0 built from sources on EAP 6.1.1. It also works on latest Showcase uploaded online: http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sample.jsf?= demo=3DfileUpload&skin=3DblueSky = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3890315154491414864==-- From jira-events at lists.jboss.org Fri Nov 29 13:37:06 2013 Content-Type: multipart/mixed; boundary="===============2172902917128830614==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:37:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============2172902917128830614== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927656#com= ment-12927656 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12224: --------------------------------- Hey Jiri, I have re-verified and file upload works for me in latest Showcas= e 4.5 and 5.0 built from sources on EAP 6.1.1. It also works on latest Showcase uploaded online: http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sample.jsf?= demo=3DfileUpload&skin=3DblueSky = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2172902917128830614==-- From jira-events at lists.jboss.org Fri Nov 29 13:37:07 2013 Content-Type: multipart/mixed; boundary="===============2266922501044149737==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:37:07 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============2266922501044149737== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-12224. ----------------------------- Resolution: Done = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2266922501044149737==-- From jira-events at lists.jboss.org Fri Nov 29 13:37:07 2013 Content-Type: multipart/mixed; boundary="===============6518498874671140494==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:37:07 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============6518498874671140494== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927658#com= ment-12927658 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-12224: --------------------------------- Resolving issues as I cannot reproduce the failure. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6518498874671140494==-- From jira-events at lists.jboss.org Fri Nov 29 13:37:07 2013 Content-Type: multipart/mixed; boundary="===============0323382018714631322==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:37:07 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============0323382018714631322== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927656#com= ment-12927656 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12224 at 11/29/13 1:36 PM: ----------------------------------------------------------- Hey Jiri, I have re-verified and file upload works for me in latest Showcas= e 4.5 and 5.0 built from sources on EAP 6.1.1 with Firefox 25 and Chrome 31. It also works on latest Showcase uploaded online: http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sample.jsf?= demo=3DfileUpload&skin=3DblueSky I have verified by putting breakpoint into listener method: https://github.com/richfaces/richfaces/blob/master/examples/showcase/src/ma= in/java/org/richfaces/demo/fileupload/FileUploadBean.java#L50 = was (Author: lfryc): Hey Jiri, I have re-verified and file upload works for me in latest Sho= wcase 4.5 and 5.0 built from sources on EAP 6.1.1 with Firefox 25 and Chrom= e 31. It also works on latest Showcase uploaded online: http://showcaselatest-richfaces.rhcloud.com/richfaces/component-sample.jsf?= demo=3DfileUpload&skin=3DblueSky = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============0323382018714631322==-- From jira-events at lists.jboss.org Fri Nov 29 13:39:06 2013 Content-Type: multipart/mixed; boundary="===============1085995330095591816==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-12224) fileUpload: Multiple file selection Date: Fri, 29 Nov 2013 13:39:06 -0500 Message-ID: In-Reply-To: JIRA.12465468.1335949093000@jira02.app.mwc.hst.phx2.redhat.com --===============1085995330095591816== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-12224?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927658#com= ment-12927658 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-12224 at 11/29/13 1:37 PM: ----------------------------------------------------------- Resolving this issue as I cannot reproduce the failure. = was (Author: lfryc): Resolving issues as I cannot reproduce the failure. = > fileUpload: Multiple file selection > ----------------------------------- > > Key: RF-12224 > URL: https://issues.jboss.org/browse/RF-12224 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.2.1.Final > Reporter: Anthony O. > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: needs-qe > Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Is it possible to support multiple file selection in the selection box as= it was possible with RF 3 ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============1085995330095591816==-- From jira-events at lists.jboss.org Fri Nov 29 13:48:06 2013 Content-Type: multipart/mixed; boundary="===============3761456246012459548==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-6678) RichFaces Select components: implement disabled state support for selectItem Date: Fri, 29 Nov 2013 13:48:06 -0500 Message-ID: In-Reply-To: JIRA.12383309.1238663780000@jira02.app.mwc.hst.phx2.redhat.com --===============3761456246012459548== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6678?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-6678: ------------------------------ Assignee: (was: Brian Leathem) = > RichFaces Select components: implement disabled state support for selectI= tem > -------------------------------------------------------------------------= --- > > Key: RF-6678 > URL: https://issues.jboss.org/browse/RF-6678 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Affects Versions: 4.0.0.Milestone5 > Reporter: Ilya Shaikovsky > Fix For: 5-Tracking > > > components: > inplaceSelect > select > In future we should support the same in: > listShuttle > orderingList > note: s:selectItems disabled attribute should also works fine. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3761456246012459548==-- From jira-events at lists.jboss.org Fri Nov 29 13:50:06 2013 Content-Type: multipart/mixed; boundary="===============6717450791530228589==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13394) Toggle control: attributes targetItem and targetPanel don't work Date: Fri, 29 Nov 2013 13:50:06 -0500 Message-ID: In-Reply-To: JIRA.12526442.1385647291000@jira02.app.mwc.hst.phx2.redhat.com --===============6717450791530228589== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13394?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13394: ------------------------------- Labels: regression (was: ) = > Toggle control: attributes targetItem and targetPanel don't work > ---------------------------------------------------------------- > > Key: RF-13394 > URL: https://issues.jboss.org/browse/RF-13394 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, regression > Affects Versions: 4.5.0.Alpha1 > Environment: RichFaces 4.5.0-SNAPSHOT > Metamer 4.5.0-SNAPSHOT > EAP 6.1.1 > Mojarra 2.1.19 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64 > Reporter: Pavol Pitonak > Labels: regression > Fix For: 4.5.0.Alpha1 > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richToggleControl/accordion.xhtml > # set targetPanel=3Dpanel2 > # set targetItem=3Ditem3 > # click on "universal toggle control" button > result: > * nothing happens > * third item on second panel should be active > * when you change targetPanel and/or targetItem and press the button agai= n, it is switched to panel2/item3 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6717450791530228589==-- From jira-events at lists.jboss.org Fri Nov 29 13:50:06 2013 Content-Type: multipart/mixed; boundary="===============2208444419066846729==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 Date: Fri, 29 Nov 2013 13:50:05 -0500 Message-ID: In-Reply-To: JIRA.12526502.1385709468000@jira02.app.mwc.hst.phx2.redhat.com --===============2208444419066846729== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13397?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13397: ------------------------------- Fix Version/s: 4.3.5 = > a4j:push not working with Internet Explorer >=3D 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Labels: richfaces > Fix For: 4.3.5 > > > The mechanism seems to be broken when using the Internet Explo= rer 10 or above. This can easily be verified by visiting the corresponding = showcase component [1]. The UUID never gets updated. = > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=3Dp= ush&skin=3DblueSky -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============2208444419066846729==-- From jira-events at lists.jboss.org Fri Nov 29 14:47:06 2013 Content-Type: multipart/mixed; boundary="===============4768071363614971752==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13399) RichFaces can't be built with Maven 3.1.1 Date: Fri, 29 Nov 2013 14:47:05 -0500 Message-ID: In-Reply-To: JIRA.12526566.1385754370000@jira02.app.mwc.hst.phx2.redhat.com --===============4768071363614971752== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13399?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927661#com= ment-12927661 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-13399: --------------------------------- Can be fixed by tweaking plugin configuration: {code} compile true {code} = > RichFaces can't be built with Maven 3.1.1 > ----------------------------------------- > > Key: RF-13399 > URL: https://issues.jboss.org/browse/RF-13399 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============4768071363614971752==-- From jira-events at lists.jboss.org Fri Nov 29 14:47:06 2013 Content-Type: multipart/mixed; boundary="===============5296284327589127814==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13399) RichFaces can't be built with Maven 3.1.1 Date: Fri, 29 Nov 2013 14:47:05 -0500 Message-ID: In-Reply-To: JIRA.12526566.1385754370749@jira02.app.mwc.hst.phx2.redhat.com --===============5296284327589127814== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Luk=C3=A1=C5=A1 Fry=C4=8D created RF-13399: ------------------------------- Summary: RichFaces can't be built with Maven 3.1.1 Key: RF-13399 URL: https://issues.jboss.org/browse/RF-13399 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 5.0.0.Alpha2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 5.0.0.Alpha2 -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============5296284327589127814==-- From jira-events at lists.jboss.org Fri Nov 29 15:51:05 2013 Content-Type: multipart/mixed; boundary="===============3239885530742320334==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13399) RichFaces can't be built with Maven 3.1.1 Date: Fri, 29 Nov 2013 15:51:05 -0500 Message-ID: In-Reply-To: JIRA.12526566.1385754370000@jira02.app.mwc.hst.phx2.redhat.com --===============3239885530742320334== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13399?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12927661#com= ment-12927661 ] = Luk=C3=A1=C5=A1 Fry=C4=8D edited comment on RF-13399 at 11/29/13 3:49 PM: ----------------------------------------------------------- Can be fixed by tweaking plugin configuration: {code} compile {code} = was (Author: lfryc): Can be fixed by tweaking plugin configuration: {code} compile true {code} = > RichFaces can't be built with Maven 3.1.1 > ----------------------------------------- > > Key: RF-13399 > URL: https://issues.jboss.org/browse/RF-13399 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============3239885530742320334==-- From jira-events at lists.jboss.org Fri Nov 29 15:51:06 2013 Content-Type: multipart/mixed; boundary="===============6320064814307946804==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] (RF-13399) RichFaces can't be built with Maven 3.1.1 Date: Fri, 29 Nov 2013 15:51:05 -0500 Message-ID: In-Reply-To: JIRA.12526566.1385754370000@jira02.app.mwc.hst.phx2.redhat.com --===============6320064814307946804== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-13399?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-13399. ----------------------------- Resolution: Done = > RichFaces can't be built with Maven 3.1.1 > ----------------------------------------- > > Key: RF-13399 > URL: https://issues.jboss.org/browse/RF-13399 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 5.0.0.Alpha2 > > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrato= rs For more information on JIRA, see: http://www.atlassian.com/software/jira --===============6320064814307946804==--