From jira-events at lists.jboss.org Wed Jun 1 00:06:00 2011 Content-Type: multipart/mixed; boundary="===============6215930639140268616==" MIME-Version: 1.0 From: umanath muthuvel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11028) Dynamic extendDataTable not support ajax support Date: Wed, 01 Jun 2011 00:06:00 -0400 Message-ID: <1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6215930639140268616== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dynamic extendDataTable not support ajax support ------------------------------------------------ Key: RF-11028 URL: https://issues.jboss.org/browse/RF-11028 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component-a4j-core, component-tables Affects Versions: 3.3.3.Final Environment: Operating system Windows XP, Browser IE-7 and FirFox4 The JDK or JRE you are using, e.g. Sun Microsystems JDK 1.5.0_09 = Reporter: umanath muthuvel Dynamic extendDataTable creation not supporting ajax support Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 ro= w of dateList. = And after running my xhtml page the hole data (5 row of data with 2 columns= are displayed) But after I am clicking any row the a4j:support not firing corresponding me= thod. ( But whenever clicking the row the jsf life cycle are printing in co= nsoule) So I am trying Statically with same data and same a4j:support event and act= ion... this time it firing the corresponding method. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6215930639140268616==-- From jira-events at lists.jboss.org Wed Jun 1 01:02:02 2011 Content-Type: multipart/mixed; boundary="===============4544468090533225627==" MIME-Version: 1.0 From: umanath muthuvel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11028) Dynamic extendDataTable not support ajax support Date: Wed, 01 Jun 2011 01:02:01 -0400 Message-ID: <1529492554.38948.1306904521988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4544468090533225627== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11028?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] umanath muthuvel updated RF-11028: ---------------------------------- Description: = Dynamic extendDataTable creation not supporting ajax support Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 ro= w of dateList. = And after running my xhtml page the hole data (5 row of data with 2 columns= are displayed) But after I am clicking any row the a4j:support not firing corresponding me= thod. ( But whenever clicking the row the jsf life cycle are printing in co= nsoule) So I am trying Statically with same data and same a4j:support event and act= ion... this time it firing the corresponding method. = = = = = = ---------------------------------------------------------------------------= ---------------- And attached Static xhtml Page = = = = = = = ---------------------------------------------------------------------------= ------------- And for your reference i attached Dynamic table creation Source code here private static HtmlExtendedDataTable createTable(String beanName, TableAttr= ibutes tableAttributes) { System.out.println("-------- createTable -----------"); HtmlExtendedDataTable extendedDataTable =3D new HtmlExtende= dDataTable(); extendedDataTable.setId(tableAttributes.getId()); String binding =3D "${" + beanName + "." + tableAttributes.= getValue() + "}"; = System.out.println("Tabel Value =3D "+binding); ValueExpression valExp =3D getExpressionFactory() .createValueExpression(getELContext(), binding, Lis= t.class); extendedDataTable.setWidth("100"); extendedDataTable.setValueExpression("value", valExp); extendedDataTable.setVar(tableAttributes.getVar()); extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENANC= E_TABLE_SEL_MODE); extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_TAB= LE_SORT_MODE); = for(ColumnAttributes columnAttributes : tableAttributes.get= ColumnAttributesList()) { System.out.println(" column "+columnAttributes.get= Header()); = if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase(c= olumnAttributes.getComponentType())) { HtmlOutputText headerComponent =3D new Html= OutputText(); headerComponent.setValue(columnAttributes.g= etHeader()); = HtmlColumn htmlColumn =3D new HtmlColumn(); htmlColumn.setHeader(headerComponent); = // Column ID is Must while creating dynamic= ally, To avoid null pointer Exception. // Based on id value to set the Column Inde= x internally. htmlColumn.setId(columnAttributes.getValue(= )); = binding =3D "#{" + tableAttributes.getVar()= + "." + columnAttributes.getValue() + "}"; = System.out.println("Column Value =3D "+bind= ing); valExp =3D getExpressionFactory() .createValueExpression(getELContext= (), binding, String.class); = HtmlOutputText outputText =3D new HtmlOutpu= tText(); = outputText.setValueExpression("value", valE= xp); htmlColumn.getChildren().add(outputText); = = extendedDataTable.getChildren().add(htmlCol= umn); System.out.println(" column added "); = = } = else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgnore= Case(columnAttributes.getComponentType())) { System.out.println(" Inside : "+ HtmlAjaxSu= pport.COMPONENT_TYPE ); = HtmlAjaxSupport ajaxSupport =3D new HtmlAja= xSupport(); = ajaxSupport.setId("static_ajax_id"); = binding =3D "#{" + beanName + "." +columnAt= tributes.getAction() + "}"; = System.out.println(" Method binding: "+bind= ing); = MethodExpression methodBind =3D getExpressi= onFactory().createMethodExpression(getELContext(), binding, null, new Class= [] {}); = ajaxSupport.setActionExpression(methodBind); = // MethodBinding action =3D FacesContext.getCu= rrentInstance().getApplication() // .createMethodBinding(binding, new Class[0]); // ajaxSupport.setAction(action); // = System.out.println("Ajax Action :" +ajaxSup= port.getAction().getExpressionString()); System.out.println("Ajax Action1 :" +ajaxSu= pport.getActionExpression().getExpressionString()); ajaxSupport.setEvent(columnAttributes.getEv= ent()); System.out.println("Ajax event :" +ajaxSupp= ort.getEvent()); extendedDataTable.getChildren().add(ajaxSup= port); } } = System.out.println(" return extendedDataTable "); return extendedDataTable; } was: Dynamic extendDataTable creation not supporting ajax support Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 ro= w of dateList. = And after running my xhtml page the hole data (5 row of data with 2 columns= are displayed) But after I am clicking any row the a4j:support not firing corresponding me= thod. ( But whenever clicking the row the jsf life cycle are printing in co= nsoule) So I am trying Statically with same data and same a4j:support event and act= ion... this time it firing the corresponding method. > Dynamic extendDataTable not support ajax support > ------------------------------------------------ > > Key: RF-11028 > URL: https://issues.jboss.org/browse/RF-11028 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-tables > Affects Versions: 3.3.3.Final > Environment: Operating system Windows XP, Browser IE-7 and FirFox4 > The JDK or JRE you are using, e.g. Sun Microsystems JDK 1.5.0_09 = > Reporter: umanath muthuvel > Labels: richfaces > > Dynamic extendDataTable creation not supporting ajax support > Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 = row of dateList. = > And after running my xhtml page the hole data (5 row of data with 2 colum= ns are displayed) > But after I am clicking any row the a4j:support not firing corresponding = method. ( But whenever clicking the row the jsf life cycle are printing in = consoule) > So I am trying Statically with same data and same a4j:support event and a= ction... this time it firing the corresponding method. > > > 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" > xmlns:hex=3D"http://hexaware.com/custom"> > > = > > = > = > > = > = > = > > > > > -------------------------------------------------------------------------= ------------------ > And attached Static xhtml Page > > > 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" > xmlns:hex=3D"http://hexaware.com/custom"> > > = > > = > = > = > > var=3D"category" = > sortMode=3D"single" = > value=3D"#{upmBranchMaintenanceBean.resultBranchListVO}" > > > > > > > > = > > > > > > > = > action=3D"#{upmBranchMaintenanceBean.takeSelection}" /> > = > > > > > -------------------------------------------------------------------------= --------------- > And for your reference i attached Dynamic table creation Source code here > private static HtmlExtendedDataTable createTable(String beanName, TableAt= tributes tableAttributes) { > System.out.println("-------- createTable -----------"); > HtmlExtendedDataTable extendedDataTable =3D new HtmlExten= dedDataTable(); > extendedDataTable.setId(tableAttributes.getId()); > String binding =3D "${" + beanName + "." + tableAttribute= s.getValue() + "}"; = > System.out.println("Tabel Value =3D "+binding); > ValueExpression valExp =3D getExpressionFactory() > .createValueExpression(getELContext(), binding, L= ist.class); > extendedDataTable.setWidth("100"); > extendedDataTable.setValueExpression("value", valExp); > extendedDataTable.setVar(tableAttributes.getVar()); > extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENA= NCE_TABLE_SEL_MODE); > extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_T= ABLE_SORT_MODE); > = > for(ColumnAttributes columnAttributes : tableAttributes.g= etColumnAttributesList()) { > System.out.println(" column "+columnAttributes.g= etHeader()); = > if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase= (columnAttributes.getComponentType())) { > HtmlOutputText headerComponent =3D new Ht= mlOutputText(); > headerComponent.setValue(columnAttributes= .getHeader()); > = > HtmlColumn htmlColumn =3D new HtmlColumn(= ); > htmlColumn.setHeader(headerComponent); > = > // Column ID is Must while creating dynam= ically, To avoid null pointer Exception. > // Based on id value to set the Column In= dex internally. > htmlColumn.setId(columnAttributes.getValu= e()); > = > binding =3D "#{" + tableAttributes.getVar= ()+ "." + columnAttributes.getValue() + "}"; > = > System.out.println("Column Value =3D "+bi= nding); > valExp =3D getExpressionFactory() > .createValueExpression(getELConte= xt(), binding, String.class); > = > HtmlOutputText outputText =3D new HtmlOut= putText(); = > outputText.setValueExpression("value", va= lExp); > htmlColumn.getChildren().add(outputText);= = > = > extendedDataTable.getChildren().add(htmlC= olumn); > System.out.println(" column added "); > = > = > } = > else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgno= reCase(columnAttributes.getComponentType())) { > System.out.println(" Inside : "+ HtmlAjax= Support.COMPONENT_TYPE ); = > HtmlAjaxSupport ajaxSupport =3D new HtmlA= jaxSupport(); > = > ajaxSupport.setId("static_ajax_id"); > = > binding =3D "#{" + beanName + "." +column= Attributes.getAction() + "}"; = > System.out.println(" Method binding: "+bi= nding); > = > MethodExpression methodBind =3D getExpres= sionFactory().createMethodExpression(getELContext(), binding, null, new Cla= ss[] {}); = > ajaxSupport.setActionExpression(methodBin= d); > = > // MethodBinding action =3D FacesContext.get= CurrentInstance().getApplication() > // .createMethodBinding(binding, new Class[0]); > // ajaxSupport.setAction(action); > // = > System.out.println("Ajax Action :" +ajaxS= upport.getAction().getExpressionString()); > System.out.println("Ajax Action1 :" +ajax= Support.getActionExpression().getExpressionString()); > ajaxSupport.setEvent(columnAttributes.get= Event()); > System.out.println("Ajax event :" +ajaxSu= pport.getEvent()); > extendedDataTable.getChildren().add(ajaxS= upport); > } > } = > System.out.println(" return extendedDataTable "); > return extendedDataTable; > } -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4544468090533225627==-- From jira-events at lists.jboss.org Wed Jun 1 03:50:02 2011 Content-Type: multipart/mixed; boundary="===============8212399479131323888==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11019) Refine formatting and checkstyle rules for Java Date: Wed, 01 Jun 2011 03:50:01 -0400 Message-ID: <1280770516.39288.1306914601829.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1252038883.34567.1306757821135.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8212399479131323888== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11019?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12605695#com= ment-12605695 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11019: --------------------------------- Code formatted and pushed to my private branch RF-11019: https://github.com/lfryc/{MODULE} I won't push it to master before build will proceed build on Hudson. > Refine formatting and checkstyle rules for Java > ----------------------------------------------- > > Key: RF-11019 > URL: https://issues.jboss.org/browse/RF-11019 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8212399479131323888==-- From jira-events at lists.jboss.org Wed Jun 1 04:16:01 2011 Content-Type: multipart/mixed; boundary="===============2616841855218918731==" MIME-Version: 1.0 From: Pieter Van Nuffel (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-1282) Mouse wheel scrolling support for scrollableDataTable Date: Wed, 01 Jun 2011 04:16:01 -0400 Message-ID: <868413201.39353.1306916161707.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 10193026.1194004679340.JavaMail.jira@cloud.prod.atl2.jboss.com --===============2616841855218918731== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-1282?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12605704#comm= ent-12605704 ] = Pieter Van Nuffel commented on RF-1282: --------------------------------------- I encountered this issue and created a workaround using the jQuery mousewhe= el extension: http://plugins.jquery.com/project/mousewheel Make sure this code is executed once when the datatable is rendered to make= scrolling work on the entire table: (I hardcoded the tag id's, this can be improved to be more robust.) var innerPanel =3D jQuery('div[id =3D j_id197:resultTable:bc]'); var scrollPanel =3D jQuery('div[id =3D j_id197:resultTable:scb]= '); jQuery(innerPanel).bind('mousewheel', function(event, delta) { var shift =3D delta * 30; var current =3D scrollPanel.scrollTop(); //console.log(current + " " + shift); scrollPanel.scrollTop(current - shift); //don't let this scroll event continue to the entire page return false; }); > Mouse wheel scrolling support for scrollableDataTable > ----------------------------------------------------- > > Key: RF-1282 > URL: https://issues.jboss.org/browse/RF-1282 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Reporter: sh_vit > Priority: Optional > Fix For: 3.Future > > > It would be nice to support mouse wheel for scrollableDataTable. > PS. Let me suggest this link for cross-browser mouse wheel handling > adomas.org/javascript-mouse-wheel/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2616841855218918731==-- From jira-events at lists.jboss.org Wed Jun 1 06:38:01 2011 Content-Type: multipart/mixed; boundary="===============6872659578593738769==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11021) rich:select atribute selectFirst doesn't work Date: Wed, 01 Jun 2011 06:38:00 -0400 Message-ID: <431973645.39636.1306924680945.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6872659578593738769== 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.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11021: ---------------------------------- Assignee: Jay Balunas (was: Pavol Pitonak) Jay, imho it's not bug. rich:select behaves in the same way as rich:comboBox beh= aved in RichFaces 3. However, the description of the component might be cha= nged in Showcase. > rich:select atribute selectFirst doesn't work > --------------------------------------------- > > 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 > Assignee: Jay Balunas > Labels: richfaces > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6872659578593738769==-- From jira-events at lists.jboss.org Wed Jun 1 07:40:01 2011 Content-Type: multipart/mixed; boundary="===============3981162687596940603==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work Date: Wed, 01 Jun 2011 07:40:01 -0400 Message-ID: <1230982418.39708.1306928401034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3981162687596940603== 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=3D12605746#com= ment-12605746 ] = Jay Balunas commented on RF-11021: ---------------------------------- The goal was to be a replacement for h:select ( with additional features ).= Lets discuss that at the team meeting today. I do not want to have a deb= ate in jira. http://community.jboss.org/wiki/RichFacesTeamMeetingAgenda6-1-2011 > rich:select atribute selectFirst doesn't work > --------------------------------------------- > > 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 > Assignee: Jay Balunas > Labels: richfaces > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3981162687596940603==-- From jira-events at lists.jboss.org Wed Jun 1 07:46:01 2011 Content-Type: multipart/mixed; boundary="===============1183107748353969132==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7281) New component: rich:notify Date: Wed, 01 Jun 2011 07:46:01 -0400 Message-ID: <388936063.39721.1306928761229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 10225796.1243572296530.JavaMail.jira@cloud.prod.atl2.jboss.com --===============1183107748353969132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7281?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-7281: ------------------------------- Assignee: Jay Balunas (was: Nick Belaevski) > New component: rich:notify > -------------------------- > > Key: RF-7281 > URL: https://issues.jboss.org/browse/RF-7281 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 3.3.1 > Reporter: Francisco Jose Peredo Noguez > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > Currently when messages are presented, the content of the page is "pushed= down", and some times user just do not like that. I would be really nice i= f it could be possible to present messages in non intrusive way, as it is = done with Growl messages. > So... Please create new richfaces a component based on http://stanlemon.= net/projects/jgrowl.html whose messages can be set both server side (like r= ich:messages) and client side with a javascript base API. This would make i= t lot easier to present messages in a consistent and non intrusive way. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1183107748353969132==-- From jira-events at lists.jboss.org Wed Jun 1 08:13:01 2011 Content-Type: multipart/mixed; boundary="===============8368930894651416910==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11020) Define and verify CSS, JavaScript and XHTML formatting rules Date: Wed, 01 Jun 2011 08:13:00 -0400 Message-ID: <1164665573.39785.1306930380959.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 825171959.34580.1306757941353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8368930894651416910== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11020?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12605752#com= ment-12605752 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11020: --------------------------------- Formatter's settings aren't common between IDEs: XML formatters - behaves little differently with comments (Eclipse/IDEA - IDEA generates CRLF though it is configured in Unix mode XHTML formatters - Netbeans indents second-level elements (not so IDEA and = Eclipse) CSS - interoperable JavaScript - low support in IDEA for JS formatter customization, Eclipse ha= s wide pallete settings similar to Eclipse Java formatter > Define and verify CSS, JavaScript and XHTML formatting rules > ------------------------------------------------------------ > > Key: RF-11020 > URL: https://issues.jboss.org/browse/RF-11020 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8368930894651416910==-- From jira-events at lists.jboss.org Wed Jun 1 09:27:01 2011 Content-Type: multipart/mixed; boundary="===============7701222220254399655==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11027) rich:editor component for 4.X Date: Wed, 01 Jun 2011 09:27:01 -0400 Message-ID: <267311709.39999.1306934821047.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7701222220254399655== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11027?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11027: -------------------------------- Assignee: (was: Ilya Shaikovsky) > rich:editor component for 4.X > ----------------------------- > > Key: RF-11027 > URL: https://issues.jboss.org/browse/RF-11027 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > Requirements and planning for the 4.X implementation of the rich:editor c= omponent are needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7701222220254399655==-- From jira-events at lists.jboss.org Wed Jun 1 10:58:01 2011 Content-Type: multipart/mixed; boundary="===============6554388428034304448==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11027) rich:editor component for 4.X Date: Wed, 01 Jun 2011 10:58:01 -0400 Message-ID: <841738292.40374.1306940281281.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6554388428034304448== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11027?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11027: -------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > rich:editor component for 4.X > ----------------------------- > > Key: RF-11027 > URL: https://issues.jboss.org/browse/RF-11027 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Requirements and planning for the 4.X implementation of the rich:editor c= omponent are needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6554388428034304448==-- From jira-events at lists.jboss.org Wed Jun 1 19:51:01 2011 Content-Type: multipart/mixed; boundary="===============4454984463328344509==" MIME-Version: 1.0 From: Ara Minosian (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work Date: Wed, 01 Jun 2011 19:51:00 -0400 Message-ID: <1957821769.41313.1306972260974.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4454984463328344509== 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=3D12605925#com= ment-12605925 ] = Ara Minosian commented on RF-11021: ----------------------------------- Jay appreciates my notes practically always :) > rich:select atribute selectFirst doesn't work > --------------------------------------------- > > 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 > Assignee: Jay Balunas > Labels: richfaces > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4454984463328344509==-- From jira-events at lists.jboss.org Thu Jun 2 05:51:01 2011 Content-Type: multipart/mixed; boundary="===============7001532745053341008==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11019) Refine formatting and checkstyle rules for Java Date: Thu, 02 Jun 2011 05:51:01 -0400 Message-ID: <1431891234.42182.1307008261009.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1252038883.34567.1306757821135.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7001532745053341008== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11019?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11019. ----------------------------- Resolution: Done > Refine formatting and checkstyle rules for Java > ----------------------------------------------- > > Key: RF-11019 > URL: https://issues.jboss.org/browse/RF-11019 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7001532745053341008==-- From jira-events at lists.jboss.org Thu Jun 2 05:51:01 2011 Content-Type: multipart/mixed; boundary="===============2148986704690719103==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11020) Define and verify CSS, JavaScript and XHTML formatting rules Date: Thu, 02 Jun 2011 05:51:00 -0400 Message-ID: <1445867442.42181.1307008260977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 825171959.34580.1306757941353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2148986704690719103== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11020?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11020. ----------------------------- Resolution: Done > Define and verify CSS, JavaScript and XHTML formatting rules > ------------------------------------------------------------ > > Key: RF-11020 > URL: https://issues.jboss.org/browse/RF-11020 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2148986704690719103==-- From jira-events at lists.jboss.org Thu Jun 2 08:48:59 2011 Content-Type: multipart/mixed; boundary="===============3517394766812835007==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Thu, 02 Jun 2011 08:48:59 -0400 Message-ID: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3517394766812835007== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing ------------------------------------------------------------------------ Key: RF-11029 URL: https://issues.jboss.org/browse/RF-11029 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: architectural, build/distribution Affects Versions: 4.0.1.Milestone1 Reporter: Jay Balunas Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 This requires reviewing the differences and jira's associated with those ch= anges. There are some items that are only in master, and others that may o= nly be in 4.0.X. We need to be careful not to overwrite something that was= intended for 4.1.0 only. This should not be too extensive as a merge like this was performed right a= fter 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3517394766812835007==-- From jira-events at lists.jboss.org Thu Jun 2 12:28:01 2011 Content-Type: multipart/mixed; boundary="===============1450054970165782387==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Created: (RF-11030) rich:inplaceSelect suggestions disappear when move scroller (in Chrome) Date: Thu, 02 Jun 2011 12:28:01 -0400 Message-ID: <15317003.1129.1307032081203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1450054970165782387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:inplaceSelect suggestions disappear when move scroller (in Chrome) ----------------------------------------------------------------------- Key: RF-11030 URL: https://issues.jboss.org/browse/RF-11030 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: qe Reporter: J=C3=A1n Jamrich When move scroller by mouse in rich:inplaceSelect without confirmation butt= on (immediate selection) in Chrome browser, whole pop-up with selects disap= pear. But scroller works corectly in Forefox. I made some test changes in ShowCase - added more options into first inplac= eSelect -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1450054970165782387==-- From jira-events at lists.jboss.org Thu Jun 2 15:00:59 2011 Content-Type: multipart/mixed; boundary="===============3140016051660477585==" MIME-Version: 1.0 From: Paul Knox (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11031) autosized attribute does not work in IE7 Date: Thu, 02 Jun 2011 15:00:59 -0400 Message-ID: <599797221.1325.1307041259297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3140016051660477585== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable autosized attribute does not work in IE7 ---------------------------------------------------------- Key: RF-11031 URL: https://issues.jboss.org/browse/RF-11031 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component, component-panels-layout-themes Affects Versions: 4.0.0.Final Environment: Issue only affects IE7 Reporter: Paul Knox does not autosize popup window in IE7.= I tried a workaround by setting the autosized=3Dfalse for IE7 and using th= e height and width attributes but the height and width attributes seem to o= verride the autosized attribute. I eventually found a workaround by setting the autosized=3D'true' height=3D= '' width=3D'' for all browsers except IE7 (which works, for some reason the= height and width attributes are ignored) For IE7 I set autosized=3D'false' height=3D'670' width=3D'400' which render= s ok but if the data in any of my table cells gets larger then this will no= t render properly. here is my actual code . . . . I've included a link to the forum topic. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3140016051660477585==-- From jira-events at lists.jboss.org Thu Jun 2 23:15:59 2011 Content-Type: multipart/mixed; boundary="===============8076745559139790907==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11032) fileUpload Upload button not shown in Firefox 2.0 Date: Thu, 02 Jun 2011 23:15:59 -0400 Message-ID: <369988934.2247.1307070959595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8076745559139790907== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable fileUpload Upload button not shown in Firefox 2.0 ------------------------------------------------- Key: RF-11032 URL: https://issues.jboss.org/browse/RF-11032 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Reporter: Jesse Bowes Uploading a file in Firefox 2.0 using the fileUpload component is not possi= ble. I am able to add a file to the upload component, but the "upload" but= ton never becomes available to click. The same deployment works in IE6, FF3, FF4, and Chrome. I have confirmed this issue on the richfaces demo page as well. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8076745559139790907==-- From jira-events at lists.jboss.org Thu Jun 2 23:47:59 2011 Content-Type: multipart/mixed; boundary="===============2375200417247485853==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE Date: Thu, 02 Jun 2011 23:47:59 -0400 Message-ID: <861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2375200417247485853== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable fileUpload UploadedFile.getName contains full path information on IE -------------------------------------------------------------------- Key: RF-11033 URL: https://issues.jboss.org/browse/RF-11033 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Reporter: Jesse Bowes This was tested on IE6 and IE9: When I upload a file using the fileUpload component, the filename associate= d with the file that was uploaded is the full path to the file (e.g. c:\pat= h\to\file.txt). On Firefox and Chrome, it would just be file.txt. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2375200417247485853==-- From jira-events at lists.jboss.org Fri Jun 3 04:57:59 2011 Content-Type: multipart/mixed; boundary="===============4041154506436126093==" MIME-Version: 1.0 From: Dmitry Volkov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel Date: Fri, 03 Jun 2011 04:57:59 -0400 Message-ID: <717962619.2656.1307091479525.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4041154506436126093== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10980?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606231#com= ment-12606231 ] = Dmitry Volkov commented on RF-10980: ------------------------------------ Hi Pavol, = sorry, I forgot to mention that popup panel must be modal. I have reproduce= d this bug with this example: = {code:xml} {code} If you set focus on the first input in popup panel and push the tab button,= next input will not be focused, but browser address bar. This bug was reproduced in Firefox 3.6.17, IE 8.0.7600.16385. = I use MyFaces 2.0.4. = > Impossible to set tabindex of input inside rich:popupPanel > ---------------------------------------------------------- > > Key: RF-10980 > URL: https://issues.jboss.org/browse/RF-10980 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: Windows 7, WebSphere AS 8b2, in both browsers IE and= FF. = > Reporter: Dmitry Volkov > Assignee: Pavol Pitonak > Labels: popupPanel, tabindex > > Tabindex attribute of any element inside rich:popupPanel forced to -1, th= erefore those elements can not be selected with keyboard. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4041154506436126093==-- From jira-events at lists.jboss.org Fri Jun 3 05:27:59 2011 Content-Type: multipart/mixed; boundary="===============7320704430512885305==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Fri, 03 Jun 2011 05:27:59 -0400 Message-ID: <1802702041.2746.1307093279317.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7320704430512885305== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606240#com= ment-12606240 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11029: --------------------------------- archetypes and build have no updates in 4.0.X > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7320704430512885305==-- From jira-events at lists.jboss.org Fri Jun 3 05:29:59 2011 Content-Type: multipart/mixed; boundary="===============0188487604666216048==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Fri, 03 Jun 2011 05:29:59 -0400 Message-ID: <405575051.2748.1307093399354.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0188487604666216048== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606241#com= ment-12606241 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11029: --------------------------------- cdk: 1 commit RF-10434 > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0188487604666216048==-- From jira-events at lists.jboss.org Fri Jun 3 05:52:59 2011 Content-Type: multipart/mixed; boundary="===============9090985347383899169==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Fri, 03 Jun 2011 05:52:59 -0400 Message-ID: <1863593430.2763.1307094779416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9090985347383899169== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606244#com= ment-12606244 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11029: --------------------------------- core: no updates dev-examples: no updates > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9090985347383899169==-- From jira-events at lists.jboss.org Fri Jun 3 07:26:59 2011 Content-Type: multipart/mixed; boundary="===============3600507961292934834==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel Date: Fri, 03 Jun 2011 07:26:59 -0400 Message-ID: <1779446464.2956.1307100419772.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3600507961292934834== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10980?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10980: ---------------------------------- Assignee: Jay Balunas (was: Pavol Pitonak) Reproduced in following environment: RichFaces 4.1.0-SNAPSHOT Metamer 4.1.0-SNAPSHOT r.22517 Mojarra 2.1.0-FCS GlassFish Server Open Source Edition 3.1 Java(TM) SE Runtime Environment 1.6.0_24-b07 @ Linux Chrome 11.0.696.71 @ Linux i686 > Impossible to set tabindex of input inside rich:popupPanel > ---------------------------------------------------------- > > Key: RF-10980 > URL: https://issues.jboss.org/browse/RF-10980 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: Windows 7, WebSphere AS 8b2, in both browsers IE and= FF. = > Reporter: Dmitry Volkov > Assignee: Jay Balunas > Labels: popupPanel, tabindex > > Tabindex attribute of any element inside rich:popupPanel forced to -1, th= erefore those elements can not be selected with keyboard. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3600507961292934834==-- From jira-events at lists.jboss.org Fri Jun 3 07:56:59 2011 Content-Type: multipart/mixed; boundary="===============6062645050122940115==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Fri, 03 Jun 2011 07:56:59 -0400 Message-ID: <1890080907.3159.1307102219646.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6062645050122940115== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606287#com= ment-12606287 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11029: --------------------------------- showcase: https://github.com/richfaces/showcase/pull/3 > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6062645050122940115==-- From jira-events at lists.jboss.org Fri Jun 3 08:32:59 2011 Content-Type: multipart/mixed; boundary="===============1192774156102557412==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11034) richfaces-showcase-4.1.0-SNAPSHOT-jee6.war contains org.hibernate.ejb.HibernatePersistence which cause error in deployment Date: Fri, 03 Jun 2011 08:32:59 -0400 Message-ID: <581255339.3290.1307104379350.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1192774156102557412== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable richfaces-showcase-4.1.0-SNAPSHOT-jee6.war contains org.hibernate.ejb.Hiber= natePersistence which cause error in deployment ---------------------------------------------------------------------------= ----------------------------------------------- Key: RF-11034 URL: https://issues.jboss.org/browse/RF-11034 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.1.0.Milestone1 Environment: JBoss AS 6.0.0.Final, richfaces-showcase Reporter: Juraj Huska Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 richfaces-showcase-4.1.0-SNAPSHOT-jee6.war from https://repository.jboss.or= g/nexus/content/groups/public/org/richfaces/examples/richfaces-showcase/4.1= .0-SNAPSHOT/ does contain org.hibernate.ejb.HibernatePersistence which caus= e error in deployment -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1192774156102557412==-- From jira-events at lists.jboss.org Fri Jun 3 09:07:00 2011 Content-Type: multipart/mixed; boundary="===============5754165792447506637==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Created: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 03 Jun 2011 09:07:00 -0400 Message-ID: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5754165792447506637== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Unexpected exception during isValid call with Hibernate @Size validation on= h:selectManyCheckbox ---------------------------------------------------------------------------= --------------------- Key: RF-11035 URL: https://issues.jboss.org/browse/RF-11035 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 * Metamer ${4.1.0-SNAPSHOT} r.${22520} * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / * Apache Tomcat 7.0.12 * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux * Firefox 3.6.17 @ Linux x86_64 Reporter: J=C3=A1n Jamrich When validation performed on input of type h:selectManyCheckbox (bound to p= roperty of type List) on backing bean), and unexpected error appear= . See details for Mojarra and MyFaces in log attached. Since property bound to property is List type, SizeValidatorForCollection v= alidator implementation is called. But submited items from h:selectManyChec= kbox are sent to appropriate method (isValid() ) as String[]. (Every item f= rom selectManyCheckbox is another array item). Its the same behavior for Mo= jarra and MyFaces. @Size annotation declare that it should work with String, Collection, Map a= nd Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5754165792447506637==-- From jira-events at lists.jboss.org Fri Jun 3 09:08:59 2011 Content-Type: multipart/mixed; boundary="===============6855240594946023314==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Commented: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 03 Jun 2011 09:08:59 -0400 Message-ID: <688152367.3535.1307106539710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6855240594946023314== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606317#com= ment-12606317 ] = J=C3=A1n Jamrich commented on RF-11035: ---------------------------------- Exception get with MyFaces: javax.faces.FacesException: javax.validation.ValidationException: Unexpecte= d exception during isValid call at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(Except= ionHandlerImpl.java:241) at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(Exce= ptionHandlerImpl.java:156) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.j= ava:191) at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:1= 18) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:304) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFil= ter.java:93) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.richfaces.webapp.PushFilter.doFilter(PushFilter.java:130) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:164) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticato= rBase.java:462) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:164) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:100) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:56= 2) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 395) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:2= 50) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:188) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.= java:302) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) at java.lang.Thread.run(Thread.java:619) Caused by: javax.validation.ValidationException: Unexpected exception durin= g isValid call at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(= ConstraintTree.java:156) at org.hibernate.validator.engine.ConstraintTree.validateConstraints(Const= raintTree.java:140) at org.hibernate.validator.metadata.MetaConstraint.validateConstraint(Meta= Constraint.java:121) at org.hibernate.validator.engine.ValidatorImpl.validateValueForGroup(Vali= datorImpl.java:648) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImp= l.java:584) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImp= l.java:146) at javax.faces.validator.BeanValidator.validate(BeanValidator.java:183) at javax.faces.component._ComponentUtils.callValidators(_ComponentUtils.ja= va:173) at javax.faces.component.UISelectMany.validateValue(UISelectMany.java:347) at javax.faces.component.UIInput.validate(UIInput.java:583) at javax.faces.component.UISelectMany.validate(UISelectMany.java:392) at javax.faces.component.UIInput.processValidators(UIInput.java:247) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIForm.processValidators(UIForm.java:147) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIViewRoot._processValidatorsDefault(UIViewRoot.j= ava:1322) at javax.faces.component.UIViewRoot.access$500(UIViewRoot.java:75) at javax.faces.component.UIViewRoot$ProcessValidatorPhaseProcessor.process= (UIViewRoot.java:1397) at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1278) at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:754) at org.apache.myfaces.lifecycle.ProcessValidationsExecutor.execute(Process= ValidationsExecutor.java:34) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.j= ava:171) ... 24 more Caused by: java.lang.ClassCastException: [Ljava.lang.String; cannot be cast= to java.util.Collection at org.hibernate.validator.constraints.impl.SizeValidatorForCollection.isV= alid(SizeValidatorForCollection.java:30) at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(= ConstraintTree.java:153) ... 47 more > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6855240594946023314==-- From jira-events at lists.jboss.org Fri Jun 3 09:08:59 2011 Content-Type: multipart/mixed; boundary="===============4125527413865605989==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 03 Jun 2011 09:08:59 -0400 Message-ID: <1434999662.3528.1307106539486.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4125527413865605989== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich updated RF-11035: ----------------------------- Environment: = * RichFaces 4.1.0-SNAPSHOT r.22520 * Metamer ${4.1.0-SNAPSHOT} r.${22520} * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 * Apache Tomcat 7.0.12 * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux * Firefox 3.6.17 @ Linux x86_64 was: * RichFaces 4.1.0-SNAPSHOT r.22520 * Metamer ${4.1.0-SNAPSHOT} r.${22520} * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / * Apache Tomcat 7.0.12 * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux * Firefox 3.6.17 @ Linux x86_64 > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4125527413865605989==-- From jira-events at lists.jboss.org Fri Jun 3 09:09:00 2011 Content-Type: multipart/mixed; boundary="===============3856895287962822429==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 03 Jun 2011 09:08:59 -0400 Message-ID: <286056970.3544.1307106539925.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3856895287962822429== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich updated RF-11035: ----------------------------- Comment: was deleted (was: Exception get with MyFaces: javax.faces.FacesException: javax.validation.ValidationException: Unexpecte= d exception during isValid call at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(Except= ionHandlerImpl.java:241) at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(Exce= ptionHandlerImpl.java:156) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.j= ava:191) at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:1= 18) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:304) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFil= ter.java:93) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.richfaces.webapp.PushFilter.doFilter(PushFilter.java:130) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applic= ationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFil= terChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperVal= ve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextVal= ve.java:164) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(Authenticato= rBase.java:462) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.jav= a:164) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav= a:100) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:56= 2) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve= .java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:= 395) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:2= 50) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process= (Http11Protocol.java:188) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.= java:302) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecut= or.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.j= ava:908) at java.lang.Thread.run(Thread.java:619) Caused by: javax.validation.ValidationException: Unexpected exception durin= g isValid call at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(= ConstraintTree.java:156) at org.hibernate.validator.engine.ConstraintTree.validateConstraints(Const= raintTree.java:140) at org.hibernate.validator.metadata.MetaConstraint.validateConstraint(Meta= Constraint.java:121) at org.hibernate.validator.engine.ValidatorImpl.validateValueForGroup(Vali= datorImpl.java:648) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImp= l.java:584) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImp= l.java:146) at javax.faces.validator.BeanValidator.validate(BeanValidator.java:183) at javax.faces.component._ComponentUtils.callValidators(_ComponentUtils.ja= va:173) at javax.faces.component.UISelectMany.validateValue(UISelectMany.java:347) at javax.faces.component.UIInput.validate(UIInput.java:583) at javax.faces.component.UISelectMany.validate(UISelectMany.java:392) at javax.faces.component.UIInput.processValidators(UIInput.java:247) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIForm.processValidators(UIForm.java:147) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIComponentBase.processValidators(UIComponentBase= .java:1218) at javax.faces.component.UIViewRoot._processValidatorsDefault(UIViewRoot.j= ava:1322) at javax.faces.component.UIViewRoot.access$500(UIViewRoot.java:75) at javax.faces.component.UIViewRoot$ProcessValidatorPhaseProcessor.process= (UIViewRoot.java:1397) at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1278) at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:754) at org.apache.myfaces.lifecycle.ProcessValidationsExecutor.execute(Process= ValidationsExecutor.java:34) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.j= ava:171) ... 24 more Caused by: java.lang.ClassCastException: [Ljava.lang.String; cannot be cast= to java.util.Collection at org.hibernate.validator.constraints.impl.SizeValidatorForCollection.isV= alid(SizeValidatorForCollection.java:30) at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(= ConstraintTree.java:153) ... 47 more) > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3856895287962822429==-- From jira-events at lists.jboss.org Fri Jun 3 09:12:59 2011 Content-Type: multipart/mixed; boundary="===============7372395591368358200==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 03 Jun 2011 09:12:59 -0400 Message-ID: <1165370327.3589.1307106779587.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7372395591368358200== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich updated RF-11035: ----------------------------- Attachment: exception-with-mojarra exception-with-myFaces Attaching files with stacktrace (myFaces and Mojarra) > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > Attachments: exception-with-mojarra, exception-with-myFaces > > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7372395591368358200==-- From jira-events at lists.jboss.org Fri Jun 3 10:08:59 2011 Content-Type: multipart/mixed; boundary="===============2275311206664084156==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE Date: Fri, 03 Jun 2011 10:08:59 -0400 Message-ID: <1965688371.3814.1307110139514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2275311206664084156== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11033?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606363#com= ment-12606363 ] = Jesse Bowes commented on RF-11033: ---------------------------------- This is not specific to Richfaces, but is from IE. http://commons.apache.org/fileupload/faq.html#whole-path-from-IE offers a w= orkaround. > fileUpload UploadedFile.getName contains full path information on IE > -------------------------------------------------------------------- > > Key: RF-11033 > URL: https://issues.jboss.org/browse/RF-11033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Reporter: Jesse Bowes > Labels: IE, fileupload, upload > > This was tested on IE6 and IE9: > When I upload a file using the fileUpload component, the filename associa= ted with the file that was uploaded is the full path to the file (e.g. c:\p= ath\to\file.txt). On Firefox and Chrome, it would just be file.txt. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2275311206664084156==-- From jira-events at lists.jboss.org Fri Jun 3 10:09:00 2011 Content-Type: multipart/mixed; boundary="===============7134343476308248319==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE Date: Fri, 03 Jun 2011 10:09:00 -0400 Message-ID: <1737385608.3829.1307110140078.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7134343476308248319== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jesse Bowes resolved RF-11033. ------------------------------ Resolution: Won't Fix > fileUpload UploadedFile.getName contains full path information on IE > -------------------------------------------------------------------- > > Key: RF-11033 > URL: https://issues.jboss.org/browse/RF-11033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Reporter: Jesse Bowes > Labels: IE, fileupload, upload > > This was tested on IE6 and IE9: > When I upload a file using the fileUpload component, the filename associa= ted with the file that was uploaded is the full path to the file (e.g. c:\p= ath\to\file.txt). On Firefox and Chrome, it would just be file.txt. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7134343476308248319==-- From jira-events at lists.jboss.org Fri Jun 3 10:09:00 2011 Content-Type: multipart/mixed; boundary="===============4966121402071737693==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE Date: Fri, 03 Jun 2011 10:09:00 -0400 Message-ID: <1999203333.3831.1307110140118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4966121402071737693== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11033?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jesse Bowes closed RF-11033. ---------------------------- > fileUpload UploadedFile.getName contains full path information on IE > -------------------------------------------------------------------- > > Key: RF-11033 > URL: https://issues.jboss.org/browse/RF-11033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Reporter: Jesse Bowes > Labels: IE, fileupload, upload > > This was tested on IE6 and IE9: > When I upload a file using the fileUpload component, the filename associa= ted with the file that was uploaded is the full path to the file (e.g. c:\p= ath\to\file.txt). On Firefox and Chrome, it would just be file.txt. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4966121402071737693==-- From jira-events at lists.jboss.org Fri Jun 3 16:33:59 2011 Content-Type: multipart/mixed; boundary="===============0677758099127778536==" MIME-Version: 1.0 From: Gleb Galkin (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7134) provide facets for rich:suggestionBox Date: Fri, 03 Jun 2011 16:33:59 -0400 Message-ID: <844520454.4545.1307133239512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0677758099127778536== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7134?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Gleb Galkin reassigned RF-7134: ------------------------------- Assignee: Gleb Galkin (was: Nick Belaevski) > provide facets for rich:suggestionBox > ------------------------------------- > > Key: RF-7134 > URL: https://issues.jboss.org/browse/RF-7134 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.3.0 > Reporter: nimo stephan > Assignee: Gleb Galkin > Priority: Minor > Fix For: 3.Future > > > I have a rich:suggestionbox coupling with a query. The query is limited t= o fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbo= x, which triggers a action to fetch the next 50 rows and update my suggesti= onbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a foote= r-facet or header-facet, but rich:suggestionbox cannot render these facets: = > > > > > > .. > > = > > > > > for a example of a Navigation within a suggestionBox, look at > http://toolkit.itmill.com/demo/sampler/#Components/Selects/ComboBoxStarts= With -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0677758099127778536==-- From jira-events at lists.jboss.org Fri Jun 3 16:43:59 2011 Content-Type: multipart/mixed; boundary="===============8648967968193668519==" MIME-Version: 1.0 From: Gleb Galkin (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7134) provide facets for rich:suggestionBox Date: Fri, 03 Jun 2011 16:43:59 -0400 Message-ID: <1668720865.4571.1307133839618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com --===============8648967968193668519== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7134?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Gleb Galkin updated RF-7134: ---------------------------- Attachment: RF-7134.patch > provide facets for rich:suggestionBox > ------------------------------------- > > Key: RF-7134 > URL: https://issues.jboss.org/browse/RF-7134 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.3.0 > Reporter: nimo stephan > Assignee: Gleb Galkin > Priority: Minor > Fix For: 3.Future > > Attachments: RF-7134.patch > > > I have a rich:suggestionbox coupling with a query. The query is limited t= o fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbo= x, which triggers a action to fetch the next 50 rows and update my suggesti= onbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a foote= r-facet or header-facet, but rich:suggestionbox cannot render these facets: = > > > > > > .. > > = > > > > > for a example of a Navigation within a suggestionBox, look at > http://toolkit.itmill.com/demo/sampler/#Components/Selects/ComboBoxStarts= With -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8648967968193668519==-- From jira-events at lists.jboss.org Fri Jun 3 16:43:59 2011 Content-Type: multipart/mixed; boundary="===============0854015060848170252==" MIME-Version: 1.0 From: Gleb Galkin (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-7134) provide facets for rich:suggestionBox Date: Fri, 03 Jun 2011 16:43:59 -0400 Message-ID: <117220031.4574.1307133839682.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0854015060848170252== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7134?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606436#comm= ent-12606436 ] = Gleb Galkin commented on RF-7134: --------------------------------- Patch with fix is attached. Please, review. > provide facets for rich:suggestionBox > ------------------------------------- > > Key: RF-7134 > URL: https://issues.jboss.org/browse/RF-7134 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.3.0 > Reporter: nimo stephan > Assignee: Gleb Galkin > Priority: Minor > Fix For: 3.Future > > Attachments: RF-7134.patch > > > I have a rich:suggestionbox coupling with a query. The query is limited t= o fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbo= x, which triggers a action to fetch the next 50 rows and update my suggesti= onbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a foote= r-facet or header-facet, but rich:suggestionbox cannot render these facets: = > > > > > > .. > > = > > > > > for a example of a Navigation within a suggestionBox, look at > http://toolkit.itmill.com/demo/sampler/#Components/Selects/ComboBoxStarts= With -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0854015060848170252==-- From jira-events at lists.jboss.org Sun Jun 5 12:57:59 2011 Content-Type: multipart/mixed; boundary="===============9144153900394131748==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. Date: Sun, 05 Jun 2011 12:57:59 -0400 Message-ID: <271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============9144153900394131748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable richfaces-showcase: can't build in trunk checkstyle failed. ----------------------------------------------------------- Key: RF-11036 URL: https://issues.jboss.org/browse/RF-11036 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Reporter: Ilya Shaikovsky just forked richfaces-showcase and after trying to build getting = [INFO] Building Richfaces Examples: Richfaces Showcase Application 4.1.0-SN= APSHO T [INFO] --------------------------------------------------------------------= ---- [INFO] [INFO] >>> maven-eclipse-plugin:2.7:eclipse (default-cli) @ richfaces-showc= ase > >> [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-version= s) @ richfaces-showcase --- [WARNING] This rule is not compatible with the current version of Maven. Th= e rul e is not able to perform any checks. [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version) = @ ric hfaces-showcase --- [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-version)= @ ri chfaces-showcase --- [INFO] [INFO] --- maven-checkstyle-plugin:2.5:check (richfaces-checkstyle-report) = @ ric hfaces-showcase --- [INFO] [INFO] There are 1 checkstyle errors. [ERROR] MediaData.java[12:null] array initialization child at indentation l= evel 12 not at correct indentation, [8, 44] [INFO] --------------------------------------------------------------------= ---- [INFO] BUILD FAILURE [INFO] --------------------------------------------------------------------= ---- -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9144153900394131748==-- From jira-events at lists.jboss.org Sun Jun 5 13:45:59 2011 Content-Type: multipart/mixed; boundary="===============1830721708243083748==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. Date: Sun, 05 Jun 2011 13:45:59 -0400 Message-ID: <2065374324.5018.1307295959629.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1830721708243083748== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11036?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606487#com= ment-12606487 ] = Ilya Shaikovsky edited comment on RF-11036 at 6/5/11 1:45 PM: -------------------------------------------------------------- nevermind, removed all org.richfaces stuff from local repo and now it's wo= rking. was (Author: ilya_shaikovsky): nevermind, remove all org.richfaces stuff from local repo and now it's= working. = > richfaces-showcase: can't build in trunk checkstyle failed. > ----------------------------------------------------------- > > Key: RF-11036 > URL: https://issues.jboss.org/browse/RF-11036 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Reporter: Ilya Shaikovsky > > just forked richfaces-showcase and after trying to build getting = > [INFO] Building Richfaces Examples: Richfaces Showcase Application 4.1.0-= SNAPSHO > T > [INFO] ------------------------------------------------------------------= ------ > [INFO] > [INFO] >>> maven-eclipse-plugin:2.7:eclipse (default-cli) @ richfaces-sho= wcase > > >> > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versi= ons) @ > richfaces-showcase --- > [WARNING] This rule is not compatible with the current version of Maven. = The rul > e is not able to perform any checks. > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version= ) @ ric > hfaces-showcase --- > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-versio= n) @ ri > chfaces-showcase --- > [INFO] > [INFO] --- maven-checkstyle-plugin:2.5:check (richfaces-checkstyle-report= ) @ ric > hfaces-showcase --- > [INFO] > [INFO] There are 1 checkstyle errors. > [ERROR] MediaData.java[12:null] array initialization child at indentation= level > 12 not at correct indentation, [8, 44] > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1830721708243083748==-- From jira-events at lists.jboss.org Sun Jun 5 13:45:59 2011 Content-Type: multipart/mixed; boundary="===============2542970019884894691==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. Date: Sun, 05 Jun 2011 13:45:59 -0400 Message-ID: <1593421590.5014.1307295959502.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2542970019884894691== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11036?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ilya Shaikovsky resolved RF-11036. ---------------------------------- Resolution: Cannot Reproduce Bug nevermind, remove all org.richfaces stuff from local repo and now it's wor= king. > richfaces-showcase: can't build in trunk checkstyle failed. > ----------------------------------------------------------- > > Key: RF-11036 > URL: https://issues.jboss.org/browse/RF-11036 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Reporter: Ilya Shaikovsky > > just forked richfaces-showcase and after trying to build getting = > [INFO] Building Richfaces Examples: Richfaces Showcase Application 4.1.0-= SNAPSHO > T > [INFO] ------------------------------------------------------------------= ------ > [INFO] > [INFO] >>> maven-eclipse-plugin:2.7:eclipse (default-cli) @ richfaces-sho= wcase > > >> > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versi= ons) @ > richfaces-showcase --- > [WARNING] This rule is not compatible with the current version of Maven. = The rul > e is not able to perform any checks. > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-java-version= ) @ ric > hfaces-showcase --- > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-maven-versio= n) @ ri > chfaces-showcase --- > [INFO] > [INFO] --- maven-checkstyle-plugin:2.5:check (richfaces-checkstyle-report= ) @ ric > hfaces-showcase --- > [INFO] > [INFO] There are 1 checkstyle errors. > [ERROR] MediaData.java[12:null] array initialization child at indentation= level > 12 not at correct indentation, [8, 44] > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2542970019884894691==-- From jira-events at lists.jboss.org Sun Jun 5 13:50:59 2011 Content-Type: multipart/mixed; boundary="===============8694186336586394928==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11037) richfaces-showcase: new demos Date: Sun, 05 Jun 2011 13:50:59 -0400 Message-ID: <1560828782.5020.1307296259290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8694186336586394928== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable richfaces-showcase: new demos ----------------------------- Key: RF-11037 URL: https://issues.jboss.org/browse/RF-11037 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.0.0.Final Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky Fix For: 4.1.0.Milestone1 I would like to contribute some demos to components showcase app. I will create subtasks to track proposed ones. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8694186336586394928==-- From jira-events at lists.jboss.org Sun Jun 5 15:28:59 2011 Content-Type: multipart/mixed; boundary="===============5188952183831899068==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11038) extendedTable: sorting sample Date: Sun, 05 Jun 2011 15:28:59 -0400 Message-ID: <721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5188952183831899068== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable extendedTable: sorting sample ----------------------------- Key: RF-11038 URL: https://issues.jboss.org/browse/RF-11038 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.0.0.Final Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5188952183831899068==-- From jira-events at lists.jboss.org Sun Jun 5 15:28:59 2011 Content-Type: multipart/mixed; boundary="===============8072981195164440907==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11039) extendedTable: sorting sample Date: Sun, 05 Jun 2011 15:28:59 -0400 Message-ID: <1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8072981195164440907== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable extendedTable: sorting sample ----------------------------- Key: RF-11039 URL: https://issues.jboss.org/browse/RF-11039 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: examples Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8072981195164440907==-- From jira-events at lists.jboss.org Sun Jun 5 15:30:59 2011 Content-Type: multipart/mixed; boundary="===============1781636958768332931==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11039) extendedTable: filtering sample Date: Sun, 05 Jun 2011 15:30:59 -0400 Message-ID: <447074659.5032.1307302259414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1781636958768332931== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11039?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ilya Shaikovsky updated RF-11039: --------------------------------- Summary: extendedTable: filtering sample (was: extendedTable= : sorting sample) Affects Version/s: 4.0.0.Final Affects: [Interactive Demo/Tutorial] > extendedTable: filtering sample > ------------------------------- > > Key: RF-11039 > URL: https://issues.jboss.org/browse/RF-11039 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1781636958768332931==-- From jira-events at lists.jboss.org Sun Jun 5 16:57:59 2011 Content-Type: multipart/mixed; boundary="===============4557735163560554232==" MIME-Version: 1.0 From: Karol Bryd (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome Date: Sun, 05 Jun 2011 16:57:59 -0400 Message-ID: <1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4557735163560554232== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:extendedDataTable row selection does not work in Firefox and Chrome ------------------------------------------------------------------------ Key: RF-11040 URL: https://issues.jboss.org/browse/RF-11040 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.0.0.Final Environment: Java 1.6, Apache Tomcat 6, Firefox 5.0 Beta, Chrome 1= 1, RichFaces 4.0.0 Final Reporter: Karol Bryd The rich:extendedDataTable (single or multi) row selection does not work in= Firefox and Chrome. It does work in IE 6. I have used almost the same code= as is available in Richfaces showcase. Either I am doing something wrong o= r there is something extra required to make it work which is not clearly de= scribed in RichFaces showcase. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4557735163560554232==-- From jira-events at lists.jboss.org Sun Jun 5 17:17:59 2011 Content-Type: multipart/mixed; boundary="===============7015755549266529037==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11041) extendedTable: ajax loading sample Date: Sun, 05 Jun 2011 17:17:59 -0400 Message-ID: <1837462659.5046.1307308679305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7015755549266529037== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable extendedTable: ajax loading sample ---------------------------------- Key: RF-11041 URL: https://issues.jboss.org/browse/RF-11041 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: examples Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7015755549266529037==-- From jira-events at lists.jboss.org Sun Jun 5 20:51:59 2011 Content-Type: multipart/mixed; boundary="===============8625734114493260358==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11042) autocomplete: custom layouts sample Date: Sun, 05 Jun 2011 20:51:59 -0400 Message-ID: <369138524.5078.1307321519313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8625734114493260358== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable autocomplete: custom layouts sample ----------------------------------- Key: RF-11042 URL: https://issues.jboss.org/browse/RF-11042 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: examples Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8625734114493260358==-- From jira-events at lists.jboss.org Mon Jun 6 07:39:59 2011 Content-Type: multipart/mixed; boundary="===============1889609022256965032==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Mon, 06 Jun 2011 07:39:59 -0400 Message-ID: <2135118332.5801.1307360399326.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1889609022256965032== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11029: ---------------------------- Git Pull Request: https://github.com/richfaces/showcase/pull/3, https:/= /github.com/richfaces/components/pull/3, https://github.com/richfaces/cdk/p= ull/2 > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1889609022256965032==-- From jira-events at lists.jboss.org Mon Jun 6 07:57:59 2011 Content-Type: multipart/mixed; boundary="===============3976781840666865627==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11043) Collect requirements on Editor component in community Date: Mon, 06 Jun 2011 07:57:59 -0400 Message-ID: <1033119338.5830.1307361479654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3976781840666865627== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Collect requirements on Editor component in community ----------------------------------------------------- Key: RF-11043 URL: https://issues.jboss.org/browse/RF-11043 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 Search through forums and collect requirements. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3976781840666865627==-- From jira-events at lists.jboss.org Mon Jun 6 07:59:59 2011 Content-Type: multipart/mixed; boundary="===============8169272208520020334==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11044) Look for Editor implementations which suites requirements Date: Mon, 06 Jun 2011 07:59:59 -0400 Message-ID: <1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8169272208520020334== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Look for Editor implementations which suites requirements --------------------------------------------------------- Key: RF-11044 URL: https://issues.jboss.org/browse/RF-11044 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8169272208520020334==-- From jira-events at lists.jboss.org Mon Jun 6 08:00:00 2011 Content-Type: multipart/mixed; boundary="===============1947906657035636922==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11044) Look for Editor implementations which suits requirements Date: Mon, 06 Jun 2011 08:00:00 -0400 Message-ID: <1108836922.5870.1307361600373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1947906657035636922== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11044: ---------------------------- Summary: Look for Editor implementations which suits requirements (was= : Look for Editor implementations which suites requirements) > Look for Editor implementations which suits requirements > -------------------------------------------------------- > > Key: RF-11044 > URL: https://issues.jboss.org/browse/RF-11044 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1947906657035636922==-- From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 Content-Type: multipart/mixed; boundary="===============6576819497343280697==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11045) Showcase: tabs with samples are trimmed Date: Mon, 06 Jun 2011 08:01:59 -0400 Message-ID: <2033063827.5882.1307361719569.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6576819497343280697== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11045?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-11045: ------------------------------- Attachment: showcase-tabs.png > Showcase: tabs with samples are trimmed = > ---------------------------------------- > > Key: RF-11045 > URL: https://issues.jboss.org/browse/RF-11045 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Attachments: showcase-tabs.png > > > Tabs in Showcase are trimmed in the case that there are more samples, e.g= . for rich:dataTable (see screenshot). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6576819497343280697==-- From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 Content-Type: multipart/mixed; boundary="===============1995314994651077996==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11046) Involve community in choosing right implementation Date: Mon, 06 Jun 2011 08:01:59 -0400 Message-ID: <379244875.5883.1307361719604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1995314994651077996== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Involve community in choosing right implementation -------------------------------------------------- Key: RF-11046 URL: https://issues.jboss.org/browse/RF-11046 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 Write on forums about possible implementation choices and create poll. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1995314994651077996==-- From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 Content-Type: multipart/mixed; boundary="===============2161005057765913910==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11045) Showcase: tabs with samples are trimmed Date: Mon, 06 Jun 2011 08:01:59 -0400 Message-ID: <1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2161005057765913910== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Showcase: tabs with samples are trimmed = ---------------------------------------- Key: RF-11045 URL: https://issues.jboss.org/browse/RF-11045 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.0.0.Final Reporter: Pavol Pitonak Attachments: showcase-tabs.png Tabs in Showcase are trimmed in the case that there are more samples, e.g. = for rich:dataTable (see screenshot). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2161005057765913910==-- From jira-events at lists.jboss.org Mon Jun 6 08:04:59 2011 Content-Type: multipart/mixed; boundary="===============7621553233462782008==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11048) Write QUnit tests for editor component Date: Mon, 06 Jun 2011 08:04:59 -0400 Message-ID: <1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7621553233462782008== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Write QUnit tests for editor component -------------------------------------- Key: RF-11048 URL: https://issues.jboss.org/browse/RF-11048 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input 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. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7621553233462782008==-- From jira-events at lists.jboss.org Mon Jun 6 08:04:59 2011 Content-Type: multipart/mixed; boundary="===============4431428476102901862==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11047) Mock-up the Editor component Date: Mon, 06 Jun 2011 08:04:59 -0400 Message-ID: <994498981.5891.1307361899374.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4431428476102901862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Mock-up the Editor component ---------------------------- Key: RF-11047 URL: https://issues.jboss.org/browse/RF-11047 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4431428476102901862==-- From jira-events at lists.jboss.org Mon Jun 6 08:06:59 2011 Content-Type: multipart/mixed; boundary="===============3760396562715283217==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11048) Write QUnit tests for editor component Date: Mon, 06 Jun 2011 08:06:59 -0400 Message-ID: <903135293.5904.1307362019413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3760396562715283217== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11048?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11048: ---------------------------- Fix Version/s: 4.1.0.Milestone1 > Write QUnit tests for editor component > -------------------------------------- > > Key: RF-11048 > URL: https://issues.jboss.org/browse/RF-11048 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input, tests - unit > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3760396562715283217==-- From jira-events at lists.jboss.org Mon Jun 6 08:07:00 2011 Content-Type: multipart/mixed; boundary="===============1905170766675516592==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11048) Write QUnit tests for editor component Date: Mon, 06 Jun 2011 08:07:00 -0400 Message-ID: <1104764864.5916.1307362020025.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1905170766675516592== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11048?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11048: ---------------------------- Component/s: tests - unit > Write QUnit tests for editor component > -------------------------------------- > > Key: RF-11048 > URL: https://issues.jboss.org/browse/RF-11048 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input, tests - unit > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1905170766675516592==-- From jira-events at lists.jboss.org Mon Jun 6 08:07:00 2011 Content-Type: multipart/mixed; boundary="===============4674669424225426971==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11049) Write server side unit tests for Editor Date: Mon, 06 Jun 2011 08:06:59 -0400 Message-ID: <412025226.5915.1307362019967.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4674669424225426971== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Write server side unit tests for Editor --------------------------------------- Key: RF-11049 URL: https://issues.jboss.org/browse/RF-11049 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input, tests - unit Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4674669424225426971==-- From jira-events at lists.jboss.org Mon Jun 6 08:10:59 2011 Content-Type: multipart/mixed; boundary="===============4360757134692083390==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11050) Editor: add component to QE environment Date: Mon, 06 Jun 2011 08:10:59 -0400 Message-ID: <186438996.5929.1307362259299.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4360757134692083390== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Editor: add component to QE environment --------------------------------------- Key: RF-11050 URL: https://issues.jboss.org/browse/RF-11050 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: qe Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4360757134692083390==-- From jira-events at lists.jboss.org Mon Jun 6 08:12:59 2011 Content-Type: multipart/mixed; boundary="===============6121393315400617876==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11044) Look for Editor implementations which suits requirements Date: Mon, 06 Jun 2011 08:12:59 -0400 Message-ID: <1303845705.5931.1307362379326.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6121393315400617876== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11044: ---------------------------- Description: http://www.queness.com/post/212/10-jquery-and-non-jquery-j= avascript-rich-text-editors > Look for Editor implementations which suits requirements > -------------------------------------------------------- > > Key: RF-11044 > URL: https://issues.jboss.org/browse/RF-11044 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-rich-= text-editors -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6121393315400617876==-- From jira-events at lists.jboss.org Mon Jun 6 08:33:59 2011 Content-Type: multipart/mixed; boundary="===============4400523924858858961==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11051) a4j.version does not work Date: Mon, 06 Jun 2011 08:33:59 -0400 Message-ID: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4400523924858858961== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable a4j.version does not work ------------------------- Key: RF-11051 URL: https://issues.jboss.org/browse/RF-11051 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: base functionality = Affects Versions: 4.0.0.Final Reporter: Pavol Pitonak #{a4j.version} for latest RichFaces returns the following string: {quote} RichFaces Core Implementation by JBoss, a division of Red Hat, Inc., versio= n v.4.1.0-SNAPSHOT SVN r.unknown {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4400523924858858961==-- From jira-events at lists.jboss.org Mon Jun 6 09:42:00 2011 Content-Type: multipart/mixed; boundary="===============4610323313172525029==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11052) Module components cannot be build with Maven 3 Date: Mon, 06 Jun 2011 09:42:00 -0400 Message-ID: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4610323313172525029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Module components cannot be build with Maven 3 ---------------------------------------------- Key: RF-11052 URL: https://issues.jboss.org/browse/RF-11052 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Environment: RichFaces 4.1.0-SNAPSHOT Maven 3.0.3 Reporter: Pavol Pitonak # Clone Git repository https://github.com/richfaces/components.git # run mvn clean package using Maven 3.0.3 result: {quote} [INFO] --------------------------------------------------------------------= ---- [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT [INFO] --------------------------------------------------------------------= ---- ... [INFO] --------------------------------------------------------------------= ---- [INFO] BUILD FAILURE [INFO] --------------------------------------------------------------------= ---- [INFO] Total time: 3.449s [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 [INFO] Final Memory: 8M/105M [INFO] --------------------------------------------------------------------= ---- [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:= 1.3.3:shade (default) on project richfaces-components-api: Error creating s= haded jar: 1 problem was encountered while building the effective model for= org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom:4= .1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom:1= 0 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' poin= ts at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data/e= clipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHO= T at /data/eclipse-workspace/richfaces/components/dist/richfaces-components= -api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-comp= onents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components/d= ist/richfaces-components-api/dependency-reduced-pom.xml [ERROR] -> [Help 1] [ERROR] = [ERROR] To see the full stack trace of the errors, re-run Maven with the -e= switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] = [ERROR] For more information about the errors and possible solutions, pleas= e read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecu= tionException {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4610323313172525029==-- From jira-events at lists.jboss.org Mon Jun 6 10:16:00 2011 Content-Type: multipart/mixed; boundary="===============9216679945598909926==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Date: Mon, 06 Jun 2011 10:16:00 -0400 Message-ID: <299471305.6223.1307369760355.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9216679945598909926== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11029?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12606600#com= ment-12606600 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11029: --------------------------------- components: two commits, send pull request > Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing > ------------------------------------------------------------------------ > > Key: RF-11029 > URL: https://issues.jboss.org/browse/RF-11029 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Affects Versions: 4.0.1.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > This requires reviewing the differences and jira's associated with those = changes. There are some items that are only in master, and others that may= only be in 4.0.X. We need to be careful not to overwrite something that w= as intended for 4.1.0 only. > This should not be too extensive as a merge like this was performed right= after 4.0.0.Final was spun RF-10785. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9216679945598909926==-- From jira-events at lists.jboss.org Mon Jun 6 11:32:59 2011 Content-Type: multipart/mixed; boundary="===============9177280093688256989==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11053) Showcase: layout broken in data grid sample Date: Mon, 06 Jun 2011 11:32:59 -0400 Message-ID: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============9177280093688256989== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Showcase: layout broken in data grid sample ------------------------------------------- Key: RF-11053 URL: https://issues.jboss.org/browse/RF-11053 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: showcase Affects Versions: 4.0.0.Final Environment: Showcase 4.1.0-SNAPSHOT Reporter: Pavol Pitonak Attachments: showcase-datagrid.png # deploy showcase # open http://localhost:8080/richfaces-showcase/richfaces/component-sample.= jsf?demo=3DdataGrid result: the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9177280093688256989==-- From jira-events at lists.jboss.org Mon Jun 6 11:32:59 2011 Content-Type: multipart/mixed; boundary="===============0815889488001633867==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11053) Showcase: layout broken in data grid sample Date: Mon, 06 Jun 2011 11:32:59 -0400 Message-ID: <1143779968.6537.1307374379731.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0815889488001633867== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11053?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-11053: ------------------------------- Attachment: showcase-datagrid.png > Showcase: layout broken in data grid sample > ------------------------------------------- > > Key: RF-11053 > URL: https://issues.jboss.org/browse/RF-11053 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Environment: Showcase 4.1.0-SNAPSHOT > Reporter: Pavol Pitonak > Attachments: showcase-datagrid.png > > > # deploy showcase > # open http://localhost:8080/richfaces-showcase/richfaces/component-sampl= e.jsf?demo=3DdataGrid > result: > the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0815889488001633867==-- From jira-events at lists.jboss.org Mon Jun 6 17:47:59 2011 Content-Type: multipart/mixed; boundary="===============0941120980149702626==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Created: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Mon, 06 Jun 2011 17:47:59 -0400 Message-ID: <1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0941120980149702626== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dynamically created tabs within tabPanel causes NPE in getActiveItem() ---------------------------------------------------------------------- Key: RF-11054 URL: https://issues.jboss.org/browse/RF-11054 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Environment: RichFaces 4.1.0-SNAPSHOT r.22526 Metamer r.22526 Mojarra 2.0.4-b09 Apache Tomcat 7.0.12 Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux Chrome 12.0.718.0 @ Linux i686 Reporter: J=C3=A1n Jamrich When set switchType on TabPanel to "server" (notice that with "client" ever= ything works correctly, with "ajax" tab switch not work as well as with "nu= ll"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0941120980149702626==-- From jira-events at lists.jboss.org Mon Jun 6 17:49:59 2011 Content-Type: multipart/mixed; boundary="===============5630153606102646340==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Updated: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Mon, 06 Jun 2011 17:49:59 -0400 Message-ID: <648858504.7335.1307396999385.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5630153606102646340== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] J=C3=A1n Jamrich updated RF-11054: ----------------------------- Attachment: exception-on-tab-switch Attached stack-trace with exception which appears when switch dynamically c= reated tab with switchType=3D"server" > Dynamically created tabs within tabPanel causes NPE in getActiveItem() > ---------------------------------------------------------------------- > > Key: RF-11054 > URL: https://issues.jboss.org/browse/RF-11054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Environment: RichFaces 4.1.0-SNAPSHOT r.22526 > Metamer r.22526 > Mojarra 2.0.4-b09 > Apache Tomcat 7.0.12 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" ev= erything works correctly, with "ajax" tab switch not work as well as with "= null"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5630153606102646340==-- From jira-events at lists.jboss.org Tue Jun 7 10:57:59 2011 Content-Type: multipart/mixed; boundary="===============6097120560146824012==" MIME-Version: 1.0 From: Balazs Zsoldos (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11055) Make fileupload portlet enabled Date: Tue, 07 Jun 2011 10:57:59 -0400 Message-ID: <1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6097120560146824012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Make fileupload portlet enabled ------------------------------- Key: RF-11055 URL: https://issues.jboss.org/browse/RF-11055 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component Affects Versions: 4.0.0.Final Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.0= .Final Reporter: Balazs Zsoldos Currently FileUploadFacesContextFactory and in related classes depend on Ht= tpServletRequest and HttpServletResponse and HttpSession that make it impos= sible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6097120560146824012==-- From jira-events at lists.jboss.org Wed Jun 8 03:19:59 2011 Content-Type: multipart/mixed; boundary="===============4883287647432085660==" MIME-Version: 1.0 From: Marc-Christian Schroeer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11056) rich:calendar not working in popupPanel Date: Wed, 08 Jun 2011 03:19:59 -0400 Message-ID: <529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4883287647432085660== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:calendar not working in popupPanel = ---------------------------------------- Key: RF-11056 URL: https://issues.jboss.org/browse/RF-11056 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.0.0.Final Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final Reporter: Marc-Christian Schroeer A rich:calendar component within a popupPanel does not work in Firefox 4.0.= 1 as clicking on the popup icon does not popup the calendar. This is not th= e case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4883287647432085660==-- From jira-events at lists.jboss.org Wed Jun 8 10:04:59 2011 Content-Type: multipart/mixed; boundary="===============3788532013806497609==" MIME-Version: 1.0 From: Karol Bryd (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome Date: Wed, 08 Jun 2011 10:04:59 -0400 Message-ID: <2097798227.12108.1307541899442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3788532013806497609== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Karol Bryd updated RF-11040: ---------------------------- Steps to Reproduce: The complete test case (together with precompile= d WAR file) is available for download from here: http://metasys.pl/bug.tar.= gz (was: The complete test case (together with precompiled WAR file) is av= ailable to download from here: http://metasys.pl/bug.tar.gz) JBoss Forum Reference: http://community.jboss.org/message/608545#608545= (was: http://community.jboss.org/message/608545#608545) > rich:extendedDataTable row selection does not work in Firefox and Chrome > ------------------------------------------------------------------------ > > Key: RF-11040 > URL: https://issues.jboss.org/browse/RF-11040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Environment: Java 1.6, Apache Tomcat 6, Firefox 5.0 Beta, Chrome = 11, RichFaces 4.0.0 Final > Reporter: Karol Bryd > > The rich:extendedDataTable (single or multi) row selection does not work = in Firefox and Chrome. It does work in IE 6. I have used almost the same co= de as is available in Richfaces showcase. Either I am doing something wrong= or there is something extra required to make it work which is not clearly = described in RichFaces showcase. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3788532013806497609==-- From jira-events at lists.jboss.org Wed Jun 8 21:35:59 2011 Content-Type: multipart/mixed; boundary="===============5376854919074415029==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11057) rf-showcase: simplify dataTable styling code Date: Wed, 08 Jun 2011 21:35:59 -0400 Message-ID: <1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5376854919074415029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rf-showcase: simplify dataTable styling code -------------------------------------------- Key: RF-11057 URL: https://issues.jboss.org/browse/RF-11057 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.0.0.Final Reporter: Ilya Shaikovsky Assignee: Ilya Shaikovsky Priority: Minor 1) do not need to use filtering attributes. 2) do not need to use both jquery and classes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5376854919074415029==-- From jira-events at lists.jboss.org Thu Jun 9 04:19:59 2011 Content-Type: multipart/mixed; boundary="===============7282669846902588240==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11058) rich:popupPanel typo in sample Date: Thu, 09 Jun 2011 04:19:59 -0400 Message-ID: <1502640688.14170.1307607599853.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7282669846902588240== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11058?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D moved RFPL-1486 to RF-11058: --------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-11058 (was: RFPL-1486) Workflow: GIT Pull Request workflow (was: jira) Affects Version/s: 4.0.0.Final (was: 4.0.0.Final) Component/s: examples (was: examples) Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Milestone1) > rich:popupPanel typo in sample > ------------------------------ > > Key: RF-11058 > URL: https://issues.jboss.org/browse/RF-11058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Environment: showcase > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7282669846902588240==-- From jira-events at lists.jboss.org Thu Jun 9 04:21:59 2011 Content-Type: multipart/mixed; boundary="===============0105295618605523538==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11058) rich:popupPanel typo in sample Date: Thu, 09 Jun 2011 04:21:59 -0400 Message-ID: <1532278544.14174.1307607719404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0105295618605523538== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11058?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11058: ---------------------------- Description: There is additional space in sample which causes that samp= le will not work for user. > rich:popupPanel typo in sample > ------------------------------ > > Key: RF-11058 > URL: https://issues.jboss.org/browse/RF-11058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Environment: showcase > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > There is additional space in sample which causes that sample will not wor= k for user. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0105295618605523538==-- From jira-events at lists.jboss.org Thu Jun 9 04:33:59 2011 Content-Type: multipart/mixed; boundary="===============3197756933358519502==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11058) rich:popupPanel typo in sample Date: Thu, 09 Jun 2011 04:33:59 -0400 Message-ID: <2118819134.14199.1307608439337.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3197756933358519502== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11058?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11058: ---------------------------- Priority: Trivial (was: Major) > rich:popupPanel typo in sample > ------------------------------ > > Key: RF-11058 > URL: https://issues.jboss.org/browse/RF-11058 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Environment: showcase > Reporter: Juraj Huska > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Trivial > Fix For: 4.1.0.Milestone1 > > > There is additional space in sample which causes that sample will not wor= k for user. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3197756933358519502==-- From jira-events at lists.jboss.org Thu Jun 9 09:15:00 2011 Content-Type: multipart/mixed; boundary="===============6576009344960277834==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-8125) Tables: built-in sorting/filtering Date: Thu, 09 Jun 2011 09:15:00 -0400 Message-ID: <1716872428.15128.1307625300305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============6576009344960277834== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8125?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607469#comm= ent-12607469 ] = Jay Balunas commented on RF-8125: --------------------------------- This is a related blog post about table sorting with RichFaces 4.0 for refe= rence - http://www.etahan.com/?p=3D65 > Tables: built-in sorting/filtering > ---------------------------------- > > Key: RF-8125 > URL: https://issues.jboss.org/browse/RF-8125 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Anton Belevich > Fix For: 4.Future > > Original Estimate: 1 week > Remaining Estimate: 1 week > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6576009344960277834==-- From jira-events at lists.jboss.org Thu Jun 9 09:17:00 2011 Content-Type: multipart/mixed; boundary="===============2356623328235166027==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8125) Tables: built-in sorting/filtering Date: Thu, 09 Jun 2011 09:16:59 -0400 Message-ID: <482783934.15140.1307625419621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============2356623328235166027== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8125?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-8125: ---------------------------- Fix Version/s: 4.1.0.Milestone1 (was: 4.Future) Priority: Critical (was: Major) For review in 4.1 > Tables: built-in sorting/filtering > ---------------------------------- > > Key: RF-8125 > URL: https://issues.jboss.org/browse/RF-8125 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Anton Belevich > Priority: Critical > Fix For: 4.1.0.Milestone1 > > Original Estimate: 1 week > Remaining Estimate: 1 week > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2356623328235166027==-- From jira-events at lists.jboss.org Thu Jun 9 11:33:00 2011 Content-Type: multipart/mixed; boundary="===============7686017794843630822==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 11:33:00 -0400 Message-ID: <1817764995.15918.1307633580011.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7686017794843630822== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607550#comm= ent-12607550 ] = Paul Reeves commented on RF-9485: --------------------------------- Geert, we have just patched this, you will also need to change richfaces-ui-3.3.3.Final\framework\impl\src\main\javascript\ajaxjsf\JSFAJAX= .js Line 1044 from LOG.debug("Hidden JSF state fields: "+idsSpan); to LOG.debug("Hidden JSF state fields: ");//+idsSpan); Infact you could just comment out the whole line if you wish = If we didn't apply this change we would get the following error in IE9 ------------- SCRIPT438: Object doesn't support this property or method = For this line 2648 in framework pack: LOG.debug("Hidden JSF state fields: "+Q); -------------------- I found this info here http://community.jboss.org/thread/156720 I've attached a patch for JSFAJAX.js as JSFAJAX.patch > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7686017794843630822==-- From jira-events at lists.jboss.org Thu Jun 9 11:40:59 2011 Content-Type: multipart/mixed; boundary="===============6824855363875301278==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 11:40:59 -0400 Message-ID: <272436557.15991.1307634059859.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6824855363875301278== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607558#comm= ent-12607558 ] = Paul Reeves commented on RF-9485: --------------------------------- I dont seem to be able to upload the patch, UI keeps saying Please indicate= the file you wish to upload so here's the patch *** JSFAJAX.js = --- JSFAJAX.js = *************** *** 1041,1047 **** } // Replace client-side hidden inputs for JSF View state. var idsSpan =3D req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: "+idsSpan); if(idsSpan !=3D null){ // For a portal case, replace content in the current window o= nly. var namespace =3D options.parameters['org.ajax4jsf.portlet.NAM= ESPACE']; --- 1041,1047 ---- } // Replace client-side hidden inputs for JSF View state. var idsSpan =3D req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: ");//+idsSpan); if(idsSpan !=3D null){ // For a portal case, replace content in the current window o= nly. var namespace =3D options.parameters['org.ajax4jsf.portlet.NAM= ESPACE']; > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6824855363875301278==-- From jira-events at lists.jboss.org Thu Jun 9 11:44:59 2011 Content-Type: multipart/mixed; boundary="===============3584836053764226817==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 11:44:59 -0400 Message-ID: <758148499.16012.1307634299895.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3584836053764226817== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607560#comm= ent-12607560 ] = Paul Reeves commented on RF-9485: --------------------------------- Please Ignore comment above, Its badly formatted and I can't delete it, Als= o cant upload the patch file either!! > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3584836053764226817==-- From jira-events at lists.jboss.org Thu Jun 9 12:03:00 2011 Content-Type: multipart/mixed; boundary="===============8724672683926457131==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 12:03:00 -0400 Message-ID: <1701997412.16086.1307635380698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8724672683926457131== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Paul Reeves updated RF-9485: ---------------------------- Attachment: JSFAJAX.txt > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8724672683926457131==-- From jira-events at lists.jboss.org Thu Jun 9 12:07:00 2011 Content-Type: multipart/mixed; boundary="===============4749272988247093426==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 12:07:00 -0400 Message-ID: <1941587772.16110.1307635620363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4749272988247093426== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607560#comm= ent-12607560 ] = Paul Reeves edited comment on RF-9485 at 6/9/11 12:05 PM: ---------------------------------------------------------- Please Ignore this comment, i can't delete it was (Author: reevesy): Please Ignore comment above, Its badly formatted and I can't delete it,= Also cant upload the patch file either!! = > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4749272988247093426==-- From jira-events at lists.jboss.org Thu Jun 9 12:07:00 2011 Content-Type: multipart/mixed; boundary="===============4128666630794357807==" MIME-Version: 1.0 From: Paul Reeves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 09 Jun 2011 12:07:00 -0400 Message-ID: <133436832.16108.1307635620134.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4128666630794357807== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607558#comm= ent-12607558 ] = Paul Reeves edited comment on RF-9485 at 6/9/11 12:05 PM: ---------------------------------------------------------- I've managed to upload the patch now... was (Author: reevesy): I dont seem to be able to upload the patch, UI keeps saying Please indi= cate the file you wish to upload so here's the patch *** JSFAJAX.js = --- JSFAJAX.js = *************** *** 1041,1047 **** } // Replace client-side hidden inputs for JSF View state. var idsSpan =3D req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: "+idsSpan); if(idsSpan !=3D null){ // For a portal case, replace content in the current window o= nly. var namespace =3D options.parameters['org.ajax4jsf.portlet.NAM= ESPACE']; --- 1041,1047 ---- } // Replace client-side hidden inputs for JSF View state. var idsSpan =3D req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: ");//+idsSpan); if(idsSpan !=3D null){ // For a portal case, replace content in the current window o= nly. var namespace =3D options.parameters['org.ajax4jsf.portlet.NAM= ESPACE']; = > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4128666630794357807==-- From jira-events at lists.jboss.org Thu Jun 9 12:18:59 2011 Content-Type: multipart/mixed; boundary="===============4835862532184852959==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11059) Implement Editor component Date: Thu, 09 Jun 2011 12:18:59 -0400 Message-ID: <1538936113.16165.1307636339437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4835862532184852959== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Implement Editor component -------------------------- Key: RF-11059 URL: https://issues.jboss.org/browse/RF-11059 Project: RichFaces Issue Type: Sub-task Security Level: Public (Everyone can see) Components: component-input Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4835862532184852959==-- From jira-events at lists.jboss.org Thu Jun 9 14:15:00 2011 Content-Type: multipart/mixed; boundary="===============0945194736952287247==" MIME-Version: 1.0 From: Balazs Zsoldos (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11055) Make fileupload portlet enabled Date: Thu, 09 Jun 2011 14:15:00 -0400 Message-ID: <445668297.16397.1307643300223.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0945194736952287247== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Balazs Zsoldos updated RF-11055: -------------------------------- Attachment: fileupload_based_on_externalcontext.patch Here is a patch that makes file upload using ExternalContext instead of pla= ying with HttpServletRequests and ServletSessions. The solution was tested on Glassfish 3.1 with the Showcase example and also= on Liferay portal 6.0.6 with JBoss portletbridge (that contained a patch t= hat I will upload today to the jira of portletbridge) There is only one portlet specific solution here: When the inputStream is a= sked if the request is not a httpServletRequest the code uses reflection an= d call "getPortletInputStream" based on portlet specification 2.0. This is = the only one portlet related line in the whole patch. > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0945194736952287247==-- From jira-events at lists.jboss.org Thu Jun 9 15:11:59 2011 Content-Type: multipart/mixed; boundary="===============8889671410758020372==" MIME-Version: 1.0 From: Karol Bryd (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome Date: Thu, 09 Jun 2011 15:11:59 -0400 Message-ID: <1162085068.16449.1307646719449.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8889671410758020372== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11040?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Karol Bryd closed RF-11040. --------------------------- Resolution: Rejected This wasn't caused by RichFaces but rather by missing CSS. > rich:extendedDataTable row selection does not work in Firefox and Chrome > ------------------------------------------------------------------------ > > Key: RF-11040 > URL: https://issues.jboss.org/browse/RF-11040 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Environment: Java 1.6, Apache Tomcat 6, Firefox 5.0 Beta, Chrome = 11, RichFaces 4.0.0 Final > Reporter: Karol Bryd > > The rich:extendedDataTable (single or multi) row selection does not work = in Firefox and Chrome. It does work in IE 6. I have used almost the same co= de as is available in Richfaces showcase. Either I am doing something wrong= or there is something extra required to make it work which is not clearly = described in RichFaces showcase. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8889671410758020372==-- From jira-events at lists.jboss.org Thu Jun 9 15:58:59 2011 Content-Type: multipart/mixed; boundary="===============2651155395252677713==" MIME-Version: 1.0 From: Tom Giberius (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Thu, 09 Jun 2011 15:58:59 -0400 Message-ID: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2651155395252677713== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable onselectionchange working incorrect with two extendedDataTable on same page --------------------------------------------------------------------------- Key: RF-11060 URL: https://issues.jboss.org/browse/RF-11060 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Environment: GlassFish 3.0.1, Firefox Reporter: Tom Giberius Priority: Critical If you put two extendedDataTable A en B on the same page then the following= goes wrong: If you selected record one of Table A en then select record one from table = B then the onselectionchange trigger does not fire. The same counts for rec= ord two, three, etc. = This prevents me for building a Master-Detail data entry screen where both = the master and the detail are multirecord. E.g. Step 1) Select records one in master and show it details. Step 2) Select record three in details, then go back to record 3 of master = and then the onselectionchange trigger does not fire. The master tables "th= inks" that record three is the selected record while actually it should be = record one which was the selected record in the master table. The correct behaviour should be that each table should "rember" it selected= record. E.g. Step 1) Select records one in master and show it details. Step 2) Select record three in detail, then go back to record 3 of master a= nd the onselectionchange of the master should fire so that details of maste= r record 3 can be shown. If you would have go back to record one of the mas= ter then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2651155395252677713==-- From jira-events at lists.jboss.org Fri Jun 10 05:14:00 2011 Content-Type: multipart/mixed; boundary="===============0273335342448432456==" MIME-Version: 1.0 From: Marc-Christian Schroeer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel Date: Fri, 10 Jun 2011 05:14:00 -0400 Message-ID: <1016087417.17669.1307697240103.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0273335342448432456== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607763#com= ment-12607763 ] = Marc-Christian Schroeer commented on RF-11056: ---------------------------------------------- I have done some research and it seems to me the table-element rendering th= e calendar is not made visible when clicking on the popup button. There is = a "display: none;" css directive in the table element but it is never chang= ed. The coordinates are updated correctly though. When using Firebug to sho= w the table, I can select different dates and all other functions work quit= e well, but the table is never hidden as well. Maybe this helps narrowing down the problem. > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0273335342448432456==-- From jira-events at lists.jboss.org Fri Jun 10 05:25:59 2011 Content-Type: multipart/mixed; boundary="===============4582099477121670432==" MIME-Version: 1.0 From: Marc-Christian Schroeer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel Date: Fri, 10 Jun 2011 05:25:59 -0400 Message-ID: <1343748153.17707.1307697959329.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4582099477121670432== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607765#com= ment-12607765 ] = Marc-Christian Schroeer commented on RF-11056: ---------------------------------------------- And yet another observation: the calendar works fine if you do not re-rende= r the dialog before showing it. Nevertheless for our application it is cruc= ial to re-render the dialog only when it is displayed. > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4582099477121670432==-- From jira-events at lists.jboss.org Fri Jun 10 06:53:00 2011 Content-Type: multipart/mixed; boundary="===============8207719335061831259==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11024) ListShuttle/PickList combined component for 4.0 Date: Fri, 10 Jun 2011 06:53:00 -0400 Message-ID: <1086163783.18005.1307703180151.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1806722734.37823.1306867501015.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8207719335061831259== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11024: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/597916#597916 > ListShuttle/PickList combined component for 4.0 > ----------------------------------------------- > > Key: RF-11024 > URL: https://issues.jboss.org/browse/RF-11024 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Develop a combined approach for ListShuttle, and PickList so that we can = have a single component handle the requirements. > Ilya already outlined a good portion of the functionality for this here: = http://community.jboss.org/thread/164988 > These will be discuss and finalized there. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8207719335061831259==-- From jira-events at lists.jboss.org Fri Jun 10 06:53:00 2011 Content-Type: multipart/mixed; boundary="===============8780764670133160317==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11025) OrderingList component for 4.0 Date: Fri, 10 Jun 2011 06:53:00 -0400 Message-ID: <1988156755.18003.1307703180064.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1049926353.37852.1306868041513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8780764670133160317== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11025?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11025: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/597916#597916 > OrderingList component for 4.0 > ------------------------------ > > Key: RF-11025 > URL: https://issues.jboss.org/browse/RF-11025 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Other ordering list is related to ListShuttle/PickList ( RF-11023 ), but = is its own stand alone component. = > It will be sharing a fair amount of functionality and code with ListShutt= le/PickList, and so should be designed and developed together. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8780764670133160317==-- From jira-events at lists.jboss.org Fri Jun 10 06:57:00 2011 Content-Type: multipart/mixed; boundary="===============8277351031525543656==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9485) IE9 Beta - AJAX broken Date: Fri, 10 Jun 2011 06:57:00 -0400 Message-ID: <841687868.18044.1307703420676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8277351031525543656== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9485: ------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/605634#605634= , http://community.jboss.org/thread/156720 (was: http://community.jboss.or= g/thread/156720) > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8277351031525543656==-- From jira-events at lists.jboss.org Fri Jun 10 06:57:01 2011 Content-Type: multipart/mixed; boundary="===============3394353332119847736==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10774) IE9 compatibility issues for 3.3.X Date: Fri, 10 Jun 2011 06:57:01 -0400 Message-ID: <1870290270.18054.1307703421057.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 918262810.32420.1300368765755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3394353332119847736== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10774?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10774: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/605634#605634= , http://community.jboss.org/message/593755#593755 (was: http://community.= jboss.org/message/593755#593755) > IE9 compatibility issues for 3.3.X > ---------------------------------- > > Key: RF-10774 > URL: https://issues.jboss.org/browse/RF-10774 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, third-party > Affects Versions: 3.3.3.Final > Reporter: Jay Balunas > Priority: Critical > Fix For: 3.Future > > > This is an umbrella jira to help track all IE9 specific issues with RichF= aces 3.3.X versions. We will try to get any changes into the 3.3.4-SNAPSHO= T as soon as possible after the 4.0.0.Final release. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3394353332119847736==-- From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 Content-Type: multipart/mixed; boundary="===============4245223862441729712==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component Date: Fri, 10 Jun 2011 06:58:59 -0400 Message-ID: <170724142.18066.1307703539595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4245223862441729712== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9486?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9486: ------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/604317#604317= (was: http://community.jboss.org/message/604317#604317) > Multiselect tree component > -------------------------- > > Key: RF-9486 > URL: https://issues.jboss.org/browse/RF-9486 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tree > Reporter: Shah EM > Assignee: Nick Belaevski > Labels: Tree, component > Fix For: 4.Future > > > Multiselect tree componet is tree component where we can select multiple = items in the tree , which is not available in the current tree component -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4245223862441729712==-- From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 Content-Type: multipart/mixed; boundary="===============9058730850819566109==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component Date: Fri, 10 Jun 2011 06:58:59 -0400 Message-ID: <574374364.18063.1307703539524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9058730850819566109== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9486?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9486: ------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/604317#604317 > Multiselect tree component > -------------------------- > > Key: RF-9486 > URL: https://issues.jboss.org/browse/RF-9486 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tree > Reporter: Shah EM > Assignee: Nick Belaevski > Labels: Tree, component > Fix For: 4.Future > > > Multiselect tree componet is tree component where we can select multiple = items in the tree , which is not available in the current tree component -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9058730850819566109==-- From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 Content-Type: multipart/mixed; boundary="===============5372107531120812624==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component Date: Fri, 10 Jun 2011 06:58:59 -0400 Message-ID: <1961406069.18070.1307703539696.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5372107531120812624== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9486?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9486: ------------------------------------- JBoss Forum Reference: (was: http://community.jboss.org/message/60431= 7#604317) > Multiselect tree component > -------------------------- > > Key: RF-9486 > URL: https://issues.jboss.org/browse/RF-9486 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tree > Reporter: Shah EM > Assignee: Nick Belaevski > Labels: Tree, component > Fix For: 4.Future > > > Multiselect tree componet is tree component where we can select multiple = items in the tree , which is not available in the current tree component -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5372107531120812624==-- From jira-events at lists.jboss.org Fri Jun 10 07:00:59 2011 Content-Type: multipart/mixed; boundary="===============0420154962218259378==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component Date: Fri, 10 Jun 2011 07:00:59 -0400 Message-ID: <428830600.18075.1307703659585.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0420154962218259378== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9486?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9486: ------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/604317#604317 > Multiselect tree component > -------------------------- > > Key: RF-9486 > URL: https://issues.jboss.org/browse/RF-9486 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tree > Reporter: Shah EM > Assignee: Nick Belaevski > Labels: Tree, component > Fix For: 4.Future > > > Multiselect tree componet is tree component where we can select multiple = items in the tree , which is not available in the current tree component -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0420154962218259378==-- From jira-events at lists.jboss.org Fri Jun 10 07:02:59 2011 Content-Type: multipart/mixed; boundary="===============6451808896540341780==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9153) CSV export component of rich:dataTable/rich:extendedDataTable Date: Fri, 10 Jun 2011 07:02:59 -0400 Message-ID: <59385134.18136.1307703779912.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1477632758.26550.1283155391909.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6451808896540341780== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9153?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9153: ------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/603465#603465= , http://community.jboss.org/message/35887#35887 (was: http://community.jb= oss.org/message/35887#35887) > CSV export component of rich:dataTable/rich:extendedDataTable > ------------------------------------------------------------- > > Key: RF-9153 > URL: https://issues.jboss.org/browse/RF-9153 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final, 4.Future > Reporter: Michael Schmidt > Assignee: Alexander Smirnov > Labels: dataTables, excel, export > Fix For: 4.Future > > > A component which allows the CSV export/download of any given rich:dataTa= ble/rich:extendedDataTable. Especially in business applications there often= is the requirement to export any data into excel. A generic way to do it w= ould eliminate a lot of required work for Richfaces users. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6451808896540341780==-- From jira-events at lists.jboss.org Fri Jun 10 07:03:01 2011 Content-Type: multipart/mixed; boundary="===============7735280268383841958==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10862) Autocomplete: does not perform decode of the behaviors Date: Fri, 10 Jun 2011 07:03:00 -0400 Message-ID: <602986359.18169.1307703780917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1369612777.17714.1302511355546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7735280268383841958== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10862?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10862: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/603134#603134 > Autocomplete: does not perform decode of the behaviors > ------------------------------------------------------ > > Key: RF-10862 > URL: https://issues.jboss.org/browse/RF-10862 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > > http://community.jboss.org/message/598526#598526 > checked with = > autoFill=3D"false" selectFirst=3D"false" > autocompleteMethod=3D"#{autocompleteBean.autocomplete}" valueChangeLis= tener=3D"#{autocompleteBean.vcl}"> > > > = > > > > input calls listener and autocomplete not. Text renderer performs = String clientId =3D decodeBehaviors(context, component); > and in autocomplete there is no such code. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7735280268383841958==-- From jira-events at lists.jboss.org Fri Jun 10 07:04:59 2011 Content-Type: multipart/mixed; boundary="===============7645411270384195782==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10961) tabPanel causes NullPointerException if activeItem is not found Date: Fri, 10 Jun 2011 07:04:59 -0400 Message-ID: <194208496.18192.1307703899763.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 127938302.16762.1303981458273.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7645411270384195782== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10961?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10961: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/602791#602791 > tabPanel causes NullPointerException if activeItem is not found > --------------------------------------------------------------- > > Key: RF-10961 > URL: https://issues.jboss.org/browse/RF-10961 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.0.0-Final > Apache Tomcat 6.0.32 > Reporter: Stephan Meisinger > Fix For: 4.1.0.Milestone1 > > > ... > class foo { public String getTab(){return null;} } > causes a NPE in org.richfaces.component.AbstractTabPanel (Line 64). This = Bug was introduced with RF-10624. If activeItem is declared in a page, but = Id not found getItemByIndex will return null, but return value is not check= ed. > If bean return null, String is transformed by apache EL resolver from nul= l to empty string (""). So res is also not null. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7645411270384195782==-- From jira-events at lists.jboss.org Fri Jun 10 07:04:59 2011 Content-Type: multipart/mixed; boundary="===============4038472236509642062==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10945) TabPanel without any Tab: NullPointerException in AbstractTabPanel.getActiveItem() Date: Fri, 10 Jun 2011 07:04:59 -0400 Message-ID: <842763843.18196.1307703899879.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1091506593.62.1303385778619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4038472236509642062== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10945?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10945: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/602791#602791 > TabPanel without any Tab: NullPointerException in AbstractTabPanel.getAct= iveItem() > -------------------------------------------------------------------------= --------- > > Key: RF-10945 > URL: https://issues.jboss.org/browse/RF-10945 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Reporter: Lutz Ulrich > Fix For: 4.Future > > > Hello, > when removing the last UITab child from UITabPanel (via AJAX request) a N= ullPointerException is thrown by AbstractTabPanel.getActiveItem() when re-r= ending the UITabPanel: > getFirstItem().getName() =3D> cannot work since getFirstItem() returns nu= ll > There should be no errors when the UITabPanel is empty. > I fixed that in my local 'copy' of AbstractTabPanel by checking if getFir= stItem() returns null. If it is null, getActiveItem() returns null, too. = > Seems to work for me. But I didn't do much testing on that, yet. > public String getActiveItem() { > String res =3D super.getActiveItem(); > if (res =3D=3D null) { > = > // L. Ulrich, 21.04.2011 > // original code > //res =3D getFirstItem().getName(); > // fixed code: > AbstractTogglePanelItemInterface firstItem =3D getFirstItem(); > if (firstItem !=3D null) > { > res =3D firstItem.getName(); > } > // end of fixed code > } else { > AbstractTogglePanelTitledItem item =3D > (AbstractTogglePanelTitledItem) super.getItemByIndex(= super.getChildIndex(res)); > if (item.isDisabled()) { > res =3D getFirstItem().getName(); > } > } > return res; > } -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4038472236509642062==-- From jira-events at lists.jboss.org Fri Jun 10 07:09:00 2011 Content-Type: multipart/mixed; boundary="===============4409794380537678932==" MIME-Version: 1.0 From: =?utf-8?q?Libor_Krzy=C5=BEanek_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Reopened: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE Date: Fri, 10 Jun 2011 07:09:00 -0400 Message-ID: <1760325246.18264.1307704140789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4409794380537678932== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10939?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Libor Krzy=C5=BEanek reopened RF-10939: ---------------------------------- > a4j:ajax example breaks in IE9 based on DOCTYPE > ----------------------------------------------- > > Key: RF-10939 > URL: https://issues.jboss.org/browse/RF-10939 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Magnus D=C3=BCrr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showc= ase site. It works fine in IE9. > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > > > > > > > > > > > = > The problem occurs when I add other components to the page. In this examp= le I have added an ajax enabled a4j:outputPanel *before* the test form: = > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > = > > > > > > > > > > > = > > = > Now the code stops working in IE9, still works fine in Firefox. After som= e trial and error I have found two ways to make the example work again: = > * Move the a4j output panel below the form (have not tested if the output= panel still works) > * Remove the DOCTYPE tag, changing it to Strict doesn't work you have to = remove it completely... = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4409794380537678932==-- From jira-events at lists.jboss.org Fri Jun 10 07:09:01 2011 Content-Type: multipart/mixed; boundary="===============8299097277370982408==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE Date: Fri, 10 Jun 2011 07:09:00 -0400 Message-ID: <1842571600.18268.1307704140897.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8299097277370982408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10939?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10939: -------------------------------------- JBoss Forum Reference: http://community.jboss.org/message/600942#600942 > a4j:ajax example breaks in IE9 based on DOCTYPE > ----------------------------------------------- > > Key: RF-10939 > URL: https://issues.jboss.org/browse/RF-10939 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Magnus D=C3=BCrr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showc= ase site. It works fine in IE9. > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > > > > > > > > > > > = > The problem occurs when I add other components to the page. In this examp= le I have added an ajax enabled a4j:outputPanel *before* the test form: = > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > = > > > > > > > > > > > = > > = > Now the code stops working in IE9, still works fine in Firefox. After som= e trial and error I have found two ways to make the example work again: = > * Move the a4j output panel below the form (have not tested if the output= panel still works) > * Remove the DOCTYPE tag, changing it to Strict doesn't work you have to = remove it completely... = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8299097277370982408==-- From jira-events at lists.jboss.org Fri Jun 10 07:10:59 2011 Content-Type: multipart/mixed; boundary="===============0653254890361137079==" MIME-Version: 1.0 From: =?utf-8?q?Libor_Krzy=C5=BEanek_=28JIRA=29_=3Cjira-events_at_lists=2Ejboss?= =?utf-8?q?=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE Date: Fri, 10 Jun 2011 07:10:59 -0400 Message-ID: <1700750440.18274.1307704259484.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0653254890361137079== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10939?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Libor Krzy=C5=BEanek closed RF-10939. -------------------------------- Resolution: Done > a4j:ajax example breaks in IE9 based on DOCTYPE > ----------------------------------------------- > > Key: RF-10939 > URL: https://issues.jboss.org/browse/RF-10939 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Magnus D=C3=BCrr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showc= ase site. It works fine in IE9. > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > > > > > > > > > > > = > The problem occurs when I add other components to the page. In this examp= le I have added an ajax enabled a4j:outputPanel *before* the test form: = > = > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang=3D"en" lang=3D"en" > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > Test > = > > > > > > > > > > > = > > = > Now the code stops working in IE9, still works fine in Firefox. After som= e trial and error I have found two ways to make the example work again: = > * Move the a4j output panel below the form (have not tested if the output= panel still works) > * Remove the DOCTYPE tag, changing it to Strict doesn't work you have to = remove it completely... = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0653254890361137079==-- From jira-events at lists.jboss.org Fri Jun 10 07:35:01 2011 Content-Type: multipart/mixed; boundary="===============7143170527327293649==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10827) dataGrid: add event attributes Date: Fri, 10 Jun 2011 07:35:00 -0400 Message-ID: <263453031.18475.1307705700884.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1518079892.10905.1301476299769.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7143170527327293649== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10827?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10827: -------------------------------------- Forum Reference: http://community.jboss.org/message/596399#596399 > dataGrid: add event attributes > ------------------------------ > > Key: RF-10827 > URL: https://issues.jboss.org/browse/RF-10827 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > 1) onclick ondblclick... standard ones > 2) onRow* ones > 3) onelementclick because in that component onRow* could not be used corr= ectly to hadnle concrete object(http://community.jboss.org/message/596399#5= 96399). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7143170527327293649==-- From jira-events at lists.jboss.org Fri Jun 10 07:36:59 2011 Content-Type: multipart/mixed; boundary="===============8548133342735026202==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8430) AJAX: autocomplete is set for all inputs after update Date: Fri, 10 Jun 2011 07:36:59 -0400 Message-ID: <940271297.18481.1307705819755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1181785733.1266670090151.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============8548133342735026202== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8430?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-8430: ------------------------------------- Forum Reference: http://community.jboss.org/message/596420#596420, http= ://community.jboss.org/thread/148370?tstart=3D0 (was: http://community.jbo= ss.org/thread/148370?tstart=3D0) > AJAX: autocomplete is set for all inputs after update > ----------------------------------------------------- > > Key: RF-8430 > URL: https://issues.jboss.org/browse/RF-8430 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 3.3.3.BETA1 > Reporter: Nick Belaevski > Assignee: Nick Belaevski > Fix For: 3.Future > > > Details on forum -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8548133342735026202==-- From jira-events at lists.jboss.org Fri Jun 10 07:37:00 2011 Content-Type: multipart/mixed; boundary="===============2315926054570880117==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10785) Merge 4.0.X <--> /trunk now that 4.0.0.Final respin is complete Date: Fri, 10 Jun 2011 07:36:59 -0400 Message-ID: <2012325486.18489.1307705819990.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1415698019.37042.1300540905627.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2315926054570880117== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10785?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10785: -------------------------------------- Forum Reference: http://community.jboss.org/message/595724#595724 > Merge 4.0.X <--> /trunk now that 4.0.0.Final respin is complete > --------------------------------------------------------------- > > Key: RF-10785 > URL: https://issues.jboss.org/browse/RF-10785 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Jay Balunas > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.0.1.Milestone1, 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2315926054570880117==-- From jira-events at lists.jboss.org Fri Jun 10 07:38:59 2011 Content-Type: multipart/mixed; boundary="===============2044551278458335975==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10791) extendedDataTable: richfaces-showcase selection demo works wrong if dataScroller added Date: Fri, 10 Jun 2011 07:38:59 -0400 Message-ID: <1315327328.18495.1307705939549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 52132133.46110.1300879245673.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2044551278458335975== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10791?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10791: -------------------------------------- Forum Reference: http://community.jboss.org/message/594782#594782 > extendedDataTable: richfaces-showcase selection demo works wrong if dataS= croller added > -------------------------------------------------------------------------= ------------- > > Key: RF-10791 > URL: https://issues.jboss.org/browse/RF-10791 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > change the page to = > > 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:a4j=3D"http://richfaces.org/a4j" > xmlns:rich=3D"http://richfaces.org/rich"> > > > value=3D"#{extTableSelectionBean.inventoryItems}" var=3D"car" > selection=3D"#{extTableSelectionBean.selection}" id=3D"table" > frozenColumns=3D"2" style=3D"height:300px; width:500px;" rows=3D"10"> > event=3D"selectionchange" > listener=3D"#{extTableSelectionBean.selectionListener}" render=3D":re= s" /> > = > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > rendered=3D"#{not empty extTableSelectionBean.selectionItems}"> > value=3D"#{extTableSelectionBean.selectionItems}" var=3D"sel"> > > > > > > > now select record on the first page. > switch to the other page > select single page without any ctrl and shift at new page > result - numerous rows getting selected - FAIL. should be only last selec= ted record. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2044551278458335975==-- From jira-events at lists.jboss.org Fri Jun 10 07:38:59 2011 Content-Type: multipart/mixed; boundary="===============3910737467428700230==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10802) tree: reRender causes the tree to disappear in Chrome Date: Fri, 10 Jun 2011 07:38:59 -0400 Message-ID: <1808129490.18492.1307705939382.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1001534079.51889.1301046945815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3910737467428700230== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10802?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10802: -------------------------------------- Forum Reference: http://community.jboss.org/message/540140#540140, http= ://community.jboss.org/message/595432#595432 (was: http://community.jboss.= org/message/595432#595432) > tree: reRender causes the tree to disappear in Chrome > ----------------------------------------------------- > > Key: RF-10802 > URL: https://issues.jboss.org/browse/RF-10802 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 3.3.3.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 3.Future > > > I believe that could be potentially important for support at some point i= n will be reproduccable at ENT branch. so creating separate issue as https:= //issues.jboss.org/browse/RF-8347 that one created to reflect "bad renderin= g" and only partially talks about that main problem. I will link as incorpo= rated and will increase priority for that one. > http://community.jboss.org/message/595429#595429 > http://community.jboss.org/message/595432#595432 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3910737467428700230==-- From jira-events at lists.jboss.org Fri Jun 10 07:40:59 2011 Content-Type: multipart/mixed; boundary="===============1592285197837053945==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10758) Input fields in popupPanel loose focus Date: Fri, 10 Jun 2011 07:40:59 -0400 Message-ID: <1949436086.18503.1307706059529.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 285449601.26426.1300194531841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1592285197837053945== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10758?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10758: -------------------------------------- Forum Reference: http://community.jboss.org/message/593845#593845 > Input fields in popupPanel loose focus > -------------------------------------- > > Key: RF-10758 > URL: https://issues.jboss.org/browse/RF-10758 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.CR1 > Environment: Tomcat 7.0.8, MyFaces 2.0.4, RichFaces 4.0.0-SNAPSHO= T, Firefox 3.6.15, InternetExplorer 8 > Reporter: Marc-Christian Schroeer > Fix For: 4.Future > > > When opening a popupPanel with inputText-components, pressing the tab key= to switch between input fields results in the address input field getting = the focus. tabindex-attributes do not help this issue. This issue does not = exist with Google Chrome browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1592285197837053945==-- From jira-events at lists.jboss.org Fri Jun 10 07:40:59 2011 Content-Type: multipart/mixed; boundary="===============6072554469104952061==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8205) queue: allow to turn requests combining off Date: Fri, 10 Jun 2011 07:40:59 -0400 Message-ID: <217534715.18507.1307706059862.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529323752.1260792451035.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============6072554469104952061== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8205?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-8205: ------------------------------------- Forum Reference: http://community.jboss.org/message/515866#515866, http= ://community.jboss.org/message/593599#593599 (was: http://community.jboss.= org/message/515866#515866) > queue: allow to turn requests combining off > ------------------------------------------- > > Key: RF-8205 > URL: https://issues.jboss.org/browse/RF-8205 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 3.3.2.SR1, 4.0.0.ALPHA1 > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6072554469104952061==-- From jira-events at lists.jboss.org Fri Jun 10 07:42:59 2011 Content-Type: multipart/mixed; boundary="===============0123304809443805490==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10757) DataTable vs ExtendedDataTable: getRowIndex usage inconsistency Date: Fri, 10 Jun 2011 07:42:59 -0400 Message-ID: <1331030211.18517.1307706179504.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1005407143.26010.1300186905740.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0123304809443805490== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10757?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10757: -------------------------------------- Forum Reference: http://community.jboss.org/message/590868#590868 > DataTable vs ExtendedDataTable: getRowIndex usage inconsistency > --------------------------------------------------------------- > > Key: RF-10757 > URL: https://issues.jboss.org/browse/RF-10757 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Konstantin Mishin > Labels: design, tran > Fix For: 4.Future > > > Nick please check that thread:http://community.jboss.org/message/593105#5= 93105 > I'm not actually sure where the issue lies and if that's actually an issu= e and not a difference between two tables but the tbody for dataTable endod= ed calling and adding getRowIndex and for EDT by just using component.getCl= ientId -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0123304809443805490==-- From jira-events at lists.jboss.org Fri Jun 10 07:42:59 2011 Content-Type: multipart/mixed; boundary="===============5318697743192058445==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10748) CLONE - Extended dataTable. Header scrolled badly on TAB button. Date: Fri, 10 Jun 2011 07:42:59 -0400 Message-ID: <2039306480.18520.1307706179618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 471028503.22683.1300093548183.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5318697743192058445== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10748?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10748: -------------------------------------- Forum Reference: http://community.jboss.org/message/592756#592756, http= ://community.jboss.org/message/592734#592734 (was: http://community.jboss.= org/message/592734#592734) > CLONE - Extended dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------------- > > Key: RF-10748 > URL: https://issues.jboss.org/browse/RF-10748 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.0.0.CR1 > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > Attachments: case - 1.png, case - 2.png > > > Two use-cases failed: > "case - 1.png" > frozenColCount=3D0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers = jsut stays (Wrong!) > "case - 2.png" > frozenColCount=3D2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (s= eems good), but after I press TAB on the last input - the focus jumps to no= n frozen column input and frozen columns - scrolled and shifted down(Wrong!= ). But headers still aren't scrolled (good in this case). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5318697743192058445==-- From jira-events at lists.jboss.org Fri Jun 10 07:46:59 2011 Content-Type: multipart/mixed; boundary="===============5885012189981411012==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9718) Tree: additional features: data types other than javax.swing.tree.TreeNode Date: Fri, 10 Jun 2011 07:46:59 -0400 Message-ID: <2054093484.18547.1307706419779.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1365677719.13766.1289228942035.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5885012189981411012== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9718?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9718: ------------------------------------- Forum Reference: http://community.jboss.org/message/592105#592105 > Tree: additional features: data types other than javax.swing.tree.TreeNode > -------------------------------------------------------------------------- > > Key: RF-9718 > URL: https://issues.jboss.org/browse/RF-9718 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component, component-tree > Affects Versions: 4.0.0.Milestone5 > Reporter: Nick Belaevski > Assignee: Nick Belaevski > Fix For: 4.0.0.Final > > Attachments: RF-9718.patch > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5885012189981411012==-- From jira-events at lists.jboss.org Fri Jun 10 07:52:59 2011 Content-Type: multipart/mixed; boundary="===============0244017603657015895==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9580) select: implement filterNewValue analog as for 3.3.x combobox Date: Fri, 10 Jun 2011 07:52:59 -0400 Message-ID: <1992622761.18628.1307706779688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1220126558.27961.1288282076378.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0244017603657015895== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9580?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9580: ------------------------------------- Forum Reference: http://community.jboss.org/message/591176#591176 > select: implement filterNewValue analog as for 3.3.x combobox > ------------------------------------------------------------- > > Key: RF-9580 > URL: https://issues.jboss.org/browse/RF-9580 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Milestone4 > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > will not fit M4 but need to implement later. you could check the filterNe= wValues attribute at 3.3.x combo and we could discuss naming for 4.x mode i= n select. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0244017603657015895==-- From jira-events at lists.jboss.org Fri Jun 10 07:52:59 2011 Content-Type: multipart/mixed; boundary="===============4868156594639642258==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9548) ExtendedDataTable: inputs in headers can't be focued. Date: Fri, 10 Jun 2011 07:52:59 -0400 Message-ID: <1988515830.18632.1307706779896.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2038216448.14823.1287996774678.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4868156594639642258== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9548?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9548: ------------------------------------- Forum Reference: http://community.jboss.org/message/590390#590390, http= ://community.jboss.org/message/567881#567881 (was: http://community.jboss.= org/message/567881#567881) > ExtendedDataTable: inputs in headers can't be focued. > ----------------------------------------------------- > > Key: RF-9548 > URL: https://issues.jboss.org/browse/RF-9548 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables, regression > Affects Versions: 4.0.0.Milestone3, 4.0.0.Milestone6 > Reporter: Ilya Shaikovsky > Assignee: Konstantin Mishin > Priority: Critical > Fix For: 4.0.0.Final > > > dnd columns feature stops mousedown event on headers. So filtering can't = be used currently as inputs can't be focused with mouse. > Nick - I set M4 fix version as issue seems really critical for me. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4868156594639642258==-- From jira-events at lists.jboss.org Fri Jun 10 07:53:00 2011 Content-Type: multipart/mixed; boundary="===============4361760628070595907==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8227) VDL documentation for components/behaviors Date: Fri, 10 Jun 2011 07:53:00 -0400 Message-ID: <676977259.18635.1307706780353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 608916995.1261229370916.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============4361760628070595907== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8227?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-8227: ------------------------------------- Forum Reference: http://community.jboss.org/message/590413#590413 > VDL documentation for components/behaviors > ------------------------------------------ > > Key: RF-8227 > URL: https://issues.jboss.org/browse/RF-8227 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk, component, doc > Affects Versions: 4.0.0.ALPHA1 > Reporter: Nick Belaevski > Assignee: Jay Balunas > Priority: Critical > Labels: resolve, rev, revd, tran > Fix For: 4.1.0.Milestone1 > > > While IDE support for 4.0.x is pending, we need to ship VDL documentation= for reference in RF distribution. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4361760628070595907==-- From jira-events at lists.jboss.org Fri Jun 10 09:55:59 2011 Content-Type: multipart/mixed; boundary="===============4267852210778623318==" MIME-Version: 1.0 From: Georg Nozicka (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10953) Rich:autocomplete button does not call the autocompleteMetod when minChars="0" Date: Fri, 10 Jun 2011 09:55:59 -0400 Message-ID: <1703504275.19113.1307714159453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 141642626.8765.1303816458353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4267852210778623318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10953?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607842#com= ment-12607842 ] = Georg Nozicka commented on RF-10953: ------------------------------------ I would like to extend this issue a little bit because I think it is relate= d to it. In former Richfaces versions the autocompleteMethod was also calle= d, if e.g. cursor down was pressed (with minChars=3D=E2=80=9D0=E2=80=9D and= no characters entered so far). This was quite handy, especially if you hav= e not too many possible results and someone has no idea what could be enter= ed. As it is now, a workaround is to enter a space and trim the input in th= e program logic, but just pressing cursor down is far more user friendly. A= nother user solution is to try all the letters from =E2=80=98a=E2=80=99 to = =E2=80=98z=E2=80=99 but this is not such a good way to figure the possible = values out. > Rich:autocomplete button does not call the autocompleteMetod when minChar= s=3D"0" > -------------------------------------------------------------------------= ----- > > Key: RF-10953 > URL: https://issues.jboss.org/browse/RF-10953 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Mette Hummel > Priority: Minor > Fix For: 4.Future > > > We have upgraded to 4.0.0.Final and there is a change in behaviour for th= e rich:autocomplete component. We set minChars=3D"0" and showButton=3D"true= ". If we click on the button without entering any keys the autocompleteMeth= od is no longer called as it was previously. This must be a bug since it wo= rks fine if minChars>0 the autocompleteMetod is called. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4267852210778623318==-- From jira-events at lists.jboss.org Fri Jun 10 11:23:59 2011 Content-Type: multipart/mixed; boundary="===============0595275281792417858==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10964) autocomplete delete key behavior creates inconsistent state Date: Fri, 10 Jun 2011 11:23:59 -0400 Message-ID: <88512478.19396.1307719439512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1902763516.22559.1304100558276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0595275281792417858== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10964?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10964: ----------------------------- Labels: autocomplete (was: autocomplete waiting_on_user) Fix Version/s: 4.1.0.Milestone1 > autocomplete delete key behavior creates inconsistent state > ----------------------------------------------------------- > > Key: RF-10964 > URL: https://issues.jboss.org/browse/RF-10964 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces Showcase environment. > Reporter: James G > Labels: autocomplete > Fix For: 4.1.0.Milestone1 > > > Can be seen in the RichFaces Showcase environment. > http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dautocomplete&skin=3DblueSky > In the 3rd autocomplete box, enter the letter 'a' and pick the first sugg= estion. (Alabama) > Click the mouse to the beginning of the autocomplete box and use the Dele= te key to erase Alabama. > Now the autocomplete box no longer works correctly. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0595275281792417858==-- From jira-events at lists.jboss.org Fri Jun 10 11:23:59 2011 Content-Type: multipart/mixed; boundary="===============4224039115294512030==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10964) autocomplete delete key behavior creates inconsistent state Date: Fri, 10 Jun 2011 11:23:59 -0400 Message-ID: <826864061.19393.1307719439445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1902763516.22559.1304100558276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4224039115294512030== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10964?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607860#com= ment-12607860 ] = Jay Balunas commented on RF-10964: ---------------------------------- Thanks for more information - I was able to confirm this on windows on fire= fox. The behavior is very strange. We'll get it in the queue to be looked at further. If you have anymore inf= ormation please let us know. > autocomplete delete key behavior creates inconsistent state > ----------------------------------------------------------- > > Key: RF-10964 > URL: https://issues.jboss.org/browse/RF-10964 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces Showcase environment. > Reporter: James G > Labels: autocomplete > Fix For: 4.1.0.Milestone1 > > > Can be seen in the RichFaces Showcase environment. > http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dautocomplete&skin=3DblueSky > In the 3rd autocomplete box, enter the letter 'a' and pick the first sugg= estion. (Alabama) > Click the mouse to the beginning of the autocomplete box and use the Dele= te key to erase Alabama. > Now the autocomplete box no longer works correctly. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4224039115294512030==-- From jira-events at lists.jboss.org Fri Jun 10 11:25:59 2011 Content-Type: multipart/mixed; boundary="===============0117940214485438868==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11056) rich:calendar not working in popupPanel Date: Fri, 10 Jun 2011 11:25:59 -0400 Message-ID: <1147429799.19402.1307719559493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0117940214485438868== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11056: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Component/s: compatibility > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > Fix For: 4.1.0.Milestone1 > > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0117940214485438868==-- From jira-events at lists.jboss.org Fri Jun 10 11:27:59 2011 Content-Type: multipart/mixed; boundary="===============1791095490331542820==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Fri, 10 Jun 2011 11:27:59 -0400 Message-ID: <274342811.19410.1307719679482.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1791095490331542820== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11060?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11060: ----------------------------- Assignee: Pavol Pitonak Forum Reference: http://community.jboss.org/thread/167554 (was: http:/= /community.jboss.org/thread/167554) Pavol please verify, and if accurate assign to 4.1.M1 > onselectionchange working incorrect with two extendedDataTable on same pa= ge > -------------------------------------------------------------------------= -- > > Key: RF-11060 > URL: https://issues.jboss.org/browse/RF-11060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.0.1, Firefox > Reporter: Tom Giberius > Assignee: Pavol Pitonak > Priority: Critical > > If you put two extendedDataTable A en B on the same page then the followi= ng goes wrong: > If you selected record one of Table A en then select record one from tabl= e B then the onselectionchange trigger does not fire. The same counts for r= ecord two, three, etc. = > This prevents me for building a Master-Detail data entry screen where bot= h the master and the detail are multirecord. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in details, then go back to record 3 of maste= r and then the onselectionchange trigger does not fire. The master tables "= thinks" that record three is the selected record while actually it should b= e record one which was the selected record in the master table. > The correct behaviour should be that each table should "rember" it select= ed record. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in detail, then go back to record 3 of master= and the onselectionchange of the master should fire so that details of mas= ter record 3 can be shown. If you would have go back to record one of the m= aster then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1791095490331542820==-- From jira-events at lists.jboss.org Fri Jun 10 11:29:59 2011 Content-Type: multipart/mixed; boundary="===============1695554617500742966==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11055) Make fileupload portlet enabled Date: Fri, 10 Jun 2011 11:29:59 -0400 Message-ID: <1308763354.19415.1307719799389.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1695554617500742966== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607864#com= ment-12607864 ] = Jay Balunas commented on RF-11055: ---------------------------------- Thanks for the patch - we'll be updating fileupload during the 4.1 cycle, s= o this is very helpful. = We can't use your patch until you sign the JBoss CLA https://cla.jboss.org/= It is just a standard open source contributor agreement. > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Fix For: 4.1.0.Milestone1 > > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1695554617500742966==-- From jira-events at lists.jboss.org Fri Jun 10 11:29:59 2011 Content-Type: multipart/mixed; boundary="===============1217209306891245898==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11055) Make fileupload portlet enabled Date: Fri, 10 Jun 2011 11:29:59 -0400 Message-ID: <670520942.19421.1307719799554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1217209306891245898== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11055: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Milestone1 > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Assignee: Wesley Hales > Fix For: 4.1.0.Milestone1 > > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1217209306891245898==-- From jira-events at lists.jboss.org Fri Jun 10 11:31:59 2011 Content-Type: multipart/mixed; boundary="===============4557522346742280956==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11057) rf-showcase: simplify dataTable styling code Date: Fri, 10 Jun 2011 11:31:59 -0400 Message-ID: <1641887011.19432.1307719919619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4557522346742280956== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11057?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11057: ----------------------------- Fix Version/s: 4.1.0.Milestone1 > rf-showcase: simplify dataTable styling code > -------------------------------------------- > > Key: RF-11057 > URL: https://issues.jboss.org/browse/RF-11057 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Priority: Minor > Fix For: 4.1.0.Milestone1 > > > 1) do not need to use filtering attributes. > 2) do not need to use both jquery and classes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4557522346742280956==-- From jira-events at lists.jboss.org Fri Jun 10 11:31:59 2011 Content-Type: multipart/mixed; boundary="===============8573795310816650794==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11057) rf-showcase: simplify dataTable styling code Date: Fri, 10 Jun 2011 11:31:59 -0400 Message-ID: <1305912069.19429.1307719919558.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8573795310816650794== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11057?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11057: ----------------------------- Ilya - lets get this into 4.1. Will you be able to work on this in July? > rf-showcase: simplify dataTable styling code > -------------------------------------------- > > Key: RF-11057 > URL: https://issues.jboss.org/browse/RF-11057 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Priority: Minor > Fix For: 4.1.0.Milestone1 > > > 1) do not need to use filtering attributes. > 2) do not need to use both jquery and classes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8573795310816650794==-- From jira-events at lists.jboss.org Fri Jun 10 11:33:59 2011 Content-Type: multipart/mixed; boundary="===============7474414961105091220==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Fri, 10 Jun 2011 11:33:59 -0400 Message-ID: <70084285.19439.1307720039344.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7474414961105091220== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11054: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Affects Version/s: 4.0.0.Final Component/s: component-panels-layout-themes Forum Reference: http://community.jboss.org/thread/167372 (was: http= ://community.jboss.org/thread/167372) > Dynamically created tabs within tabPanel causes NPE in getActiveItem() > ---------------------------------------------------------------------- > > Key: RF-11054 > URL: https://issues.jboss.org/browse/RF-11054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22526 > Metamer r.22526 > Mojarra 2.0.4-b09 > Apache Tomcat 7.0.12 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" ev= erything works correctly, with "ajax" tab switch not work as well as with "= null"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7474414961105091220==-- From jira-events at lists.jboss.org Fri Jun 10 11:37:59 2011 Content-Type: multipart/mixed; boundary="===============7650156968366675189==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11053) Showcase: layout broken in data grid sample Date: Fri, 10 Jun 2011 11:37:59 -0400 Message-ID: <351429563.19453.1307720279413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7650156968366675189== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11053?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607868#com= ment-12607868 ] = Jay Balunas commented on RF-11053: ---------------------------------- Pavol - what browser are you using? I've tried IE9, chrome, and firefox, b= ut I am not seeing this. > Showcase: layout broken in data grid sample > ------------------------------------------- > > Key: RF-11053 > URL: https://issues.jboss.org/browse/RF-11053 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Environment: Showcase 4.1.0-SNAPSHOT > Reporter: Pavol Pitonak > Attachments: showcase-datagrid.png > > > # deploy showcase > # open http://localhost:8080/richfaces-showcase/richfaces/component-sampl= e.jsf?demo=3DdataGrid > result: > the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7650156968366675189==-- From jira-events at lists.jboss.org Fri Jun 10 11:41:59 2011 Content-Type: multipart/mixed; boundary="===============5511844190284360318==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 Date: Fri, 10 Jun 2011 11:41:59 -0400 Message-ID: <778160883.19465.1307720519312.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5511844190284360318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607870#com= ment-12607870 ] = Jay Balunas commented on RF-11052: ---------------------------------- Pavol - do you have richfaces-bom built locally? Could you check if these = builds are getting pushed to snapshot nightly? > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5511844190284360318==-- From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 Content-Type: multipart/mixed; boundary="===============3319419653381653201==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11051) a4j.version does not work Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <1139042118.19473.1307720639608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3319419653381653201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11051?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11051: -------------------------------- Assignee: Pavol Pitonak > a4j.version does not work > ------------------------- > > Key: RF-11051 > URL: https://issues.jboss.org/browse/RF-11051 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > > #{a4j.version} for latest RichFaces returns the following string: > {quote} > RichFaces Core Implementation by JBoss, a division of Red Hat, Inc., vers= ion v.4.1.0-SNAPSHOT SVN r.unknown > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3319419653381653201==-- From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 Content-Type: multipart/mixed; boundary="===============7109551060012965559==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11051) a4j.version does not work Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <461884805.19469.1307720639479.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7109551060012965559== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11051?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607871#com= ment-12607871 ] = Jay Balunas commented on RF-11051: ---------------------------------- What is it you want it to return? Update from SVN to git? = > a4j.version does not work > ------------------------- > > Key: RF-11051 > URL: https://issues.jboss.org/browse/RF-11051 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > > #{a4j.version} for latest RichFaces returns the following string: > {quote} > RichFaces Core Implementation by JBoss, a division of Red Hat, Inc., vers= ion v.4.1.0-SNAPSHOT SVN r.unknown > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7109551060012965559==-- From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 Content-Type: multipart/mixed; boundary="===============5201864424368203839==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11053) Showcase: layout broken in data grid sample Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <1356944949.19479.1307720639758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5201864424368203839== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11053?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11053: -------------------------------- Assignee: Pavol Pitonak > Showcase: layout broken in data grid sample > ------------------------------------------- > > Key: RF-11053 > URL: https://issues.jboss.org/browse/RF-11053 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Environment: Showcase 4.1.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > Attachments: showcase-datagrid.png > > > # deploy showcase > # open http://localhost:8080/richfaces-showcase/richfaces/component-sampl= e.jsf?demo=3DdataGrid > result: > the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5201864424368203839==-- From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 Content-Type: multipart/mixed; boundary="===============5900270069416079394==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11052) Module components cannot be build with Maven 3 Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <2040386381.19476.1307720639688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5900270069416079394== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11052: -------------------------------- Assignee: Pavol Pitonak > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5900270069416079394==-- From jira-events at lists.jboss.org Fri Jun 10 11:44:00 2011 Content-Type: multipart/mixed; boundary="===============7297878406649212293==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11053) Showcase: layout broken in data grid sample Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <2144921380.19482.1307720639840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7297878406649212293== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11053?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607873#com= ment-12607873 ] = Pavol Pitonak commented on RF-11053: ------------------------------------ Chrome 12.0.742.91 and Firefox 3.6.17, both on Fedora 14 > Showcase: layout broken in data grid sample > ------------------------------------------- > > Key: RF-11053 > URL: https://issues.jboss.org/browse/RF-11053 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Environment: Showcase 4.1.0-SNAPSHOT > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > Attachments: showcase-datagrid.png > > > # deploy showcase > # open http://localhost:8080/richfaces-showcase/richfaces/component-sampl= e.jsf?demo=3DdataGrid > result: > the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7297878406649212293==-- From jira-events at lists.jboss.org Fri Jun 10 11:44:00 2011 Content-Type: multipart/mixed; boundary="===============1594332891278148235==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11045) Showcase: tabs with samples are trimmed Date: Fri, 10 Jun 2011 11:43:59 -0400 Message-ID: <411267432.19484.1307720639930.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1594332891278148235== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11045?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11045: ----------------------------- Fix Version/s: 4.1.0.Milestone1 > Showcase: tabs with samples are trimmed = > ---------------------------------------- > > Key: RF-11045 > URL: https://issues.jboss.org/browse/RF-11045 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Fix For: 4.1.0.Milestone1 > > Attachments: showcase-tabs.png > > > Tabs in Showcase are trimmed in the case that there are more samples, e.g= . for rich:dataTable (see screenshot). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1594332891278148235==-- From jira-events at lists.jboss.org Fri Jun 10 11:47:59 2011 Content-Type: multipart/mixed; boundary="===============4630956241285045398==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11038) extendedTable: sorting sample Date: Fri, 10 Jun 2011 11:47:59 -0400 Message-ID: <704030702.19490.1307720879471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4630956241285045398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11038: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Git Pull Request: https://github.com/richfaces/showcase/pull/4 (was: h= ttps://github.com/richfaces/showcase/pull/4) > extendedTable: sorting sample > ----------------------------- > > Key: RF-11038 > URL: https://issues.jboss.org/browse/RF-11038 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4630956241285045398==-- From jira-events at lists.jboss.org Fri Jun 10 11:47:59 2011 Content-Type: multipart/mixed; boundary="===============0542544117495465831==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11039) extendedTable: filtering sample Date: Fri, 10 Jun 2011 11:47:59 -0400 Message-ID: <949962685.19492.1307720879520.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0542544117495465831== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11039?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11039: ----------------------------- Fix Version/s: 4.1.0.Milestone1 > extendedTable: filtering sample > ------------------------------- > > Key: RF-11039 > URL: https://issues.jboss.org/browse/RF-11039 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0542544117495465831==-- From jira-events at lists.jboss.org Fri Jun 10 11:49:59 2011 Content-Type: multipart/mixed; boundary="===============5092724735389503840==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11037) richfaces-showcase: new demos Date: Fri, 10 Jun 2011 11:49:59 -0400 Message-ID: <1384211563.19499.1307720999330.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1560828782.5020.1307296259290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5092724735389503840== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11037?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607876#com= ment-12607876 ] = Jay Balunas commented on RF-11037: ---------------------------------- Ilya - please add in a little detail on what you would like to add - perhap= s in dev forums. I've also assigned these to M1. Let me know if that won'= y work for you. We also need to coordinate updates with work to create a mobile version of = the showcase. > richfaces-showcase: new demos > ----------------------------- > > Key: RF-11037 > URL: https://issues.jboss.org/browse/RF-11037 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > > I would like to contribute some demos to components showcase app. > I will create subtasks to track proposed ones. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5092724735389503840==-- From jira-events at lists.jboss.org Fri Jun 10 11:54:00 2011 Content-Type: multipart/mixed; boundary="===============7452673585266460035==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Fri, 10 Jun 2011 11:53:59 -0400 Message-ID: <504548772.19523.1307721239856.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7452673585266460035== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11035: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Affects Version/s: 4.1.0.Milestone1 Component/s: component-validators We first need to see if this is an issue with hibernate, or if it happens w= ith other impls. = > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Milestone1 > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-with-mojarra, exception-with-myFaces > > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7452673585266460035==-- From jira-events at lists.jboss.org Fri Jun 10 11:55:59 2011 Content-Type: multipart/mixed; boundary="===============1257639331806874984==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel Date: Fri, 10 Jun 2011 11:55:59 -0400 Message-ID: <1958927408.19533.1307721359725.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1257639331806874984== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10980?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10980: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Component/s: accessibility component-input We need to consider the use case for this as well. What happens with you t= ab into an input that is in a panel that is not shown? We'll discuss priority on and options. > Impossible to set tabindex of input inside rich:popupPanel > ---------------------------------------------------------- > > Key: RF-10980 > URL: https://issues.jboss.org/browse/RF-10980 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: accessibility, component-input, component-panels-lay= out-themes > Affects Versions: 4.0.0.Final > Environment: Windows 7, WebSphere AS 8b2, in both browsers IE and= FF. = > Reporter: Dmitry Volkov > Assignee: Jay Balunas > Labels: popupPanel, tabindex > Fix For: 4.1.0.Milestone1 > > > Tabindex attribute of any element inside rich:popupPanel forced to -1, th= erefore those elements can not be selected with keyboard. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1257639331806874984==-- From jira-events at lists.jboss.org Fri Jun 10 11:57:59 2011 Content-Type: multipart/mixed; boundary="===============2909040799524571777==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11032) fileUpload Upload button not shown in Firefox 2.0 Date: Fri, 10 Jun 2011 11:57:59 -0400 Message-ID: <2043032717.19536.1307721479333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 369988934.2247.1307070959595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2909040799524571777== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11032?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas closed RF-11032. ---------------------------- Resolution: Won't Fix Firefox 2.0 is no a primary tager browser for RichFaces 4 > fileUpload Upload button not shown in Firefox 2.0 > ------------------------------------------------- > > Key: RF-11032 > URL: https://issues.jboss.org/browse/RF-11032 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Reporter: Jesse Bowes > Labels: Firefox, fileUpload, upload > > Uploading a file in Firefox 2.0 using the fileUpload component is not pos= sible. I am able to add a file to the upload component, but the "upload" b= utton never becomes available to click. > The same deployment works in IE6, FF3, FF4, and Chrome. > I have confirmed this issue on the richfaces demo page as well. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2909040799524571777==-- From jira-events at lists.jboss.org Fri Jun 10 11:59:59 2011 Content-Type: multipart/mixed; boundary="===============4899677115928564310==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11031) autosized attribute does not work in IE7 Date: Fri, 10 Jun 2011 11:59:59 -0400 Message-ID: <340483583.19548.1307721599751.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 599797221.1325.1307041259297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4899677115928564310== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11031?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11031: ----------------------------- Fix Version/s: 4.Future Description: = does not autosize popup window in IE7.= I tried a workaround by setting the autosized=3Dfalse for IE7 and using th= e height and width attributes but the height and width attributes seem to o= verride the autosized attribute. I eventually found a workaround by setting the autosized=3D'true' height=3D= '' width=3D'' for all browsers except IE7 (which works, for some reason the= height and width attributes are ignored) For IE7 I set autosized=3D'false' height=3D'670' width=3D'400' which render= s ok but if the data in any of my table cells gets larger then this will no= t render properly. here is my actual code . . . . I've included a link to the forum topic. was: does not autosize popup window in IE7.= I tried a workaround by setting the autosized=3Dfalse for IE7 and using th= e height and width attributes but the height and width attributes seem to o= verride the autosized attribute. I eventually found a workaround by setting the autosized=3D'true' height=3D= '' width=3D'' for all browsers except IE7 (which works, for some reason the= height and width attributes are ignored) For IE7 I set autosized=3D'false' height=3D'670' width=3D'400' which render= s ok but if the data in any of my table cells gets larger then this will no= t render properly. here is my actual code . . . . I've included a link to the forum topic. Component/s: compatibility (was: component) Forum Reference: http://community.jboss.org/message/608209#608209 (was= : http://community.jboss.org/message/608209#608209) > autosized attribute does not work in IE7 > ---------------------------------------------------------- > > Key: RF-11031 > URL: https://issues.jboss.org/browse/RF-11031 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: Issue only affects IE7 > Reporter: Paul Knox > Fix For: 4.Future > > > does not autosize popup window in IE= 7. I tried a workaround by setting the autosized=3Dfalse for IE7 and using = the height and width attributes but the height and width attributes seem to= override the autosized attribute. > I eventually found a workaround by setting the autosized=3D'true' height= =3D'' width=3D'' for all browsers except IE7 (which works, for some reason = the height and width attributes are ignored) > For IE7 I set autosized=3D'false' height=3D'670' width=3D'400' which rend= ers ok but if the data in any of my table cells gets larger then this will = not render properly. > here is my actual code > > . > . > . > . > > I've included a link to the forum topic. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4899677115928564310==-- From jira-events at lists.jboss.org Fri Jun 10 12:01:59 2011 Content-Type: multipart/mixed; boundary="===============5080195846986982890==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11030) rich:inplaceSelect suggestions disappear when move scroller (in Chrome) Date: Fri, 10 Jun 2011 12:01:59 -0400 Message-ID: <1390763477.19556.1307721719826.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 15317003.1129.1307032081203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5080195846986982890== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11030?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11030: ----------------------------- Fix Version/s: 4.Future Affects Version/s: 4.1.0.Milestone1 Priority: Minor (was: Major) Component/s: component-input (was: qe) > rich:inplaceSelect suggestions disappear when move scroller (in Chrome) > ----------------------------------------------------------------------- > > Key: RF-11030 > URL: https://issues.jboss.org/browse/RF-11030 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.1.0.Milestone1 > Reporter: J=C3=A1n Jamrich > Priority: Minor > Fix For: 4.Future > > > When move scroller by mouse in rich:inplaceSelect without confirmation bu= tton (immediate selection) in Chrome browser, whole pop-up with selects dis= appear. > But scroller works corectly in Forefox. > I made some test changes in ShowCase - added more options into first inpl= aceSelect -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5080195846986982890==-- From jira-events at lists.jboss.org Fri Jun 10 12:07:59 2011 Content-Type: multipart/mixed; boundary="===============8782532224724965265==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11051) a4j.version does not work Date: Fri, 10 Jun 2011 12:07:59 -0400 Message-ID: <305816957.19578.1307722079446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8782532224724965265== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11051?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607884#com= ment-12607884 ] = Pavol Pitonak commented on RF-11051: ------------------------------------ It should provide some useful information, not "SVN r.unknown". It might be= a Git commit number or at least a timestamp. > a4j.version does not work > ------------------------- > > Key: RF-11051 > URL: https://issues.jboss.org/browse/RF-11051 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > > #{a4j.version} for latest RichFaces returns the following string: > {quote} > RichFaces Core Implementation by JBoss, a division of Red Hat, Inc., vers= ion v.4.1.0-SNAPSHOT SVN r.unknown > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8782532224724965265==-- From jira-events at lists.jboss.org Fri Jun 10 12:09:59 2011 Content-Type: multipart/mixed; boundary="===============9203008053013644738==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 Date: Fri, 10 Jun 2011 12:09:59 -0400 Message-ID: <1135964786.19593.1307722199405.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9203008053013644738== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607885#com= ment-12607885 ] = Pavol Pitonak commented on RF-11052: ------------------------------------ Yes, I tried to build richfaces-bom locally. The bom is deployed to Maven r= epo correctly (see https://repository.jboss.org/nexus/content/groups/public= /org/richfaces/richfaces-bom/4.1.0-SNAPSHOT/). > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9203008053013644738==-- From jira-events at lists.jboss.org Fri Jun 10 12:09:59 2011 Content-Type: multipart/mixed; boundary="===============1495257476056056825==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work Date: Fri, 10 Jun 2011 12:09:59 -0400 Message-ID: <615804466.19594.1307722199444.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1495257476056056825== 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=3D12607886#com= ment-12607886 ] = Jay Balunas commented on RF-11021: ---------------------------------- We did not have time to discuss in team meeting, but I think there is an is= sue here. It is not selectFirst - that is doing what it is supposed to. = The issue is that if "defaultLabel" is not set then the first entry from th= e selectItems should be shown as it is for h:selectOneMenu. = So for example in the showcase page http://richfaces-showcase.appspot.com/r= ichfaces/component-sample.jsf?demo=3Dselect&skin=3DemeraldTown - the first select should have "option 1" showing because it does not set= defaultLabel. > rich:select atribute selectFirst doesn't work > --------------------------------------------- > > 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 > Assignee: Jay Balunas > Labels: richfaces > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1495257476056056825==-- From jira-events at lists.jboss.org Fri Jun 10 12:11:59 2011 Content-Type: multipart/mixed; boundary="===============4702119693745896418==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11021) rich:select should show first item in list if defaultLabel is not set Date: Fri, 10 Jun 2011 12:11:59 -0400 Message-ID: <2013419779.19601.1307722319532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4702119693745896418== 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.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11021: ----------------------------- Summary: rich:select should show first item in list if defaultLab= el is not set (was: rich:select atribute selectFirst doesn't work) Fix Version/s: 4.Future > 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 > Assignee: Jay Balunas > Labels: richfaces > Fix For: 4.Future > > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4702119693745896418==-- From jira-events at lists.jboss.org Fri Jun 10 12:11:59 2011 Content-Type: multipart/mixed; boundary="===============5739882380202349177==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11028) Dynamic extendDataTable not support ajax support Date: Fri, 10 Jun 2011 12:11:59 -0400 Message-ID: <2089855500.19603.1307722319629.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5739882380202349177== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11028?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11028: ----------------------------- Fix Version/s: 3.Future > Dynamic extendDataTable not support ajax support > ------------------------------------------------ > > Key: RF-11028 > URL: https://issues.jboss.org/browse/RF-11028 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-a4j-core, component-tables > Affects Versions: 3.3.3.Final > Environment: Operating system Windows XP, Browser IE-7 and FirFox4 > The JDK or JRE you are using, e.g. Sun Microsystems JDK 1.5.0_09 = > Reporter: umanath muthuvel > Labels: richfaces > Fix For: 3.Future > > > Dynamic extendDataTable creation not supporting ajax support > Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 = row of dateList. = > And after running my xhtml page the hole data (5 row of data with 2 colum= ns are displayed) > But after I am clicking any row the a4j:support not firing corresponding = method. ( But whenever clicking the row the jsf life cycle are printing in = consoule) > So I am trying Statically with same data and same a4j:support event and a= ction... this time it firing the corresponding method. > > > 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" > xmlns:hex=3D"http://hexaware.com/custom"> > > = > > = > = > > = > = > = > > > > > -------------------------------------------------------------------------= ------------------ > And attached Static xhtml Page > > > 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" > xmlns:hex=3D"http://hexaware.com/custom"> > > = > > = > = > = > > var=3D"category" = > sortMode=3D"single" = > value=3D"#{upmBranchMaintenanceBean.resultBranchListVO}" > > > > > > > > = > > > > > > > = > action=3D"#{upmBranchMaintenanceBean.takeSelection}" /> > = > > > > > -------------------------------------------------------------------------= --------------- > And for your reference i attached Dynamic table creation Source code here > private static HtmlExtendedDataTable createTable(String beanName, TableAt= tributes tableAttributes) { > System.out.println("-------- createTable -----------"); > HtmlExtendedDataTable extendedDataTable =3D new HtmlExten= dedDataTable(); > extendedDataTable.setId(tableAttributes.getId()); > String binding =3D "${" + beanName + "." + tableAttribute= s.getValue() + "}"; = > System.out.println("Tabel Value =3D "+binding); > ValueExpression valExp =3D getExpressionFactory() > .createValueExpression(getELContext(), binding, L= ist.class); > extendedDataTable.setWidth("100"); > extendedDataTable.setValueExpression("value", valExp); > extendedDataTable.setVar(tableAttributes.getVar()); > extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENA= NCE_TABLE_SEL_MODE); > extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_T= ABLE_SORT_MODE); > = > for(ColumnAttributes columnAttributes : tableAttributes.g= etColumnAttributesList()) { > System.out.println(" column "+columnAttributes.g= etHeader()); = > if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase= (columnAttributes.getComponentType())) { > HtmlOutputText headerComponent =3D new Ht= mlOutputText(); > headerComponent.setValue(columnAttributes= .getHeader()); > = > HtmlColumn htmlColumn =3D new HtmlColumn(= ); > htmlColumn.setHeader(headerComponent); > = > // Column ID is Must while creating dynam= ically, To avoid null pointer Exception. > // Based on id value to set the Column In= dex internally. > htmlColumn.setId(columnAttributes.getValu= e()); > = > binding =3D "#{" + tableAttributes.getVar= ()+ "." + columnAttributes.getValue() + "}"; > = > System.out.println("Column Value =3D "+bi= nding); > valExp =3D getExpressionFactory() > .createValueExpression(getELConte= xt(), binding, String.class); > = > HtmlOutputText outputText =3D new HtmlOut= putText(); = > outputText.setValueExpression("value", va= lExp); > htmlColumn.getChildren().add(outputText);= = > = > extendedDataTable.getChildren().add(htmlC= olumn); > System.out.println(" column added "); > = > = > } = > else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgno= reCase(columnAttributes.getComponentType())) { > System.out.println(" Inside : "+ HtmlAjax= Support.COMPONENT_TYPE ); = > HtmlAjaxSupport ajaxSupport =3D new HtmlA= jaxSupport(); > = > ajaxSupport.setId("static_ajax_id"); > = > binding =3D "#{" + beanName + "." +column= Attributes.getAction() + "}"; = > System.out.println(" Method binding: "+bi= nding); > = > MethodExpression methodBind =3D getExpres= sionFactory().createMethodExpression(getELContext(), binding, null, new Cla= ss[] {}); = > ajaxSupport.setActionExpression(methodBin= d); > = > // MethodBinding action =3D FacesContext.get= CurrentInstance().getApplication() > // .createMethodBinding(binding, new Class[0]); > // ajaxSupport.setAction(action); > // = > System.out.println("Ajax Action :" +ajaxS= upport.getAction().getExpressionString()); > System.out.println("Ajax Action1 :" +ajax= Support.getActionExpression().getExpressionString()); > ajaxSupport.setEvent(columnAttributes.get= Event()); > System.out.println("Ajax event :" +ajaxSu= pport.getEvent()); > extendedDataTable.getChildren().add(ajaxS= upport); > } > } = > System.out.println(" return extendedDataTable "); > return extendedDataTable; > } -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5739882380202349177==-- From jira-events at lists.jboss.org Fri Jun 10 12:13:59 2011 Content-Type: multipart/mixed; boundary="===============4840198163676718132==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11026) Component reference: fix file upload description Date: Fri, 10 Jun 2011 12:13:59 -0400 Message-ID: <246904749.19609.1307722439441.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 92867260.37884.1306868461138.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4840198163676718132== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11026?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11026: ----------------------------- Fix Version/s: 4.1.0.Milestone1 > Component reference: fix file upload description > ------------------------------------------------ > > Key: RF-11026 > URL: https://issues.jboss.org/browse/RF-11026 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: doc > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Fix For: 4.1.0.Milestone1 > > > The Component Reference should be updated because it contains following s= tatement in file upload section. The attribute maxFilesQuantity has not bee= n implemented yet in RichFaces 4 so it can be removed. > {quote} > To limit the maximum size of the uploaded files, define the byte size wit= h the org.richfaces.fileUpload.maxRequestSizes context parameter of the web= .xml settings file for the project. > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4840198163676718132==-- From jira-events at lists.jboss.org Fri Jun 10 12:15:59 2011 Content-Type: multipart/mixed; boundary="===============4578354654561172290==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10965) In Rich dataTable, [Enter] in h:inputText submits form Date: Fri, 10 Jun 2011 12:15:59 -0400 Message-ID: <241161648.19614.1307722559634.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2052224208.23633.1304192778359.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4578354654561172290== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10965?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10965: ----------------------------- Labels: enter form submit (was: enter form submit waiting_on_us= er) Fix Version/s: 4.Future > In Rich dataTable, [Enter] in h:inputText submits form > ------------------------------------------------------ > > Key: RF-10965 > URL: https://issues.jboss.org/browse/RF-10965 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Environment: Windows 7, Firefox 4, JBoss 6 > Reporter: Michal Huniewicz > Priority: Minor > Labels: enter, form, submit > Fix For: 4.Future > > > Enter submits form when focus is on h:inputText in a rich:dataTable. > > > rows=3D"30"> > > > > filterExpression=3D"#{fn:containsIgnoreCase(dog.name,dogsFilteringBe= an.nameFilter)}"> > > > > onkeypress=3D"if (event.keyCode =3D=3D 13) {return false;} else {= return true;}"> > > > > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4578354654561172290==-- From jira-events at lists.jboss.org Fri Jun 10 12:17:59 2011 Content-Type: multipart/mixed; boundary="===============4258250618823923327==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10971) The doesn't work in for extendedDataTable Date: Fri, 10 Jun 2011 12:17:59 -0400 Message-ID: <44167417.19617.1307722679430.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4258250618823923327== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10971?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-10971: -------------------------------- Assignee: Pavol Pitonak Please investigate with RF-10960 > The doesn't work in for extendedDataTable > ---------------------------------------------------------------------- > > Key: RF-10971 > URL: https://issues.jboss.org/browse/RF-10971 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.0.0.Final > Reporter: Daniel G=C3=B6rlich > Assignee: Pavol Pitonak > Priority: Minor > > The doesn't work in for extendedDataTable - = with it works. I use IE7. > Example: > > > > #{msgs.edit} > > = > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4258250618823923327==-- From jira-events at lists.jboss.org Fri Jun 10 12:17:59 2011 Content-Type: multipart/mixed; boundary="===============2433323057877730825==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10971) The doesn't work in for extendedDataTable Date: Fri, 10 Jun 2011 12:17:59 -0400 Message-ID: <304895644.19620.1307722679516.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2433323057877730825== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10971?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10971: ----------------------------- Labels: (was: waiting_on_user) > The doesn't work in for extendedDataTable > ---------------------------------------------------------------------- > > Key: RF-10971 > URL: https://issues.jboss.org/browse/RF-10971 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.0.0.Final > Reporter: Daniel G=C3=B6rlich > Assignee: Pavol Pitonak > Priority: Minor > > The doesn't work in for extendedDataTable - = with it works. I use IE7. > Example: > > > > #{msgs.edit} > > = > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2433323057877730825==-- From jira-events at lists.jboss.org Fri Jun 10 12:26:59 2011 Content-Type: multipart/mixed; boundary="===============0717105995174127920==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10971) The doesn't work in for extendedDataTable Date: Fri, 10 Jun 2011 12:26:59 -0400 Message-ID: <29601204.19636.1307723219403.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0717105995174127920== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10971?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10971: ---------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) > The doesn't work in for extendedDataTable > ---------------------------------------------------------------------- > > Key: RF-10971 > URL: https://issues.jboss.org/browse/RF-10971 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-misc > Affects Versions: 4.0.0.Final > Reporter: Daniel G=C3=B6rlich > Assignee: J=C3=A1n Jamrich > Priority: Minor > > The doesn't work in for extendedDataTable - = with it works. I use IE7. > Example: > > > > #{msgs.edit} > > = > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0717105995174127920==-- From jira-events at lists.jboss.org Fri Jun 10 12:42:59 2011 Content-Type: multipart/mixed; boundary="===============5642311366811598260==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Fri, 10 Jun 2011 12:42:59 -0400 Message-ID: <365320178.19660.1307724179470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5642311366811598260== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11060?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11060: ---------------------------------- Assignee: Jay Balunas (was: Pavol Pitonak) I can reproduce with following environment: * RichFaces 4.1.0-SNAPSHOT * Metamer 4.1.0-SNAPSHOT r.22517 * Mojarra 2.1.0-FCS * GlassFish Server Open Source Edition 3.1 * Java(TM) SE Runtime Environment 1.6.0_24-b07 @ Linux * Firefox 3.6.17 @ Linux x86_64 I noticed that bug happens only when the same line is selected in both tabl= es (e.g. select fifth line in both). > onselectionchange working incorrect with two extendedDataTable on same pa= ge > -------------------------------------------------------------------------= -- > > Key: RF-11060 > URL: https://issues.jboss.org/browse/RF-11060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.0.1, Firefox > Reporter: Tom Giberius > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > If you put two extendedDataTable A en B on the same page then the followi= ng goes wrong: > If you selected record one of Table A en then select record one from tabl= e B then the onselectionchange trigger does not fire. The same counts for r= ecord two, three, etc. = > This prevents me for building a Master-Detail data entry screen where bot= h the master and the detail are multirecord. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in details, then go back to record 3 of maste= r and then the onselectionchange trigger does not fire. The master tables "= thinks" that record three is the selected record while actually it should b= e record one which was the selected record in the master table. > The correct behaviour should be that each table should "rember" it select= ed record. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in detail, then go back to record 3 of master= and the onselectionchange of the master should fire so that details of mas= ter record 3 can be shown. If you would have go back to record one of the m= aster then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5642311366811598260==-- From jira-events at lists.jboss.org Fri Jun 10 12:42:59 2011 Content-Type: multipart/mixed; boundary="===============8665621043772480953==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Fri, 10 Jun 2011 12:42:59 -0400 Message-ID: <1937062052.19663.1307724179581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8665621043772480953== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11060?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-11060: ------------------------------- Fix Version/s: 4.1.0.Milestone1 Forum Reference: http://community.jboss.org/thread/167554 (was: http:/= /community.jboss.org/thread/167554) > onselectionchange working incorrect with two extendedDataTable on same pa= ge > -------------------------------------------------------------------------= -- > > Key: RF-11060 > URL: https://issues.jboss.org/browse/RF-11060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.0.1, Firefox > Reporter: Tom Giberius > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > If you put two extendedDataTable A en B on the same page then the followi= ng goes wrong: > If you selected record one of Table A en then select record one from tabl= e B then the onselectionchange trigger does not fire. The same counts for r= ecord two, three, etc. = > This prevents me for building a Master-Detail data entry screen where bot= h the master and the detail are multirecord. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in details, then go back to record 3 of maste= r and then the onselectionchange trigger does not fire. The master tables "= thinks" that record three is the selected record while actually it should b= e record one which was the selected record in the master table. > The correct behaviour should be that each table should "rember" it select= ed record. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in detail, then go back to record 3 of master= and the onselectionchange of the master should fire so that details of mas= ter record 3 can be shown. If you would have go back to record one of the m= aster then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8665621043772480953==-- From jira-events at lists.jboss.org Fri Jun 10 13:51:59 2011 Content-Type: multipart/mixed; boundary="===============8605371358790748854==" MIME-Version: 1.0 From: Tom Giberius (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Fri, 10 Jun 2011 13:51:59 -0400 Message-ID: <1082636121.19861.1307728319378.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8605371358790748854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11060?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607903#com= ment-12607903 ] = Tom Giberius commented on RF-11060: ----------------------------------- The bug is indeed when the same record in a table is selected. Table A - record 1 =3D> onselectionchange fires, that's ok. Table B - record 3 =3D> onselectionchange fires, that's ok. Table A - record 3 =3D> now onselectionchange does not fire, that's the bug. > onselectionchange working incorrect with two extendedDataTable on same pa= ge > -------------------------------------------------------------------------= -- > > Key: RF-11060 > URL: https://issues.jboss.org/browse/RF-11060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.0.1, Firefox > Reporter: Tom Giberius > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > If you put two extendedDataTable A en B on the same page then the followi= ng goes wrong: > If you selected record one of Table A en then select record one from tabl= e B then the onselectionchange trigger does not fire. The same counts for r= ecord two, three, etc. = > This prevents me for building a Master-Detail data entry screen where bot= h the master and the detail are multirecord. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in details, then go back to record 3 of maste= r and then the onselectionchange trigger does not fire. The master tables "= thinks" that record three is the selected record while actually it should b= e record one which was the selected record in the master table. > The correct behaviour should be that each table should "rember" it select= ed record. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in detail, then go back to record 3 of master= and the onselectionchange of the master should fire so that details of mas= ter record 3 can be shown. If you would have go back to record one of the m= aster then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8605371358790748854==-- From jira-events at lists.jboss.org Fri Jun 10 13:58:59 2011 Content-Type: multipart/mixed; boundary="===============1244523302365915611==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles Date: Fri, 10 Jun 2011 13:58:59 -0400 Message-ID: <181052999.19868.1307728739413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1244523302365915611== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10601?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10601: ----------------------------- Summary: Update build to support VDL doc generation based on = profiles (was: Update build to generation on profiles) Affects Version/s: 4.0.0.Final Description: = VDL-doc generation was completed near the end of the 4.0.0.Final release. = We need to integrate this into a "doc" profile that will also create JavaDo= cs as needed. > Update build to support VDL doc generation based on profiles > ------------------------------------------------------------ > > Key: RF-10601 > URL: https://issues.jboss.org/browse/RF-10601 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > VDL-doc generation was completed near the end of the 4.0.0.Final release.= We need to integrate this into a "doc" profile that will also create Java= Docs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1244523302365915611==-- From jira-events at lists.jboss.org Fri Jun 10 14:00:59 2011 Content-Type: multipart/mixed; boundary="===============4565835903920017944==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10601) Update build to support VDL doc generation based on profiles Date: Fri, 10 Jun 2011 14:00:59 -0400 Message-ID: <1820736221.19871.1307728859793.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4565835903920017944== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10601?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607904#com= ment-12607904 ] = Jay Balunas commented on RF-10601: ---------------------------------- new location https://github.com/richfaces/build/tree/master/vdl-doc > Update build to support VDL doc generation based on profiles > ------------------------------------------------------------ > > Key: RF-10601 > URL: https://issues.jboss.org/browse/RF-10601 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > VDL-doc generation was completed near the end of the 4.0.0.Final release.= We need to integrate this into a "doc" profile that will also create Java= Docs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4565835903920017944==-- From jira-events at lists.jboss.org Fri Jun 10 14:01:00 2011 Content-Type: multipart/mixed; boundary="===============8657326915440942585==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11009) VDL-DOC: release a vdl doc resource Date: Fri, 10 Jun 2011 14:01:00 -0400 Message-ID: <1337579705.19875.1307728860039.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8657326915440942585== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11009?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607906#com= ment-12607906 ] = Jay Balunas commented on RF-11009: ---------------------------------- new location https://github.com/richfaces/build/tree/master/vdl-doc > VDL-DOC: release a vdl doc resource > ----------------------------------- > > Key: RF-11009 > URL: https://issues.jboss.org/browse/RF-11009 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Reporter: Anton Belevich > Fix For: 4.1.0.Milestone1 > > > We need have a realise version of vdl plugin. > http://anonsvn.jboss.org/repos/richfaces/modules/build/resources/trunk/vd= l-doc/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8657326915440942585==-- From jira-events at lists.jboss.org Fri Jun 10 14:02:59 2011 Content-Type: multipart/mixed; boundary="===============6938637036520438501==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10837) VDL-DOC: update dependency version in the ui/dist pom Date: Fri, 10 Jun 2011 14:02:59 -0400 Message-ID: <1114356580.19882.1307728979423.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1781991038.15518.1301616277843.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6938637036520438501== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10837?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607908#com= ment-12607908 ] = Jay Balunas commented on RF-10837: ---------------------------------- new location https://github.com/richfaces/components/tree/master/dist > VDL-DOC: update dependency version in the ui/dist pom > ----------------------------------------------------- > > Key: RF-10837 > URL: https://issues.jboss.org/browse/RF-10837 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Reporter: Anton Belevich > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > update http://anonsvn.jboss.org/repos/richfaces/branches/4.0.X/ui/dist/ri= chfaces-components-ui/pom.xml with > faces-shade-transformers.version = > and faces-vdl-documentation version = > of released plugins -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6938637036520438501==-- From jira-events at lists.jboss.org Fri Jun 10 14:02:59 2011 Content-Type: multipart/mixed; boundary="===============1270290046017293233==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles Date: Fri, 10 Jun 2011 14:02:59 -0400 Message-ID: <1408943990.19885.1307728979560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1270290046017293233== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10601?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10601: ----------------------------- Priority: Critical (was: Major) > Update build to support VDL doc generation based on profiles > ------------------------------------------------------------ > > Key: RF-10601 > URL: https://issues.jboss.org/browse/RF-10601 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > VDL-doc generation was completed near the end of the 4.0.0.Final release.= We need to integrate this into a "doc" profile that will also create Java= Docs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1270290046017293233==-- From jira-events at lists.jboss.org Fri Jun 10 14:04:59 2011 Content-Type: multipart/mixed; boundary="===============5300964679177084837==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11061) VDL-DOC: release a faces-shade-transformers plugin Date: Fri, 10 Jun 2011 14:04:59 -0400 Message-ID: <231411788.19888.1307729099331.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5300964679177084837== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11061?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas moved RFPL-1407 to RF-11061: ---------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-11061 (was: RFPL-1407) Workflow: GIT Pull Request workflow (was: jira) Affects Version/s: 4.1.0.Milestone1 (was: 4.1.0.Milestone1) Component/s: (was: build) Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Milestone1) > VDL-DOC: release a faces-shade-transformers plugin > -------------------------------------------------- > > Key: RF-11061 > URL: https://issues.jboss.org/browse/RF-11061 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Affects Versions: 4.1.0.Milestone1 > Reporter: Anton Belevich > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > need to release a plugin http://anonsvn.jboss.org/repos/richfaces/modules= /build/resources/trunk/faces-shade-transformers/ > and update version in http://anonsvn.jboss.org/repos/richfaces/branches/4= .0.X/ui/dist/richfaces-components-ui/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5300964679177084837==-- From jira-events at lists.jboss.org Fri Jun 10 15:05:59 2011 Content-Type: multipart/mixed; boundary="===============6680055965132021763==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11062) Update CSV bean validation impl so that it wraps JSF 2's impl, and does not replace it. Date: Fri, 10 Jun 2011 15:05:59 -0400 Message-ID: <309756203.19991.1307732759468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6680055965132021763== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11062?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas moved RFPL-1375 to RF-11062: ---------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-11062 (was: RFPL-1375) Workflow: GIT Pull Request workflow (was: jira) Component/s: component-validators (was: components) Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Milestone1) > Update CSV bean validation impl so that it wraps JSF 2's impl, and does n= ot replace it. > -------------------------------------------------------------------------= -------------- > > Key: RF-11062 > URL: https://issues.jboss.org/browse/RF-11062 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-validators > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Labels: design, tran > Fix For: 4.1.0.Milestone1 > > Original Estimate: 0 minutes > Remaining Estimate: 0 minutes > > The current implementation of CSV with bean validation support replaces t= he build in BV implementation present in JSF 2. This will cause a lot of m= aintenance issues as we move forward. We need to discuss how to wrap this = instead, and only overriding where critical. = > = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============6680055965132021763==-- From jira-events at lists.jboss.org Fri Jun 10 15:11:59 2011 Content-Type: multipart/mixed; boundary="===============5904408901769043252==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7840) CDK Documentation generation Date: Fri, 10 Jun 2011 15:11:59 -0400 Message-ID: <1296950827.20010.1307733119731.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 128993980.1252454483976.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============5904408901769043252== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7840?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-7840: ------------------------------- Assignee: (was: Alexander Smirnov) > CDK Documentation generation > ---------------------------- > > Key: RF-7840 > URL: https://issues.jboss.org/browse/RF-7840 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: base functionality , cdk, doc > Affects Versions: 4.0.0.Alpha2 > Reporter: Nick Belaevski > Labels: cdk, documentation > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5904408901769043252==-- From jira-events at lists.jboss.org Fri Jun 10 15:11:59 2011 Content-Type: multipart/mixed; boundary="===============8690505178590340960==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10925) ELResolver #{bean.property[value]} and graphValidator causes exception Date: Fri, 10 Jun 2011 15:11:59 -0400 Message-ID: <356294459.20007.1307733119408.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 744570596.28727.1302796653333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8690505178590340960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10925?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-10925: -------------------------------- Assignee: (was: Alexander Smirnov) > ELResolver #{bean.property[value]} and graphValidator causes exception > ---------------------------------------------------------------------- > > Key: RF-10925 > URL: https://issues.jboss.org/browse/RF-10925 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators, regression > Affects Versions: 4.0.0.Final > Environment: Mojarra 2.0.4 + Tomcat 7 and Weblogic 10.3.4 > Reporter: Jesper Vrelits > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Not able to resolve property in bean when as #{bean.property[value]} when= wrapped in graphValidator. > Veryified on Tomcat 7 and Weblogic 10.3.4. > If graphValidator is removed it works. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8690505178590340960==-- From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 Content-Type: multipart/mixed; boundary="===============6428263852098247216==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. Date: Fri, 10 Jun 2011 15:21:59 -0400 Message-ID: <1092755985.20031.1307733719497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6428263852098247216== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10173?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10173: ----------------------------- Priority: Critical (was: Major) Fix Version/s: 4.1.0.Milestone1 (was: 4.Future) > CDK: Unify Behavior/Converter/Validator attributes generation. > -------------------------------------------------------------- > > Key: RF-10173 > URL: https://issues.jboss.org/browse/RF-10173 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.Milestone5 > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Priority: Critical > Labels: design, tran > Fix For: 4.1.0.Milestone1 > > > Converter uses StateHelper object, but Behavior/Validator generated using= plain attributes. = > 1) Revrite all non-component objects to use StateHelper for attributes. > 2) generate setValueExpression/getValueExpression and getStateHelper if n= ecessary. > 3) use base class methods if they exits. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6428263852098247216==-- From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 Content-Type: multipart/mixed; boundary="===============2856582283705513006==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10232) CDK: add descriptions of standard facets to UIColumn/UIData Date: Fri, 10 Jun 2011 15:21:59 -0400 Message-ID: <183533500.20035.1307733719693.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 732801988.19031.1295307650014.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2856582283705513006== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10232?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10232: ----------------------------- Priority: Critical (was: Major) Fix Version/s: 4.1.0.Milestone1 (was: 4.Future) > CDK: add descriptions of standard facets to UIColumn/UIData > ----------------------------------------------------------- > > Key: RF-10232 > URL: https://issues.jboss.org/browse/RF-10232 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.Milestone5 > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Priority: Critical > Labels: tran > Fix For: 4.1.0.Milestone1 > > > Standard component descriptions, used by CDK don't define facets for UICo= lumn, UIData etc. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2856582283705513006==-- From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 Content-Type: multipart/mixed; boundary="===============9082117965306618726==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10987) Improve GraphValidator performance Date: Fri, 10 Jun 2011 15:21:59 -0400 Message-ID: <126666375.20037.1307733719773.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1374443192.1073.1305318050437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9082117965306618726== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10987?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10987: ----------------------------- Priority: Critical (was: Major) > Improve GraphValidator performance > ---------------------------------- > > Key: RF-10987 > URL: https://issues.jboss.org/browse/RF-10987 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators, optimization > Affects Versions: 4.0.0.Final > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Priority: Critical > Labels: tran > Fix For: 4.1.0.Milestone1 > > > ClonedObjectResolver became performance bootleneck. > We have a very simple page that displays a rich:datatable. We noticed tha= t on the backend ClonedObjectResolver.resolveCloned gets called a lot and i= s very slow. Looking at the method (code below) I think the issue is that i= t scans the request map every time and looks for a graph prefix validator. = If we comment this code out the performance improves 50%. The main question= is what is it trying to do and is this only needed in some specific situat= ions like a particular component on the page? > = > {code} > public static Object resolveCloned(ELContext context, Object base, Object= property){ > if(null !=3D base || null !=3D property){ > FacesContext facesContext =3D FacesContext.getCurrentInstance= (); > Map requestMap =3D facesContext.getExternalCo= ntext().getRequestMap(); > for (String key : requestMap.keySet()) { > if(null !=3D key && key.startsWith(UIGraphValidator.STATE= _ATTRIBUTE_PREFIX)){ > UIGraphValidator.GraphValidatorState state =3D (Graph= ValidatorState) requestMap.get(key); > if(state.isSame(base, property)){ > return state.getCloned(); > } > } > } > } > return null; > } > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9082117965306618726==-- From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 Content-Type: multipart/mixed; boundary="===============4981002405351577563==" MIME-Version: 1.0 From: Ara Minosian (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text Date: Fri, 10 Jun 2011 17:11:59 -0400 Message-ID: <1463824398.20184.1307740319533.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4981002405351577563== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ara Minosian updated RF-11063: ------------------------------ Attachment: ie9.jpg IE 9 > rich:select is not at same level with text = > ------------------------------------------- > > Key: RF-11063 > URL: https://issues.jboss.org/browse/RF-11063 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Milestone2 > Environment: GAE, Win64 > Reporter: Ara Minosian > Attachments: ie9.jpg, other.jpg > > > Picture for IE9: https://picasaweb.google.com/lh/photo/jgZWwIw6fNINz05_rJ= WqCg?feat=3Ddirectlink > Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATp= URww3ruRBM6uYOQ?feat=3Ddirectlink > {code:xml|title=3Dcode|borderStyle=3Dsolid} >

> Some text: >

> Some text: > {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4981002405351577563==-- From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 Content-Type: multipart/mixed; boundary="===============3100786984391785378==" MIME-Version: 1.0 From: Ara Minosian (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text Date: Fri, 10 Jun 2011 17:11:59 -0400 Message-ID: <2034261059.20186.1307740319592.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3100786984391785378== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ara Minosian updated RF-11063: ------------------------------ Attachment: other.jpg Other browsers > rich:select is not at same level with text = > ------------------------------------------- > > Key: RF-11063 > URL: https://issues.jboss.org/browse/RF-11063 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Milestone2 > Environment: GAE, Win64 > Reporter: Ara Minosian > Attachments: ie9.jpg, other.jpg > > > Picture for IE9: https://picasaweb.google.com/lh/photo/jgZWwIw6fNINz05_rJ= WqCg?feat=3Ddirectlink > Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATp= URww3ruRBM6uYOQ?feat=3Ddirectlink > {code:xml|title=3Dcode|borderStyle=3Dsolid} >

> Some text: >

> Some text: > {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3100786984391785378==-- From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 Content-Type: multipart/mixed; boundary="===============7725408098738887776==" MIME-Version: 1.0 From: Ara Minosian (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11063) rich:select is not at same level with text Date: Fri, 10 Jun 2011 17:11:59 -0400 Message-ID: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7725408098738887776== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:select is not at same level with text = ------------------------------------------- Key: RF-11063 URL: https://issues.jboss.org/browse/RF-11063 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-menu Affects Versions: 4.1.0.Milestone2 Environment: GAE, Win64 Reporter: Ara Minosian Attachments: ie9.jpg, other.jpg Picture for IE9: https://picasaweb.google.com/lh/photo/jgZWwIw6fNINz05_rJWq= Cg?feat=3Ddirectlink Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpUR= ww3ruRBM6uYOQ?feat=3Ddirectlink {code:xml|title=3Dcode|borderStyle=3Dsolid}

Some text:

Some text: {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7725408098738887776==-- From jira-events at lists.jboss.org Fri Jun 10 17:13:59 2011 Content-Type: multipart/mixed; boundary="===============1402570598960391857==" MIME-Version: 1.0 From: Ara Minosian (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text Date: Fri, 10 Jun 2011 17:13:59 -0400 Message-ID: <786366426.20189.1307740439325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1402570598960391857== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Ara Minosian updated RF-11063: ------------------------------ Description: = Please, see attachment {code:xml|title=3Dcode|borderStyle=3Dsolid}

Some text:

Some text: {code} = was: Picture for IE9: https://picasaweb.google.com/lh/photo/jgZWwIw6fNINz05_rJWq= Cg?feat=3Ddirectlink Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpUR= ww3ruRBM6uYOQ?feat=3Ddirectlink {code:xml|title=3Dcode|borderStyle=3Dsolid}

Some text:

Some text: {code} = > rich:select is not at same level with text = > ------------------------------------------- > > Key: RF-11063 > URL: https://issues.jboss.org/browse/RF-11063 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.1.0.Milestone2 > Environment: GAE, Win64 > Reporter: Ara Minosian > Attachments: ie9.jpg, other.jpg > > > Please, see attachment > {code:xml|title=3Dcode|borderStyle=3Dsolid} >

> Some text: >

> Some text: > {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1402570598960391857==-- From jira-events at lists.jboss.org Fri Jun 10 17:17:59 2011 Content-Type: multipart/mixed; boundary="===============0913850263277875912==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text Date: Fri, 10 Jun 2011 17:17:59 -0400 Message-ID: <99844515.20192.1307740679369.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0913850263277875912== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11063: ----------------------------- Fix Version/s: 4.1.0.Milestone1 Affects Version/s: 4.0.0.Final (was: 4.1.0.Milestone2) Component/s: compatibility > rich:select is not at same level with text = > ------------------------------------------- > > Key: RF-11063 > URL: https://issues.jboss.org/browse/RF-11063 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-menu > Affects Versions: 4.0.0.Final > Environment: GAE, Win64 > Reporter: Ara Minosian > Fix For: 4.1.0.Milestone1 > > Attachments: ie9.jpg, other.jpg > > > Please, see attachment > {code:xml|title=3Dcode|borderStyle=3Dsolid} >

> Some text: >

> Some text: > {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0913850263277875912==-- From jira-events at lists.jboss.org Sat Jun 11 00:32:59 2011 Content-Type: multipart/mixed; boundary="===============2483387310728486336==" MIME-Version: 1.0 From: Matt Kenney (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-5320) inputNumberSlider: incorrect slider position with rich:tabPanel Date: Sat, 11 Jun 2011 00:32:59 -0400 Message-ID: <1348560852.20373.1307766779532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 22564537.1228928689431.JavaMail.jira@cloud.prod.atl2.jboss.com --===============2483387310728486336== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-5320?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12607963#comm= ent-12607963 ] = Matt Kenney commented on RF-5320: --------------------------------- I have a workaround on this issue. When the component is rendered it positions the handle for your bound value= based on an assumption about the width (or height if vertical orientation)= . The calculation for the position of the handle seems to be based on a co= nstant, therfore the inputNumberSlider will only work correctly at a specif= ic width. Set the width to exactly 305 pixels using the style attribute as follows: inputNumberSlider: incorrect slider position with rich:tabPanel > --------------------------------------------------------------- > > Key: RF-5320 > URL: https://issues.jboss.org/browse/RF-5320 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.0 > Environment: jsp > myfaces 1.2.5 > tomcat 6 > Reporter: Tsikhon Kuprevich > Assignee: Nick Belaevski > Fix For: 3.Future > > Attachments: slider-arrow.gif > > > > > > > Here is tab #1 > > > > Here is tab #2 > > > > > > > > Click on second tab > see image attached -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2483387310728486336==-- From jira-events at lists.jboss.org Sat Jun 11 13:16:23 2011 Content-Type: multipart/mixed; boundary="===============5542131572602046966==" MIME-Version: 1.0 From: Vinay Singh (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9360) Browse button next to Image URL in rich:editor is missing Date: Sat, 11 Jun 2011 13:16:23 -0400 Message-ID: <1550285889.87.1307812583674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 217652219.7982.1284754528894.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5542131572602046966== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9360?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608120#comm= ent-12608120 ] = Vinay Singh commented on RF-9360: --------------------------------- Vlastimil Have the changes done by you fixed the issue ? = Any tentative date on which this bug fix will be available ? > Browse button next to Image URL in rich:editor is missing > --------------------------------------------------------- > > Key: RF-9360 > URL: https://issues.jboss.org/browse/RF-9360 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, third-party > Environment: Firefox, IE and Google Chrome browser > Reporter: Vinay Singh > Labels: rich_editor > Fix For: 3.Future > > > We have integrated rich:editor into a JSF2.0 application. = > http://livedemo.exadel.com/richfaces-demo/richfaces/editor.jsf?c=3Deditor= &tab=3Dusage > In rich editor we are trying to insert an image from local machine. We cl= ick in Image URL button and nothing happens. = > I looked at tinyMCE example and next to Image URL text box , there is bu= tton browse which is missing in Rich faces integration with tinyMCE.. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5542131572602046966==-- From jira-events at lists.jboss.org Mon Jun 13 07:56:23 2011 Content-Type: multipart/mixed; boundary="===============8865581722356665713==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Mon, 13 Jun 2011 07:56:23 -0400 Message-ID: <1994685136.886.1307966183305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8865581722356665713== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608200#com= ment-12608200 ] = Justin Wyer commented on RF-10887: ---------------------------------- Should documentation be updated for this enhancement ? > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Labels: richfaces > Fix For: 4.Future > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8865581722356665713==-- From jira-events at lists.jboss.org Mon Jun 13 09:21:23 2011 Content-Type: multipart/mixed; boundary="===============6268680929553073398==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10886) onbuttonclick, onbuttondblclick attribute on rich:select Date: Mon, 13 Jun 2011 09:21:23 -0400 Message-ID: <506072764.1007.1307971283328.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1568716526.26076.1302724773058.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6268680929553073398== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10886?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608211#com= ment-12608211 ] = Justin Wyer commented on RF-10886: ---------------------------------- Lukas suggested that we implement more semantical events such as onlistopen= / onlistclose (naming to be decided upon). I agree with this approach and = will implement as such. > onbuttonclick, onbuttondblclick attribute on rich:select > -------------------------------------------------------- > > Key: RF-10886 > URL: https://issues.jboss.org/browse/RF-10886 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Labels: richfaces > Fix For: 4.Future > > > onclick / onclick list does not apply to the drop down button. This would= be useful functionality. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6268680929553073398==-- From jira-events at lists.jboss.org Mon Jun 13 10:28:24 2011 Content-Type: multipart/mixed; boundary="===============3479270701878523189==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11064) Push: Invalid async context for servlet AutoRegisteredPushServlet Date: Mon, 13 Jun 2011 10:28:23 -0400 Message-ID: <910263183.1102.1307975303998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3479270701878523189== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Push: Invalid async context for servlet AutoRegisteredPushServlet ----------------------------------------------------------------- Key: RF-11064 URL: https://issues.jboss.org/browse/RF-11064 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 4.1.0.Milestone1 Environment: Firefox 4.0.1 JBoss 6.0.0.Final / 6.1.0-SNAPSHOT Atmosphere 7.0.1/7.0.2 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 Sample application: https://github.com/lfryc/push-jms/ Reproduced on: https://github.com/lfryc/push-jms/tree/6dd6b623410e30ee4406e= 13fb6e22866e652e637 deploy/hornetq/hornetq-jms.xml: {code:XML} {code} deploy/hornetq/hornetq-configuration.xml {code:XML} {code} 16:21:52,065 ERROR [org.apache.catalina.connector.CoyoteAdapter] An excepti= on or error occurred in the container during the request processing: java.l= ang.IllegalStateException: Invalid async context for servlet AutoRegistered= PushServlet at org.apache.catalina.core.StandardWrapperValve.async(StandardWrapperValv= e.java:643) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperValv= e.java:402) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.event(StandardContextValv= e.java:260) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.event(SecurityAs= sociationValve.java:328) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.even= t(CatalinaContext.java:281) [:1.1.0.Final] at org.jboss.web.tomcat.security.JaccContextValve.event(JaccContextValve.j= ava:116) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.event(S= ecurityContextEstablishmentValve.java:161) [:6.0.0.Final] at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.java= :178) [:6.0.0.Final] at org.apache.catalina.valves.ValveBase.event(ValveBase.java:200) [:6.0.0.= Final] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.event(CachedConn= ectionValve.java:186) [:6.0.0.Final] at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValve.= java:128) [:6.0.0.Final] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.ev= ent(ActiveRequestResponseCacheValve.java:70) [:6.0.0.Final] at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:26= 5) [:6.0.0.Final] at org.apache.coyote.http11.Http11Processor.event(Http11Processor.java:757= ) [:6.0.0.Final] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.event(H= ttp11Protocol.java:602) [:6.0.0.Final] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:938)= [:6.0.0.Final] at java.lang.Thread.run(Thread.java:636) [:1.6.0_20] 16:21:52,076 ERROR [STDERR] java.lang.NullPointerException 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support.a= ction(Servlet30Support.java:168) 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support.a= ction(Servlet30Support.java:63) 16:21:52,076 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl.r= esume(AtmosphereResourceImpl.java:175) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.resume(Meteor.jav= a:199) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Request= Impl.resume(RequestImpl.java:61) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Session= Impl.releaseRequest(SessionImpl.java:112) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Session= Impl.connect(SessionImpl.java:85) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Request= Impl.onSuspend(RequestImpl.java:91) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl.o= nSuspend(AtmosphereResourceImpl.java:483) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl.n= otifyListeners(AtmosphereResourceImpl.java:455) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl.n= otifyListeners(AtmosphereResourceImpl.java:443) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl.s= uspend(AtmosphereResourceImpl.java:247) 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.suspend(Meteor.ja= va:189) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Request= Impl.suspend(RequestImpl.java:57) 16:21:52,078 ERROR [STDERR] at org.richfaces.webapp.PushHandlerFilter.doFi= lter(PushHandlerFilter.java:102) 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain.d= oFilter(AtmosphereFilterChain.java:139) 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain.i= nvokeFilterChain(AtmosphereFilterChain.java:116) 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletProc= essor$FilterChainServletWrapper.service(ReflectorServletProcessor.java:294) 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletProc= essor.onRequest(ReflectorServletProcessor.java:152) 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.ac= tion(AsynchronousProcessor.java:191) 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.su= spended(AsynchronousProcessor.java:142) 16:21:52,078 ERROR [STDERR] at org.atmosphere.container.Servlet30Support.s= ervice(Servlet30Support.java:87) 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doCome= tSupport(AtmosphereServlet.java:1156) 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doPost= (AtmosphereServlet.java:1138) 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doGet(= AtmosphereServlet.java:1124) 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Http= Servlet.java:734) 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Http= Servlet.java:847) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterC= hain.internalDoFilter(ApplicationFilterChain.java:324) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterC= hain.doFilter(ApplicationFilterChain.java:242) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperVal= ve.invoke(StandardWrapperValve.java:275) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardContextVal= ve.invoke(StandardContextValve.java:191) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssoc= iationValve.invoke(SecurityAssociationValve.java:181) 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaConte= xt$RequestListenerValve.event(CatalinaContext.java:285) 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaConte= xt$RequestListenerValve.invoke(CatalinaContext.java:261) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextVa= lve.invoke(JaccContextValve.java:88) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityConte= xtEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.= invoke(StandardHostValve.java:127) 16:21:52,080 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve= .invoke(ErrorReportValve.java:102) 16:21:52,080 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConn= ectionValve.invoke(CachedConnectionValve.java:158) 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValv= e.invoke(StandardEngineValve.java:109) 16:21:52,081 ERROR [STDERR] at org.jboss.web.tomcat.service.request.Active= RequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) 16:21:52,081 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter= .service(CoyoteAdapter.java:362) 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.pr= ocess(Http11Processor.java:877) 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Htt= p11ConnectionHandler.process(Http11Protocol.java:654) 16:21:52,084 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Work= er.run(JIoEndpoint.java:946) 16:21:52,084 ERROR [STDERR] at java.lang.Thread.run(Thread.java:636) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3479270701878523189==-- From jira-events at lists.jboss.org Mon Jun 13 10:32:23 2011 Content-Type: multipart/mixed; boundary="===============1216187570573916883==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10345) Push: IllegalStateException: Invalid async context for servlet Faces Servlet Date: Mon, 13 Jun 2011 10:32:23 -0400 Message-ID: <858395490.1143.1307975543444.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1282166479.3003.1296207184742.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1216187570573916883== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10345?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608223#com= ment-12608223 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-10345: --------------------------------- It seems this issue wasn't solved by upgrade - reproduced with 0.7.1 and 0.= 7.2 (RF-11064) > Push: IllegalStateException: Invalid async context for servlet Faces Serv= let > -------------------------------------------------------------------------= --- > > Key: RF-10345 > URL: https://issues.jboss.org/browse/RF-10345 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-push/poll > Affects Versions: 4.0.0.Milestone6 > Reporter: Nick Belaevski > Assignee: Nick Belaevski > Fix For: 4.0.0.CR1 > > > See forum thread details -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1216187570573916883==-- From jira-events at lists.jboss.org Mon Jun 13 10:38:23 2011 Content-Type: multipart/mixed; boundary="===============2583479414138990314==" MIME-Version: 1.0 From: Liffey Morgan (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Mon, 13 Jun 2011 10:38:23 -0400 Message-ID: <69357484.1152.1307975903547.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2583479414138990314== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11054?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608225#com= ment-12608225 ] = Liffey Morgan commented on RF-11054: ------------------------------------ Confirming that the version this bug was found in was 4.0.0.Final. > Dynamically created tabs within tabPanel causes NPE in getActiveItem() > ---------------------------------------------------------------------- > > Key: RF-11054 > URL: https://issues.jboss.org/browse/RF-11054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22526 > Metamer r.22526 > Mojarra 2.0.4-b09 > Apache Tomcat 7.0.12 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" ev= erything works correctly, with "ajax" tab switch not work as well as with "= null"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2583479414138990314==-- From jira-events at lists.jboss.org Mon Jun 13 21:07:29 2011 Content-Type: multipart/mixed; boundary="===============3343227392951965223==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11051) a4j.version does not work Date: Mon, 13 Jun 2011 21:07:29 -0400 Message-ID: <1428361006.1952.1308013649924.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3343227392951965223== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11051?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11051: ----------------------------- Fix Version/s: 4.Future Priority: Minor (was: Major) > a4j.version does not work > ------------------------- > > Key: RF-11051 > URL: https://issues.jboss.org/browse/RF-11051 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality = > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Assignee: Pavol Pitonak > Priority: Minor > Fix For: 4.Future > > > #{a4j.version} for latest RichFaces returns the following string: > {quote} > RichFaces Core Implementation by JBoss, a division of Red Hat, Inc., vers= ion v.4.1.0-SNAPSHOT SVN r.unknown > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3343227392951965223==-- From jira-events at lists.jboss.org Mon Jun 13 21:07:29 2011 Content-Type: multipart/mixed; boundary="===============5649404136865044853==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11052) Module components cannot be build with Maven 3 Date: Mon, 13 Jun 2011 21:07:29 -0400 Message-ID: <1837195498.1949.1308013649819.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5649404136865044853== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11052: ----------------------------- Assignee: Jay Balunas (was: Pavol Pitonak) Fix Version/s: 4.1.0.Milestone1 Priority: Critical (was: Major) > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5649404136865044853==-- From jira-events at lists.jboss.org Mon Jun 13 21:07:30 2011 Content-Type: multipart/mixed; boundary="===============3824162985884796141==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11053) Showcase: layout broken in data grid sample Date: Mon, 13 Jun 2011 21:07:30 -0400 Message-ID: <1290620953.1955.1308013650032.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3824162985884796141== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11053?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11053: ----------------------------- Assignee: (was: Pavol Pitonak) Fix Version/s: 4.Future Priority: Minor (was: Major) > Showcase: layout broken in data grid sample > ------------------------------------------- > > Key: RF-11053 > URL: https://issues.jboss.org/browse/RF-11053 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Environment: Showcase 4.1.0-SNAPSHOT > Reporter: Pavol Pitonak > Priority: Minor > Fix For: 4.Future > > Attachments: showcase-datagrid.png > > > # deploy showcase > # open http://localhost:8080/richfaces-showcase/richfaces/component-sampl= e.jsf?demo=3DdataGrid > result: > the panel with sample overflows its boundaries (see screenshot) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3824162985884796141==-- From jira-events at lists.jboss.org Tue Jun 14 15:57:29 2011 Content-Type: multipart/mixed; boundary="===============4315774429016571866==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7281) New component: rich:notify Date: Tue, 14 Jun 2011 15:57:29 -0400 Message-ID: <761870968.1141.1308081449632.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 10225796.1243572296530.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4315774429016571866== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7281?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7281: ---------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/message/538476#538476 (was= : http://community.jboss.org/message/538476#538476) > New component: rich:notify > -------------------------- > > Key: RF-7281 > URL: https://issues.jboss.org/browse/RF-7281 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 3.3.1 > Reporter: Francisco Jose Peredo Noguez > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > > Currently when messages are presented, the content of the page is "pushed= down", and some times user just do not like that. I would be really nice i= f it could be possible to present messages in non intrusive way, as it is = done with Growl messages. > So... Please create new richfaces a component based on http://stanlemon.= net/projects/jgrowl.html whose messages can be set both server side (like r= ich:messages) and client side with a javascript base API. This would make i= t lot easier to present messages in a consistent and non intrusive way. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4315774429016571866==-- From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 Content-Type: multipart/mixed; boundary="===============1656249795608990251==" MIME-Version: 1.0 From: Ilya Shaikovsky (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11065) popupPanel: documentation omits forms requirement and contains wrong sample Date: Tue, 14 Jun 2011 16:01:31 -0400 Message-ID: <216352357.1175.1308081691698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1656249795608990251== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable popupPanel: documentation omits forms requirement and contains wrong sample --------------------------------------------------------------------------- Key: RF-11065 URL: https://issues.jboss.org/browse/RF-11065 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: doc Affects Versions: 4.0.0.Final Reporter: Ilya Shaikovsky http://docs.jboss.org/richfaces/latest_4_0_X/Component_Reference/en-US/html= /chap-Component_Reference-Panels.html#sect-Component_Reference-Panels-richp= opupPanel 1) That note: = "Placement The component is usually rendered in front of any other o= bjects on the page. This is achieved by attaching the component to the element of the page, and setting a very high "z-index" (t" actually have to be followed by one more critical note. = "Limitation: defined by default popup *has to* have form element inside and= not to be nested to external form in order submitting components/behaviors= inside to work properly (because of repositioning in DOM). And to be able = to be nested domElementAttachment should be changed to either form or paren= t." 2) Example 9.2. example confuses as form is around the panel! it should be either removed at all(as= that sample not requires submission) or moved inside. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1656249795608990251==-- From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 Content-Type: multipart/mixed; boundary="===============1600620288366394202==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7351) Regression: "messages: globalOnly does not work properly" Date: Tue, 14 Jun 2011 16:01:31 -0400 Message-ID: <1205743065.1159.1308081691076.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com --===============1600620288366394202== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7351?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-7351: ------------------------------- Assignee: Pavol Pitonak Please verify against RichFaces 4 using the provided example, or the your o= wn tests. > Regression: "messages: globalOnly does not work properly" > --------------------------------------------------------- > > Key: RF-7351 > URL: https://issues.jboss.org/browse/RF-7351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, regression > Affects Versions: 3.3.1, 4.0.0.Final > Environment: Windows / JBoss 4.2.2.GA / Seam 2.1.1.GA / RichFaces= 3.3.1.GA > Reporter: Joseph Miller > Assignee: Pavol Pitonak > Fix For: 4.1.0.Final > > Attachments: example-globalOnly-bug.zip, example-globalOnly-bug.z= ip, Screen shot 2011-04-22 at 16.22.11.png, Screen shot 2011-04-27 at 08.51= .26.png, Screen shot 2011-04-27 at 08.52.49.png > > Time Spent: 4 hours > Remaining Estimate: 0 minutes > > Looks like a regression of RF-615... I've upgraded my Seam project to sue= RF 3.3.1, in order to fix a number of other bugs, but now messages intende= d for a single UI component (via the for=3D ) are appearing in the global m= essages list at the top of my page. > My page template has: > > ... > > and the controls have: > > ... > > I can switch the rich:messages to h:messages, and it behaves as it should= . Also reverting back to the RichFaces 3.2.2.SR1 jars makes the problem go = away, but I get the other older bugs back :( -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1600620288366394202==-- From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 Content-Type: multipart/mixed; boundary="===============7044652431060440718==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7351) Regression: "messages: globalOnly does not work properly" Date: Tue, 14 Jun 2011 16:01:31 -0400 Message-ID: <2079551488.1171.1308081691508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7044652431060440718== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7351?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7351: ---------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Regression: "messages: globalOnly does not work properly" > --------------------------------------------------------- > > Key: RF-7351 > URL: https://issues.jboss.org/browse/RF-7351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, regression > Affects Versions: 3.3.1, 4.0.0.Final > Environment: Windows / JBoss 4.2.2.GA / Seam 2.1.1.GA / RichFaces= 3.3.1.GA > Reporter: Joseph Miller > Assignee: Pavol Pitonak > Fix For: 4.1.0.Final > > Attachments: example-globalOnly-bug.zip, example-globalOnly-bug.z= ip, Screen shot 2011-04-22 at 16.22.11.png, Screen shot 2011-04-27 at 08.51= .26.png, Screen shot 2011-04-27 at 08.52.49.png > > Time Spent: 4 hours > Remaining Estimate: 0 minutes > > Looks like a regression of RF-615... I've upgraded my Seam project to sue= RF 3.3.1, in order to fix a number of other bugs, but now messages intende= d for a single UI component (via the for=3D ) are appearing in the global m= essages list at the top of my page. > My page template has: > > ... > > and the controls have: > > ... > > I can switch the rich:messages to h:messages, and it behaves as it should= . Also reverting back to the RichFaces 3.2.2.SR1 jars makes the problem go = away, but I get the other older bugs back :( -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7044652431060440718==-- From jira-events at lists.jboss.org Tue Jun 14 16:09:29 2011 Content-Type: multipart/mixed; boundary="===============5822489794069565019==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11065) popupPanel: documentation omits forms requirement and contains wrong sample Date: Tue, 14 Jun 2011 16:09:29 -0400 Message-ID: <175367155.1214.1308082169493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 216352357.1175.1308081691698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5822489794069565019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11065?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11065: ----------------------------- Fix Version/s: 4.1.0.Final Priority: Critical (was: Major) > popupPanel: documentation omits forms requirement and contains wrong samp= le > -------------------------------------------------------------------------= -- > > Key: RF-11065 > URL: https://issues.jboss.org/browse/RF-11065 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: doc > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Final > > > http://docs.jboss.org/richfaces/latest_4_0_X/Component_Reference/en-US/ht= ml/chap-Component_Reference-Panels.html#sect-Component_Reference-Panels-ric= hpopupPanel > 1) That note: = > "Placement > The component is usually rendered in front of any other= objects on the page. This is achieved by attaching the component to the element of the page, and setting a very high "z-index" (t" > actually have to be followed by one more critical note. = > "Limitation: defined by default popup *has to* have form element inside a= nd not to be nested to external form in order submitting components/behavio= rs inside to work properly (because of repositioning in DOM). And to be abl= e to be nested domElementAttachment should be changed to either form or par= ent." > 2) Example 9.2. example > confuses as form is around the panel! it should be either removed at all(= as that sample not requires submission) or moved inside. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5822489794069565019==-- From jira-events at lists.jboss.org Tue Jun 14 16:09:29 2011 Content-Type: multipart/mixed; boundary="===============2183200096427930214==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8125) Tables: built-in sorting/filtering Date: Tue, 14 Jun 2011 16:09:29 -0400 Message-ID: <1898773349.1219.1308082169825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============2183200096427930214== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8125?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-8125: ---------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Affects Version/s: 4.0.0.Final > Tables: built-in sorting/filtering > ---------------------------------- > > Key: RF-8125 > URL: https://issues.jboss.org/browse/RF-8125 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Anton Belevich > Priority: Critical > Fix For: 4.1.0.Final > > Original Estimate: 1 week > Remaining Estimate: 1 week > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2183200096427930214==-- From jira-events at lists.jboss.org Tue Jun 14 16:11:29 2011 Content-Type: multipart/mixed; boundary="===============5302601664815270262==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. Date: Tue, 14 Jun 2011 16:11:29 -0400 Message-ID: <398548155.1227.1308082289886.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5302601664815270262== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10173?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10173: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > CDK: Unify Behavior/Converter/Validator attributes generation. > -------------------------------------------------------------- > > Key: RF-10173 > URL: https://issues.jboss.org/browse/RF-10173 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.Milestone5 > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Priority: Critical > Labels: design, tran > Fix For: 4.1.0.Milestone1 > > > Converter uses StateHelper object, but Behavior/Validator generated using= plain attributes. = > 1) Revrite all non-component objects to use StateHelper for attributes. > 2) generate setValueExpression/getValueExpression and getStateHelper if n= ecessary. > 3) use base class methods if they exits. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5302601664815270262==-- From jira-events at lists.jboss.org Tue Jun 14 16:11:29 2011 Content-Type: multipart/mixed; boundary="===============4651363850511546927==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10154) UIDataAdaptor vs. UIData visitTee small difference Date: Tue, 14 Jun 2011 16:11:29 -0400 Message-ID: <815522731.1224.1308082289732.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 719639162.48683.1294430820168.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4651363850511546927== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10154?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10154: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > UIDataAdaptor vs. UIData visitTee small difference > -------------------------------------------------- > > Key: RF-10154 > URL: https://issues.jboss.org/browse/RF-10154 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Milestone5 > Environment: RichFaces 4.0.X trunk, svn rev. 20913 > Reporter: Martin Ko=C4=8D=C3=AD > Priority: Minor > Labels: jsf21 > Fix For: 4.1.0.Final > > > > > > > + > org.richfaces.component.UIDataAdaptor.visitTree(VisitContext, VisitCallb= ack) with VisitHint SKIP_UNRENDERED (in render response phase for example) > Problem: org.richfaces.component.UIDataAdaptor.visitDataChildren(VisitCon= text, VisitCallback, boolean) calls visitComponents(getFacetsAndChildren(),= visitContext, callback);-> it will visit h:outputText component and test i= f is rendered -> #{fasole.method(zeile)} but no row available -> calls faso= le.method with null parameter and causes an unexpected NPE > j.f.c.UIData does not visit column chidren for -1 rowIndex (null rowKey i= n RichFaces), UIData.visitTree JavaDoc says: "Take no action on non-UIColum= n children". -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4651363850511546927==-- From jira-events at lists.jboss.org Tue Jun 14 16:11:30 2011 Content-Type: multipart/mixed; boundary="===============0102640744972581805==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. Date: Tue, 14 Jun 2011 16:11:29 -0400 Message-ID: <1151484606.1230.1308082289958.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0102640744972581805== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10173?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10173: ----------------------------- Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Final) > CDK: Unify Behavior/Converter/Validator attributes generation. > -------------------------------------------------------------- > > Key: RF-10173 > URL: https://issues.jboss.org/browse/RF-10173 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.Milestone5 > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Priority: Critical > Labels: design, tran > Fix For: 4.1.0.Milestone1 > > > Converter uses StateHelper object, but Behavior/Validator generated using= plain attributes. = > 1) Revrite all non-component objects to use StateHelper for attributes. > 2) generate setValueExpression/getValueExpression and getStateHelper if n= ecessary. > 3) use base class methods if they exits. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0102640744972581805==-- From jira-events at lists.jboss.org Tue Jun 14 16:13:29 2011 Content-Type: multipart/mixed; boundary="===============6504680749646606990==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles Date: Tue, 14 Jun 2011 16:13:29 -0400 Message-ID: <1274589370.1233.1308082409588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6504680749646606990== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10601?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10601: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Update build to support VDL doc generation based on profiles > ------------------------------------------------------------ > > Key: RF-10601 > URL: https://issues.jboss.org/browse/RF-10601 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Final > > > VDL-doc generation was completed near the end of the 4.0.0.Final release.= We need to integrate this into a "doc" profile that will also create Java= Docs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6504680749646606990==-- From jira-events at lists.jboss.org Tue Jun 14 16:15:30 2011 Content-Type: multipart/mixed; boundary="===============5884879825179197131==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10620) Remove or externalize maven-javascript-plugin 3rd party software from RichFaces Date: Tue, 14 Jun 2011 16:15:29 -0400 Message-ID: <1373349931.1237.1308082529950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 530673528.5157.1298640606296.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5884879825179197131== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10620?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10620: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Remove or externalize maven-javascript-plugin 3rd party software from Ric= hFaces > -------------------------------------------------------------------------= ------ > > Key: RF-10620 > URL: https://issues.jboss.org/browse/RF-10620 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.CR1 > Reporter: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Final > > > See source and details at maven-javascript-plugin. > For these external sources we need to: > * Verify why we are building and using these. = > ** Does not seem to be used in our source at all > * Determine how to either only depend on external sources, or pull these = out into their own project to be built separately. > ** If a separate project with completely out of RichFaces, or in the /bui= ld/resources area. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5884879825179197131==-- From jira-events at lists.jboss.org Tue Jun 14 16:20:29 2011 Content-Type: multipart/mixed; boundary="===============4118108119603024867==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10657) Autocomplete - wrongly handles input for options which contain one of tokens Date: Tue, 14 Jun 2011 16:20:29 -0400 Message-ID: <1048526537.1247.1308082829572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 720155728.13729.1299074288906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4118108119603024867== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10657?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10657: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > Autocomplete - wrongly handles input for options which contain one of tok= ens > -------------------------------------------------------------------------= --- > > Key: RF-10657 > URL: https://issues.jboss.org/browse/RF-10657 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.CR1 > Environment: RichFaces 4.0.0.20110227-CR1 r.21967 > Metamer 4.0.0.20110228-CR1 r.21993 > Apache MyFaces JSF-2.0 Core Impl 2.0.4 > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @Linux > Chrome 9.0.597.107 @ Linux x86_64 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Jay Balunas > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4118108119603024867==-- From jira-events at lists.jboss.org Tue Jun 14 16:22:29 2011 Content-Type: multipart/mixed; boundary="===============3344828167865409341==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10694) Inplace Number Spinner/Slider - @readonly does not work Date: Tue, 14 Jun 2011 16:22:29 -0400 Message-ID: <1170068695.1255.1308082949675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 105211357.3722.1299225585594.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3344828167865409341== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10694?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10694: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > Inplace Number Spinner/Slider - @readonly does not work > ------------------------------------------------------- > > Key: RF-10694 > URL: https://issues.jboss.org/browse/RF-10694 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.CR1 > Environment: RichFaces 4.0.0-SNAPSHOT r.22043 > Metamer 4.0.0-SNAPSHOT r22053 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 9.0.597.107 @ Linux x86_64 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3344828167865409341==-- From jira-events at lists.jboss.org Tue Jun 14 16:24:30 2011 Content-Type: multipart/mixed; boundary="===============1096371854827556380==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10736) dataScroller: add events and classes handlers Date: Tue, 14 Jun 2011 16:24:30 -0400 Message-ID: <2009693140.1283.1308083070364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 546128370.19084.1299831105674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1096371854827556380== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10736?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10736: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: migration Forum Reference: http://community.jboss.org/message/592461#592461 (was= : http://community.jboss.org/message/592461#592461) This is migration related because the 3.3 version contained these options. > dataScroller: add events and classes handlers > --------------------------------------------- > > Key: RF-10736 > URL: https://issues.jboss.org/browse/RF-10736 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables, migration > Affects Versions: 4.0.0.CR1 > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Final > > > currently I do not see not only onscroll/onbeforescroll like events but e= ven standard onclick, mouseover and so on. > the same for styleClasses -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1096371854827556380==-- From jira-events at lists.jboss.org Tue Jun 14 16:28:29 2011 Content-Type: multipart/mixed; boundary="===============0001116943560994282==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10740) collapsibleSubTableToggler with expandMode="ajax" executes collapsibleSubTable on server Date: Tue, 14 Jun 2011 16:28:29 -0400 Message-ID: <782898504.1312.1308083309645.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1113512856.19797.1299849945718.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0001116943560994282== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10740?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10740: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Workaround Description: (was: I will provide precise points to be don= e for that issue. Seeing two issues there actually.) > collapsibleSubTableToggler with expandMode=3D"ajax" executes collapsibleS= ubTable on server > -------------------------------------------------------------------------= --------------- > > Key: RF-10740 > URL: https://issues.jboss.org/browse/RF-10740 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.CR1 > Environment: richfaces 4.0, mojarra 2.0.4 > Reporter: Martin Ko=C4=8D=C3=AD > Priority: Critical > Fix For: 4.1.0.Final > > Attachments: RF-10740.patch > > > With example below request contains javax.faces.partial.execute=3Dform:da= taTable:0:collapsibleSubTable > and that triggers validation on inputText. > > > > > > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0001116943560994282==-- From jira-events at lists.jboss.org Tue Jun 14 16:30:29 2011 Content-Type: multipart/mixed; boundary="===============0731393522625549229==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10748) CLONE - Extended dataTable. Header scrolled badly on TAB button. Date: Tue, 14 Jun 2011 16:30:29 -0400 Message-ID: <1294110936.1316.1308083429470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 471028503.22683.1300093548183.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0731393522625549229== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10748?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10748: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/message/592756#592756, http= ://community.jboss.org/message/592734#592734 (was: http://community.jboss.= org/message/592756#592756, http://community.jboss.org/message/592734#592734) > CLONE - Extended dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------------- > > Key: RF-10748 > URL: https://issues.jboss.org/browse/RF-10748 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-ScrollableDataTable > Affects Versions: 4.0.0.CR1 > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > Attachments: case - 1.png, case - 2.png > > > Two use-cases failed: > "case - 1.png" > frozenColCount=3D0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers = jsut stays (Wrong!) > "case - 2.png" > frozenColCount=3D2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (s= eems good), but after I press TAB on the last input - the focus jumps to no= n frozen column input and frozen columns - scrolled and shifted down(Wrong!= ). But headers still aren't scrolled (good in this case). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0731393522625549229==-- From jira-events at lists.jboss.org Tue Jun 14 16:32:29 2011 Content-Type: multipart/mixed; boundary="===============9174182282648724221==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10755) managed-bean in richfaces-core-impl Date: Tue, 14 Jun 2011 16:32:29 -0400 Message-ID: <1114927615.1319.1308083549527.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 565575021.24876.1300129666870.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9174182282648724221== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10755?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10755: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) We need to review these beans and determine impact of creating them as impl= icit objects include of managed beans. = > managed-bean in richfaces-core-impl > ----------------------------------- > > Key: RF-10755 > URL: https://issues.jboss.org/browse/RF-10755 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 4.0.0.CR1 > Environment: Richfaces 4.0.0 branch > Reporter: Martin Ko=C4=8D=C3=AD > Fix For: 4.1.0.Final > > > richfaces-core-impl contains three definitions of managed-beans: > a4j > a4jSkin > richSkin > By mistake one of our coders created CDI bean named "richSkin" and that c= aused malfunction of richfaces skinning. = > Suggestion: do not provide those beans but implement them as implicit obj= ect (similar like JSF implicit object "view" or "sessionScope") > There is SkinPropertiesELResolver already, all what needs to be done is d= efine new implicit object "richSkin" and handle it there in similar way how= JSF impl handle implicit objects. > a4jSkin managed-bean seems to be obsolete, about a4j(VerionBean) I'm not = sure. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9174182282648724221==-- From jira-events at lists.jboss.org Tue Jun 14 16:36:29 2011 Content-Type: multipart/mixed; boundary="===============8845624960524538960==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10777) Intermittent server error on initial GAE showcase access to a4j:ajax sample Date: Tue, 14 Jun 2011 16:36:29 -0400 Message-ID: <1119834970.1324.1308083789649.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 311808401.33782.1300407225769.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8845624960524538960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10777?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-10777. ------------------------------ Resolution: Out of Date This issue is now not reproducible. I'm guess some of the changes made sin= ce have resolved this issue. If we find it is reproducible we'll reopen. > Intermittent server error on initial GAE showcase access to a4j:ajax samp= le > -------------------------------------------------------------------------= -- > > Key: RF-10777 > URL: https://issues.jboss.org/browse/RF-10777 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples, third-party > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > There seems to be an intermittent server error ( see below ) when initial= ly accessing the GAE hosted showcase's a4j:ajax page. > {quote} > Error: Server Error > The server encountered an error and could not complete your request. > If the problem persists, please report your problem and mention this erro= r message and the query that caused it. > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8845624960524538960==-- From jira-events at lists.jboss.org Tue Jun 14 16:40:29 2011 Content-Type: multipart/mixed; boundary="===============1511443883653555662==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10804) Pagination by explicit page number selection (maybe included into dataScroller) Date: Tue, 14 Jun 2011 16:40:29 -0400 Message-ID: <1052656602.1335.1308084029819.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 378508933.51984.1301048685659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1511443883653555662== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10804?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10804: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) Moving to future now, because this should be possible now just by using an = external input component to set the page #. The enhancement would be for a= built in approach for this. > Pagination by explicit page number selection (maybe included into dataScr= oller) > -------------------------------------------------------------------------= ------ > > Key: RF-10804 > URL: https://issues.jboss.org/browse/RF-10804 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.Future > Reporter: Michael Schmidt > Priority: Minor > Labels: datascroller, pagination > Fix For: 4.Future > > > We sometimes have huge tables we need to display. Using rich:dataScroller= for navigation through a lot of pages is impractical as you can either jum= p only a few pages each time or to the end/beginning. > It would be nice to have a kind of selectOneMenu to select a specific pag= e which seamlessly works together with rich:dataScroller for pagination. Ju= st creating a selectOneMenu to jump around in the scroller sometimes leads = to inconsistencies. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1511443883653555662==-- From jira-events at lists.jboss.org Tue Jun 14 16:40:30 2011 Content-Type: multipart/mixed; boundary="===============7029617084264609866==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10814) VDL-DOC: add facets info from faces-config.xml Date: Tue, 14 Jun 2011 16:40:30 -0400 Message-ID: <1133029497.1338.1308084030005.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2032550693.3137.1301310998110.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7029617084264609866== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10814?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10814: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Affects Version/s: 4.0.0.Final > VDL-DOC: add facets info from faces-config.xml > ---------------------------------------------- > > Key: RF-10814 > URL: https://issues.jboss.org/browse/RF-10814 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: cdk > Affects Versions: 4.0.0.Final > Reporter: Anton Belevich > Fix For: 4.1.0.Final > > > Need to add information about component facet to facelet.taglib > we should get something like this: > > > header, footer > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7029617084264609866==-- From jira-events at lists.jboss.org Tue Jun 14 16:42:29 2011 Content-Type: multipart/mixed; boundary="===============6192450490673890938==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10835) File upload: progress bar doesn't show progress Date: Tue, 14 Jun 2011 16:42:29 -0400 Message-ID: <2037782982.1341.1308084149512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1381193769.14482.1301582317931.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6192450490673890938== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10835?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10835: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: base functionality = > File upload: progress bar doesn't show progress > ----------------------------------------------- > > Key: RF-10835 > URL: https://issues.jboss.org/browse/RF-10835 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22320 > Metamer 4.1.0-SNAPSHOT r.22342 > Mojarra 2.1.0-FCS > GlassFish Server Open Source Edition 3.1-SNAPSHOT > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 10.0.648.204 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.1.0.Final > > Attachments: fileUpload3.png > > > When a file is uploaded using rich:fileUpload, progress bar doesn't show = progress (see screenshot from Chrome). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6192450490673890938==-- From jira-events at lists.jboss.org Tue Jun 14 16:44:29 2011 Content-Type: multipart/mixed; boundary="===============1174858984046291439==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10837) VDL-DOC: update dependency version in the ui/dist pom Date: Tue, 14 Jun 2011 16:44:29 -0400 Message-ID: <900955053.1345.1308084269579.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1781991038.15518.1301616277843.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1174858984046291439== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10837?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10837: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > VDL-DOC: update dependency version in the ui/dist pom > ----------------------------------------------------- > > Key: RF-10837 > URL: https://issues.jboss.org/browse/RF-10837 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Reporter: Anton Belevich > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > > update http://anonsvn.jboss.org/repos/richfaces/branches/4.0.X/ui/dist/ri= chfaces-components-ui/pom.xml with > faces-shade-transformers.version = > and faces-vdl-documentation version = > of released plugins -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1174858984046291439==-- From jira-events at lists.jboss.org Tue Jun 14 16:48:29 2011 Content-Type: multipart/mixed; boundary="===============8303019598336684370==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10840) tooltip:JS error when trying to use attached false and JS API Date: Tue, 14 Jun 2011 16:48:29 -0400 Message-ID: <313866169.1349.1308084509462.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 291136187.16778.1301660393684.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8303019598336684370== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10840?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10840: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Major (was: Critical) Component/s: base functionality = (was: optimization) > tooltip:JS error when trying to use attached false and JS API > ------------------------------------------------------------- > > Key: RF-10840 > URL: https://issues.jboss.org/browse/RF-10840 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-output > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > >

Here you can see a default client-side tool-tip

> > > This tool-tip content was > pre-rendered to the page.
> The tool-tip is also following mouse around.
>
> offset.left is null > http://localhost:8080/richfaces-showcase/javax.faces.resource/jquery.posi= tion.js.jsf > Line 158 > on click -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8303019598336684370==-- From jira-events at lists.jboss.org Tue Jun 14 16:50:29 2011 Content-Type: multipart/mixed; boundary="===============6846064960106181531==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10844) Panel menu item: onselect doesn't work in server mode Date: Tue, 14 Jun 2011 16:50:29 -0400 Message-ID: <485682988.1353.1308084629603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 520251096.873.1301918913061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6846064960106181531== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10844?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10844: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Panel menu item: onselect doesn't work in server mode > ----------------------------------------------------- > > Key: RF-10844 > URL: https://issues.jboss.org/browse/RF-10844 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-menu > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22357 > Metamer 4.1.0-SNAPSHOT r.22346 > Mojarra 2.1.0-FCS > GlassFish Server Open Source Edition 3.1-SNAPSHOT > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 10.0.648.204 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 4.1.0.Final > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richPanelMenuItem/simple.xhtml > # set mode=3Dserver > # set onselect=3Dalert('onselect') > # select Item 1.2 > result: > no alert is displayed, works fine in ajax and client mode -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6846064960106181531==-- From jira-events at lists.jboss.org Tue Jun 14 16:50:29 2011 Content-Type: multipart/mixed; boundary="===============0070166262102044065==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10848) New component : rich:hotkey for 4.0 Date: Tue, 14 Jun 2011 16:50:29 -0400 Message-ID: <457283902.1359.1308084629890.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 886656099.4706.1302008913221.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0070166262102044065== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10848?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10848: ----------------------------- Summary: New component : rich:hotkey for 4.0 (was: rich:hotkey i= n 4.X) Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > New component : rich:hotkey for 4.0 > ----------------------------------- > > Key: RF-10848 > URL: https://issues.jboss.org/browse/RF-10848 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-misc > Reporter: Jay Balunas > Fix For: 4.Future > > > Create the rich:hotkey component for 4.X -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0070166262102044065==-- From jira-events at lists.jboss.org Tue Jun 14 16:52:29 2011 Content-Type: multipart/mixed; boundary="===============0368159361954932393==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10849) RichFaces client-side validation: i variable is implicitly declared Date: Tue, 14 Jun 2011 16:52:29 -0400 Message-ID: <348820243.1361.1308084749472.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 461639932.4962.1302011973128.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0368159361954932393== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10849?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10849: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Critical (was: Major) Component/s: compatibility Should be an easy fix, and could help with very confusing errors that peopl= e might see > RichFaces client-side validation: i variable is implicitly declared > ------------------------------------------------------------------- > > Key: RF-10849 > URL: https://issues.jboss.org/browse/RF-10849 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-validators > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Final > > > richfaces-csv.js contains variable i declared as global, see method valid= ate(), 174 line, for (i=3D0;i potentially dangerous in case one more js with such mistake will be inclu= ded to page. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0368159361954932393==-- From jira-events at lists.jboss.org Tue Jun 14 16:56:29 2011 Content-Type: multipart/mixed; boundary="===============4213335777552477236==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10853) dataScroller: do not works with a4j:status properly Date: Tue, 14 Jun 2011 16:56:29 -0400 Message-ID: <1687672453.1366.1308084989509.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 852716568.7602.1302083733119.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4213335777552477236== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10853?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10853: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Major (was: Critical) Forum Reference: http://community.jboss.org/message/598026#598026 (was= : http://community.jboss.org/message/598026#598026) > dataScroller: do not works with a4j:status properly > --------------------------------------------------- > > Key: RF-10853 > URL: https://issues.jboss.org/browse/RF-10853 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > 1) do not works properly with form scoped default status. onstart called = but onstop - not. > Problem seems in dataScroller because the same case with the button works= see [1] > 2) do not works at all using status=3D"status". Seems just not implemente= d. > [1] > > > > > > > > > id=3D"table" rows=3D"#{userBean.age}"> > ................ > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4213335777552477236==-- From jira-events at lists.jboss.org Tue Jun 14 16:58:29 2011 Content-Type: multipart/mixed; boundary="===============8816371223760891456==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10856) rich:autocomplete - does not work in IE9 Date: Tue, 14 Jun 2011 16:58:29 -0400 Message-ID: <1412911360.1370.1308085109635.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1226196663.11200.1302172473142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8816371223760891456== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10856?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-10856. ------------------------------ Labels: needs-qe (was: ) Resolution: Rejected According to RF-10770 this is a mojarra issue and should be fixed in the 2.= 0.6 & 2.2 versions of mojarra. It should be rechecked. > rich:autocomplete - does not work in IE9 > ---------------------------------------- > > Key: RF-10856 > URL: https://issues.jboss.org/browse/RF-10856 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Environment: =E2=80=A2RichFaces 4.1.0-SNAPSHOT r.22359 > =E2=80=A2Metamer 4.1.0-SNAPSHOT r.unknown > =E2=80=A2Mojarra 2.0.4-b09 > =E2=80=A2Apache Tomcat 7.0.6 > =E2=80=A2OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > =E2=80=A2Internet Explorer 9.0 @ Win32 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Labels: needs-qe > Fix For: 4.1.0.Milestone1 > > > Autocomplete does not work in ajax and cachedAjax modes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8816371223760891456==-- From jira-events at lists.jboss.org Tue Jun 14 17:02:30 2011 Content-Type: multipart/mixed; boundary="===============4850265323270421989==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10862) Autocomplete: does not perform decode of the behaviors Date: Tue, 14 Jun 2011 17:02:29 -0400 Message-ID: <546757499.1389.1308085349959.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1369612777.17714.1302511355546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4850265323270421989== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10862?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10862: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Workaround Description: Workaround mentioned in forum post Workaround: [Workaround Exists] Forum Reference: http://community.jboss.org/message/603134#60313= 4 (was: http://community.jboss.org/message/603134#603134) > Autocomplete: does not perform decode of the behaviors > ------------------------------------------------------ > > Key: RF-10862 > URL: https://issues.jboss.org/browse/RF-10862 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > http://community.jboss.org/message/598526#598526 > checked with = > autoFill=3D"false" selectFirst=3D"false" > autocompleteMethod=3D"#{autocompleteBean.autocomplete}" valueChangeLis= tener=3D"#{autocompleteBean.vcl}"> > > > = > > > > input calls listener and autocomplete not. Text renderer performs = String clientId =3D decodeBehaviors(context, component); > and in autocomplete there is no such code. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4850265323270421989==-- From jira-events at lists.jboss.org Tue Jun 14 17:02:30 2011 Content-Type: multipart/mixed; boundary="===============3835424865558129914==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10864) message: has block layout by default Date: Tue, 14 Jun 2011 17:02:30 -0400 Message-ID: <661924391.1391.1308085350023.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 363444066.18318.1302526113892.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3835424865558129914== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10864?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10864: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > message: has block layout by default > ------------------------------------ > > Key: RF-10864 > URL: https://issues.jboss.org/browse/RF-10864 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Minor > Fix For: 4.1.0.Final > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3835424865558129914==-- From jira-events at lists.jboss.org Tue Jun 14 17:04:29 2011 Content-Type: multipart/mixed; boundary="===============4279185175729204786==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10866) Queue: RF queuing rules applied to any ajax including standard f: one Date: Tue, 14 Jun 2011 17:04:29 -0400 Message-ID: <1007793524.1420.1308085469825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1761401868.19162.1302532173197.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4279185175729204786== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10866?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10866: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Critical (was: Major) This needs to be reviewed. The intention was not to make this global featu= re for f:ajax. Once we understand better we can determine if we should set= as switchable behavior. > Queue: RF queuing rules applied to any ajax including standard f: one > --------------------------------------------------------------------- > > Key: RF-10866 > URL: https://issues.jboss.org/browse/RF-10866 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Final > > > > > > > > > > > while typing you could see that delay applied and requests combined. > could influence standard/third-party components. So need to review and pr= obably remove. (at least make switchable) > setting tran label just to review early and not for impl. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4279185175729204786==-- From jira-events at lists.jboss.org Tue Jun 14 17:08:29 2011 Content-Type: multipart/mixed; boundary="===============7570684397051106667==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10867) JS API: switchablePanels: rename a few methods Date: Tue, 14 Jun 2011 17:08:29 -0400 Message-ID: <1903847990.1444.1308085709496.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 318683276.21869.1302603333292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7570684397051106667== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10867?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608659#com= ment-12608659 ] = Jay Balunas commented on RF-10867: ---------------------------------- I agree with updating the doc for sure. I'm not sure about renaming these = as part of the 4.1 release. Although not idea nextItem() and getNextItem()= are not that different, and I do not want to break existing applications b= y changing these. So in this case it is a doc issue only. > JS API: switchablePanels: rename a few methods > ---------------------------------------------- > > Key: RF-10867 > URL: https://issues.jboss.org/browse/RF-10867 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > > problematic API methods: > firstItem(), prevItem(), nextItem(), lastItem() > and description from documentation: > Switch to and display the first item, the previous item, the next ite= m, or the last item. > But actually all that methods just returns name of corresponding item. So= them do not perform switching but only could be used as a parameter of swi= tchToItem(itemName) method. > Actually I do not think we need them to be used as parameters as there is= more convenient way already: > tabPanelObject.switchToItem('@last') > tabPanelObject.switchToItem('@next') > ... > But let's keep as option for users and rename to = > getFirstItem(), getPrevItem(), getNextItem(), getLastItem() > Approved via email discussion. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7570684397051106667==-- From jira-events at lists.jboss.org Tue Jun 14 17:08:29 2011 Content-Type: multipart/mixed; boundary="===============0624214324420393671==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10867) JS API: switchablePanels: rename a few methods Date: Tue, 14 Jun 2011 17:08:29 -0400 Message-ID: <1432192733.1448.1308085709581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 318683276.21869.1302603333292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0624214324420393671== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10867?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-10867. ------------------------------ Resolution: Won't Fix > JS API: switchablePanels: rename a few methods > ---------------------------------------------- > > Key: RF-10867 > URL: https://issues.jboss.org/browse/RF-10867 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > > problematic API methods: > firstItem(), prevItem(), nextItem(), lastItem() > and description from documentation: > Switch to and display the first item, the previous item, the next ite= m, or the last item. > But actually all that methods just returns name of corresponding item. So= them do not perform switching but only could be used as a parameter of swi= tchToItem(itemName) method. > Actually I do not think we need them to be used as parameters as there is= more convenient way already: > tabPanelObject.switchToItem('@last') > tabPanelObject.switchToItem('@next') > ... > But let's keep as option for users and rename to = > getFirstItem(), getPrevItem(), getNextItem(), getLastItem() > Approved via email discussion. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0624214324420393671==-- From jira-events at lists.jboss.org Tue Jun 14 17:11:29 2011 Content-Type: multipart/mixed; boundary="===============7974987610973191571==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10871) rich:message wrong format of error message Date: Tue, 14 Jun 2011 17:11:29 -0400 Message-ID: <1532557307.1452.1308085889457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7974987610973191571== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10871: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Assignee: Wesley Hales jhuska - Can you provide a screenshot or a little more information on this = issue? > rich:message wrong format of error message > ------------------------------------------ > > Key: RF-10871 > URL: https://issues.jboss.org/browse/RF-10871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile device - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > The error messages which are rendered have bad format, because it should = have font size as text labels before inputs, but they have bigger font size. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7974987610973191571==-- From jira-events at lists.jboss.org Tue Jun 14 17:13:29 2011 Content-Type: multipart/mixed; boundary="===============0488566864163794007==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10872) rich:poppupPanel it is not rendered whole and not rendered on the current user focus Date: Tue, 14 Jun 2011 17:13:29 -0400 Message-ID: <1991289595.1460.1308086009530.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1244400385.22719.1302618093477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0488566864163794007== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10872?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10872: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:poppupPanel it is not rendered whole and not rendered on the current= user focus > -------------------------------------------------------------------------= ----------- > > Key: RF-10872 > URL: https://issues.jboss.org/browse/RF-10872 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > demo sample - editable data table > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > In demo for editable data table, when clicking on edit, the poppup panel = is rendered in the left corner, not in the place where the current user foc= us is, and also it is not rendered whole, there is missing a bottom part of= the poppup panel. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0488566864163794007==-- From jira-events at lists.jboss.org Tue Jun 14 17:13:29 2011 Content-Type: multipart/mixed; boundary="===============4016466213234983206==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10872) rich:poppupPanel it is not rendered whole and not rendered on the current user focus Date: Tue, 14 Jun 2011 17:13:29 -0400 Message-ID: <548540367.1457.1308086009468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1244400385.22719.1302618093477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4016466213234983206== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10872?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608663#com= ment-12608663 ] = Jay Balunas commented on RF-10872: ---------------------------------- It is possible for mobile version of this component, or example we will nee= d to re-think the best approach for this behavior. = At the very least the standard version running on a mobile device should be= have the same. > rich:poppupPanel it is not rendered whole and not rendered on the current= user focus > -------------------------------------------------------------------------= ----------- > > Key: RF-10872 > URL: https://issues.jboss.org/browse/RF-10872 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > demo sample - editable data table > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Fix For: 4.1.0.Final > > > In demo for editable data table, when clicking on edit, the poppup panel = is rendered in the left corner, not in the place where the current user foc= us is, and also it is not rendered whole, there is missing a bottom part of= the poppup panel. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4016466213234983206==-- From jira-events at lists.jboss.org Tue Jun 14 17:15:29 2011 Content-Type: multipart/mixed; boundary="===============6489264087993437854==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10873) rich:poppupPanel shadow which should block the main screen is not rendered whole Date: Tue, 14 Jun 2011 17:15:29 -0400 Message-ID: <900413652.1464.1308086129655.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1227565437.22727.1302618393178.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6489264087993437854== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10873?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10873: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Assignee: Wesley Hales This is likely just CSS styling differences, but should be corrected > rich:poppupPanel shadow which should block the main screen is not rendere= d whole > -------------------------------------------------------------------------= ------- > > Key: RF-10873 > URL: https://issues.jboss.org/browse/RF-10873 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari, Nexus = S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > The shadow which is under poppup panel and should block the main screen i= s not rendered for the whole page, but covers only top - left of the page. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6489264087993437854==-- From jira-events at lists.jboss.org Tue Jun 14 17:17:29 2011 Content-Type: multipart/mixed; boundary="===============0692833354265664001==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Tue, 14 Jun 2011 17:17:29 -0400 Message-ID: <1502759960.1476.1308086249642.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0692833354265664001== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10874: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0692833354265664001==-- From jira-events at lists.jboss.org Tue Jun 14 17:17:29 2011 Content-Type: multipart/mixed; boundary="===============7789851613303721719==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Tue, 14 Jun 2011 17:17:29 -0400 Message-ID: <215836601.1472.1308086249549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7789851613303721719== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608666#com= ment-12608666 ] = Jay Balunas commented on RF-10874: ---------------------------------- Juraj - can you provide some links, and steps to reproduce please? The sizing of the popup panel is a artifact of the touch interfaces I belie= ve, but I am not 100% sure. The skinning differences are likely artifacts = of contrast or other differences on the browsers used. Both should be investigated. = > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Fix For: 4.1.0.Final > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7789851613303721719==-- From jira-events at lists.jboss.org Tue Jun 14 17:19:29 2011 Content-Type: multipart/mixed; boundary="===============8399108266410378255==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10875) rich:collapsibleSubTable bad performance when hiding or showing the subtable on client side Date: Tue, 14 Jun 2011 17:19:29 -0400 Message-ID: <1632966653.1490.1308086369907.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 673345528.22797.1302619233067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8399108266410378255== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10875?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10875: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:collapsibleSubTable bad performance when hiding or showing the subta= ble on client side > -------------------------------------------------------------------------= ------------------ > > Key: RF-10875 > URL: https://issues.jboss.org/browse/RF-10875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > There is I think quite bad performance, to hide or show subtable takes ab= out 3 seconds, which is quite long, when considering that it is on client s= ide. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8399108266410378255==-- From jira-events at lists.jboss.org Tue Jun 14 17:19:29 2011 Content-Type: multipart/mixed; boundary="===============3656999942785458208==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10875) rich:collapsibleSubTable bad performance when hiding or showing the subtable on client side Date: Tue, 14 Jun 2011 17:19:29 -0400 Message-ID: <599339079.1482.1308086369614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 673345528.22797.1302619233067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3656999942785458208== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10875?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608669#com= ment-12608669 ] = Jay Balunas commented on RF-10875: ---------------------------------- This might be related to some optimizations that were made as part of the t= weetstream example. Although how to resolve in the general component will = need to be investigated. > rich:collapsibleSubTable bad performance when hiding or showing the subta= ble on client side > -------------------------------------------------------------------------= ------------------ > > Key: RF-10875 > URL: https://issues.jboss.org/browse/RF-10875 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Fix For: 4.1.0.Final > > > There is I think quite bad performance, to hide or show subtable takes ab= out 3 seconds, which is quite long, when considering that it is on client s= ide. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3656999942785458208==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:29 2011 Content-Type: multipart/mixed; boundary="===============2418475043942650140==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10876) rich:toolBar links are barely visible Date: Tue, 14 Jun 2011 17:27:29 -0400 Message-ID: <1613703084.1517.1308086849744.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 41751615.22831.1302619473394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2418475043942650140== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10876?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10876: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:toolBar links are barely visible > ------------------------------------- > > Key: RF-10876 > URL: https://issues.jboss.org/browse/RF-10876 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > demo - sample - poppupPanel > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > The link which is on the toolbar in the demo for poppupPanel, in the samp= le of login panel positioning, is almost invisible with some skins, but it = is problem not only on mobile devices but the problem of skinnability in ge= neral. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2418475043942650140==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============2246499690260723255==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10880) rich:inplaceSelect no highlighting for options in this select, does not work when should be activated by double click Date: Tue, 14 Jun 2011 17:27:29 -0400 Message-ID: <2096936358.1522.1308086849932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 420559164.22880.1302620553096.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2246499690260723255== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10880?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10880: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:inplaceSelect no highlighting for options in this select, does not w= ork when should be activated by double click > -------------------------------------------------------------------------= -------------------------------------------- > > Key: RF-10880 > URL: https://issues.jboss.org/browse/RF-10880 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > There is no highlighting when I touch the option. Select does not work wh= en it should be activated by double click. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2246499690260723255==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============5628119970452516671==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10878) rich:autoComplete highlighting of choises does not work Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <2086466202.1534.1308086850333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1773419359.22867.1302620313393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5628119970452516671== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10878?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10878: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:autoComplete highlighting of choises does not work > ------------------------------------------------------- > > Key: RF-10878 > URL: https://issues.jboss.org/browse/RF-10878 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > When there is more than one choice to select, then the highlighting does = not work. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5628119970452516671==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============4321008250582139514==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10891) rich:dragSource it is not possible to drag an object Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <1232562284.1528.1308086850123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 422574230.27064.1302769714153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4321008250582139514== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10891?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10891: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:dragSource it is not possible to drag an object > ---------------------------------------------------- > > Key: RF-10891 > URL: https://issues.jboss.org/browse/RF-10891 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo-application - richfaces-showcase-4.0.0.Final-j= ee6.war > container - JBoss AS 6.0.0.Final > mobile devices - = > iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > Does not work at all, it is not possible to drag the item. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4321008250582139514==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============1509050942920110435==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10877) rich:toolTip client side toolTip has problems to show up Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <592575504.1526.1308086850061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1777637295.22841.1302619833142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1509050942920110435== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10877?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10877: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:toolTip client side toolTip has problems to show up > -------------------------------------------------------- > > Key: RF-10877 > URL: https://issues.jboss.org/browse/RF-10877 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > The client side tooltip has problem to sometimes to show up, mainly when = should be showed as first tool tip at that demo for tool tip. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1509050942920110435==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============5992370938705957199==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10881) rich:extendedDataTable there is no visible sign that you can scrool over this component Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <1546770930.1542.1308086850614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 508836447.22922.1302621153195.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5992370938705957199== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10881?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10881: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:extendedDataTable there is no visible sign that you can scrool over = this component > -------------------------------------------------------------------------= -------------- > > Key: RF-10881 > URL: https://issues.jboss.org/browse/RF-10881 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > There is now visible sign that you can scroll over this component. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5992370938705957199==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============9164519127581967513==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10892) components listed in the description were quite difficult to hit Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <1857459963.1538.1308086850451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 251544164.27081.1302770613163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9164519127581967513== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10892?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10892: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > components listed in the description were quite difficult to hit > ---------------------------------------------------------------- > > Key: RF-10892 > URL: https://issues.jboss.org/browse/RF-10892 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo-application - richfaces-showcase-4.0.0.Final-j= ee6.war > container - JBoss AS 6.0.0.Final > mobile devices - = > iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 > Reporter: Juraj Huska > Assignee: Wesley Hales > Priority: Minor > Fix For: 4.1.0.Final > > > 1.The numbers of pages on dataScroller, mainly when there is lot of other= clickable components - iPhone > 2.The plus sign in the trees, mainly not the first level plus sign, but s= ome sublevels plus signs - Nexus > 3.The cross, which should cancel the poppup modal panel. iPhone, iPad -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9164519127581967513==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 Content-Type: multipart/mixed; boundary="===============6629859968136702386==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10889) rich:select highlighting of options does not work Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <1385405460.1544.1308086850674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1257424365.27013.1302768993590.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6629859968136702386== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10889?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10889: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:select highlighting of options does not work > ------------------------------------------------- > > Key: RF-10889 > URL: https://issues.jboss.org/browse/RF-10889 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo-application - richfaces-showcase-4.0.0.Final-j= ee6.war > container - JBoss AS 6.0.0.Final > mobile devices - = > iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > There is no highlighting when I touch the option. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6629859968136702386==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:31 2011 Content-Type: multipart/mixed; boundary="===============6449129635488713220==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10879) rich:inputSlider it is not possible to slide the slider Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <1573472648.1552.1308086850883.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 695283934.22879.1302620553067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6449129635488713220== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10879?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10879: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:inputSlider it is not possible to slide the slider > ------------------------------------------------------- > > Key: RF-10879 > URL: https://issues.jboss.org/browse/RF-10879 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > There is no option to slide the slider, the only way to move that slider = is to click on particular place to move it. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6449129635488713220==-- From jira-events at lists.jboss.org Tue Jun 14 17:27:31 2011 Content-Type: multipart/mixed; boundary="===============2234114866387101577==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10890) rich:fileUpload nothing happen when I touch add button Date: Tue, 14 Jun 2011 17:27:30 -0400 Message-ID: <593463153.1550.1308086850837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1290203520.27027.1302769113031.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2234114866387101577== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10890?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10890: ----------------------------- Assignee: Wesley Hales Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:fileUpload nothing happen when I touch add button > ------------------------------------------------------ > > Key: RF-10890 > URL: https://issues.jboss.org/browse/RF-10890 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo-application - richfaces-showcase-4.0.0.Final-j= ee6.war > container - JBoss AS 6.0.0.Final > mobile devices - = > iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > > Nothing happen when I hit the add button. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2234114866387101577==-- From jira-events at lists.jboss.org Tue Jun 14 17:33:29 2011 Content-Type: multipart/mixed; boundary="===============5894122046027252574==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10882) Upgrade jQuery to 1.5.2 version Date: Tue, 14 Jun 2011 17:33:29 -0400 Message-ID: <1683269610.1558.1308087209446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1860036842.22956.1302621274906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5894122046027252574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10882?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10882: ----------------------------- Issue Type: Task (was: Component Upgrade) Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Upgrade jQuery to 1.5.2 version > ------------------------------- > > Key: RF-10882 > URL: https://issues.jboss.org/browse/RF-10882 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: client-lib > Affects Versions: 4.0.0.Final > Reporter: George Gastaldi > Fix For: 4.1.0.Final > > > As for http://jquery.com/, the latest version available is 1.5.2. Conside= r upgrading jQuery to that version. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5894122046027252574==-- From jira-events at lists.jboss.org Tue Jun 14 18:01:29 2011 Content-Type: multipart/mixed; boundary="===============8152882225820633948==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10884) action doesn't work on rich:panelMenuGroup Date: Tue, 14 Jun 2011 18:01:29 -0400 Message-ID: <613997415.1617.1308088889512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2028548071.25493.1302707853097.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8152882225820633948== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10884?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-10884. ------------------------------ Resolution: Rejected Works as expected > action doesn't work on rich:panelMenuGroup > ------------------------------------------ > > Key: RF-10884 > URL: https://issues.jboss.org/browse/RF-10884 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-menu > Affects Versions: 4.0.0.Final > Environment: myfaces 2.0.5, Richfaces 4.0.0.Final. > Reporter: James G > Labels: rich:panelMenuGroup > Fix For: 4.1.0.Milestone1 > > > If you specify an action for a rich:panelMenuGroup in server mode, it is = never called. > This used to work 3.3.0 and the action DOES work for rich:panelMenuItem. > e.g.: > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8152882225820633948==-- From jira-events at lists.jboss.org Tue Jun 14 18:05:29 2011 Content-Type: multipart/mixed; boundary="===============6457156864634205853==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10925) ELResolver #{bean.property[value]} and graphValidator causes exception Date: Tue, 14 Jun 2011 18:05:29 -0400 Message-ID: <249055615.1623.1308089129503.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 744570596.28727.1302796653333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6457156864634205853== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10925?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10925: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/thread/164744 (was: http:/= /community.jboss.org/thread/164744) > ELResolver #{bean.property[value]} and graphValidator causes exception > ---------------------------------------------------------------------- > > Key: RF-10925 > URL: https://issues.jboss.org/browse/RF-10925 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators, regression > Affects Versions: 4.0.0.Final > Environment: Mojarra 2.0.4 + Tomcat 7 and Weblogic 10.3.4 > Reporter: Jesper Vrelits > Priority: Critical > Fix For: 4.1.0.Final > > > Not able to resolve property in bean when as #{bean.property[value]} when= wrapped in graphValidator. > Veryified on Tomcat 7 and Weblogic 10.3.4. > If graphValidator is removed it works. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6457156864634205853==-- From jira-events at lists.jboss.org Tue Jun 14 18:05:29 2011 Content-Type: multipart/mixed; boundary="===============9218550382614260410==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10926) Resources: add minimization for JS/CSS resources Date: Tue, 14 Jun 2011 18:05:29 -0400 Message-ID: <1076322763.1625.1308089129572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 840267694.30538.1302868113265.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9218550382614260410== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10926?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10926: ----------------------------- Issue Type: Enhancement (was: Task) Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: optimization We need to review how difficult this will be and if we can get it into 4.1. > Resources: add minimization for JS/CSS resources > ------------------------------------------------ > > Key: RF-10926 > URL: https://issues.jboss.org/browse/RF-10926 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: core, optimization > Reporter: Nick Belaevski > Fix For: 4.1.0.Final > > > For 'production' stage we should provide minified versions of all resourc= es as JSF does for jsf.js. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9218550382614260410==-- From jira-events at lists.jboss.org Tue Jun 14 18:07:33 2011 Content-Type: multipart/mixed; boundary="===============7400027146638619182==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10929) Full control over displayed label in InplaceSelect Date: Tue, 14 Jun 2011 18:07:32 -0400 Message-ID: <293292675.1631.1308089252937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 688414769.31873.1302909213041.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7400027146638619182== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10929?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10929: ----------------------------- Issue Type: Enhancement (was: Patch) Fix Version/s: (was: 4.1.0.Milestone1) > Full control over displayed label in InplaceSelect > -------------------------------------------------- > > Key: RF-10929 > URL: https://issues.jboss.org/browse/RF-10929 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Reporter: Val Blant > Labels: InplaceSelect > Fix For: 3.Future > > Attachments: filteredLabelInplaceSelect.js, FilteredLabelInplaceS= electHandler.java, FilteredLabelInplaceSelectRenderer.java, HtmlFilteredLab= elInplaceSelect.java > > > This patch is somewhat related to this one - https://issues.jboss.org/bro= wse/RF-4302, but it takes that improvement a step further. > In the patch above, Greg introduced a new attribute (_showValueInView_) t= o enable the component to display the value as the label. This is very usef= ul, but I think it doesn't take it far enough. There are situations where i= t would be useful to have complete control over the label displayed once th= e selection is made. = > For example, I have some data which looks like this: > ||Value||In-list Label||Label after selection|| > |1234|1 - Farming Expenses|1| > |3453|2 - Farming Income|2| > |4564|3 - Other Expenses|3| > I don't think there is a way to do this with the current functionality of= _InplaceSelect_. > I didn't want to modify RichFaces, so in order to solve this problem I ex= tended _InplaceSelect_ to make a _FilteredLabelInplaceSelect_ which takes o= ne extra argument called _filterDisplayLabelMethod_ that takes a _MethodExp= ression_ that points to a method which takes a _SelectItem_ and returns the= desired label string. > Like this: > {code:title=3DUsage} > value=3D"#{backingBean.targetMeasurementDetailOid}" > filterDisplayLabelMethod=3D"#{backingBean.filterLabelDisplayValue}"> > > > {code} > {code:title=3DBacking Bean} > public String filterLabelDisplayValue(SelectItem item) { > String label =3D item.getLabel(); > if ( label !=3D null && label.contains("-") ) { > StringTokenizer t =3D new StringTokenizer(label); > if ( t.hasMoreTokens() ) { > label =3D t.nextToken(); > } > } > = > return label; > } > {code} > So, this component achieves server side label filtering with just a few c= hanges. I didn't modify existing RichFaces code, but it would be very easy = to apply my changes to the existing component (for those that know their wa= y around your building procedure :)). In fact, it would take even less code= , b/c I had to work around some inconveniences that would not be present if= I was modifying the component directly. I don't know how to make a proper = patch for you, so I'm submitting my code as a separate component in case yo= u decide to use it to augment the existing _InplaceSelect_. > |HtmlFilteredLabelInplaceSelect|Component that holds the new attribue| > |FilteredLabelInplaceSelectHandler|Sets the label filter MethodExpression= on HtmlFilteredLabelInplaceSelect| > |FilteredLabelInplaceSelectRenderer|Renders some javascript that augments= the existing client side code| > |filteredLabelInplaceSelect.js|Overrides applyTmpValue() and findLabel() = so they know how to get at the filtered label| > \\ > I hope this will be useful and my apologies for not submitting a proper p= atch (no time to learn how at the moment). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7400027146638619182==-- From jira-events at lists.jboss.org Tue Jun 14 18:09:29 2011 Content-Type: multipart/mixed; boundary="===============8827785994924447406==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10930) calendar: decode of the behavior not occurs for custom events Date: Tue, 14 Jun 2011 18:09:29 -0400 Message-ID: <191092444.1638.1308089369574.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 293799868.33581.1303119933220.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8827785994924447406== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10930?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10930: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: base functionality = Forum Reference: http://community.jboss.org/message/600382#600382 (was= : http://community.jboss.org/message/600382#600382) > calendar: decode of the behavior not occurs for custom events > ------------------------------------------------------------- > > Key: RF-10930 > URL: https://issues.jboss.org/browse/RF-10930 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > see forum post. checked at rf-showcase and confirmed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8827785994924447406==-- From jira-events at lists.jboss.org Tue Jun 14 18:11:29 2011 Content-Type: multipart/mixed; boundary="===============7738727641872560820==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10932) MyFaces: upgrade to 2.0.5 release Date: Tue, 14 Jun 2011 18:11:29 -0400 Message-ID: <517045468.1642.1308089489603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 541888875.34949.1303140933284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7738727641872560820== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10932?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10932: ----------------------------- Priority: Critical (was: Major) These types of changes best made early. > MyFaces: upgrade to 2.0.5 release > --------------------------------- > > Key: RF-10932 > URL: https://issues.jboss.org/browse/RF-10932 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Priority: Critical > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7738727641872560820==-- From jira-events at lists.jboss.org Tue Jun 14 18:11:29 2011 Content-Type: multipart/mixed; boundary="===============4759390176977023995==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10936) dataScroller: Ajax request not customizable Date: Tue, 14 Jun 2011 18:11:29 -0400 Message-ID: <1981072576.1650.1308089489858.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2017755012.37818.1303206153711.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4759390176977023995== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10936?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10936: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/message/600591#600591 (was= : http://community.jboss.org/message/600591#600591) > dataScroller: Ajax request not customizable > ------------------------------------------- > > Key: RF-10936 > URL: https://issues.jboss.org/browse/RF-10936 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Final > > > Definitelly critical issue. The only Ajax attribute I see - render. = > And execute=3D"@form"(ajaxSingle=3D"false") was required by 3.3.3 custome= rs in many forum posts. > Now it's not possible to save inputs data while switching. > all the other Ajax attributes should be added also. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4759390176977023995==-- From jira-events at lists.jboss.org Tue Jun 14 18:13:29 2011 Content-Type: multipart/mixed; boundary="===============1296721078789988045==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10941) a4j:command* components misses default behavior event Date: Tue, 14 Jun 2011 18:13:29 -0400 Message-ID: <1606803558.1653.1308089609465.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1049007299.42458.1303309173106.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1296721078789988045== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10941?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10941: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: base functionality = Forum Reference: http://community.jboss.org/message/601191#601191 (was= : http://community.jboss.org/message/601191#601191) > a4j:command* components misses default behavior event > ----------------------------------------------------- > > Key: RF-10941 > URL: https://issues.jboss.org/browse/RF-10941 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-a4j-core > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Minor > Fix For: 4.1.0.Final > > > http://community.jboss.org/message/601191#601191 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1296721078789988045==-- From jira-events at lists.jboss.org Tue Jun 14 18:15:29 2011 Content-Type: multipart/mixed; boundary="===============0309098091540383108==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10942) fileUpload: missing options to define list sizes Date: Tue, 14 Jun 2011 18:15:29 -0400 Message-ID: <128530011.1657.1308089729734.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1706892066.44673.1303371393044.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0309098091540383108== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10942?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10942: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: base functionality = Forum Reference: http://community.jboss.org/message/601193#601193 (was= : http://community.jboss.org/message/601193#601193) > fileUpload: missing options to define list sizes > ------------------------------------------------ > > Key: RF-10942 > URL: https://issues.jboss.org/browse/RF-10942 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > > Now we have neither listWidth & listHeight nor listClass attributes. So u= sers has no simple way to define sizes for the list of entries element. > Personally I think listClass is a must to be added. But prefferable to ha= ve size attributes also as them was often used by the customers as actually= them usually modifying just the sizes and do not need to create css class = for that. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0309098091540383108==-- From jira-events at lists.jboss.org Tue Jun 14 18:15:29 2011 Content-Type: multipart/mixed; boundary="===============2662268175897852324==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10947) rich:dragSource doesn't work after being rerendered via ajax Date: Tue, 14 Jun 2011 18:15:29 -0400 Message-ID: <903409633.1660.1308089729812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11392280.1312.1303403598427.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2662268175897852324== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10947?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10947: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:dragSource doesn't work after being rerendered via ajax > ------------------------------------------------------------ > > Key: RF-10947 > URL: https://issues.jboss.org/browse/RF-10947 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-drag/drop > Affects Versions: 4.0.0.Final > Environment: mojarra 2.1.1 gf3.1 = > Reporter: Adrian Meredith > Labels: draganddrop > Fix For: 4.1.0.Final > > > Drag Source is not applied = > using the following code in a composite component > {code} > > > > > > > > > > ... > {code} > Basically the panel at the top is draggable, the one at the bottom (which= is below the panelGroup) is not. Looking at the source its as though drag= Source isn't even there as it is rendered without any reference to it (i.e.= no ui-draggable class for example). > Drag and drop support was the main reason i'm using richfaces! so its ver= y important to me as i one to drag rows from our table widget onto another = panel for quick tagging of results. Unfortunately I'm gonna be away for th= e next two weeks but It'd be good to get more information on it. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2662268175897852324==-- From jira-events at lists.jboss.org Tue Jun 14 18:17:29 2011 Content-Type: multipart/mixed; boundary="===============2240963533041148699==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10952) FileUpload component does not have a "clear" handler. Date: Tue, 14 Jun 2011 18:17:29 -0400 Message-ID: <594648109.1674.1308089849508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 740293922.6818.1303745419153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2240963533041148699== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10952?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10952: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Critical (was: Major) Component/s: base functionality = Forum Reference: http://community.jboss.org/thread/165816?tstart=3D0 (= was: http://community.jboss.org/thread/165816?tstart=3D0) > FileUpload component does not have a "clear" handler. > ----------------------------------------------------- > > Key: RF-10952 > URL: https://issues.jboss.org/browse/RF-10952 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-a4j-core > Affects Versions: 4.0.0.Final > Reporter: R T > Priority: Critical > Labels: FileUpload > Fix For: 4.1.0.Final > > > shoul= d call testPanel to render, but FileUpload does not have a handler for the = clear event. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2240963533041148699==-- From jira-events at lists.jboss.org Tue Jun 14 18:21:29 2011 Content-Type: multipart/mixed; boundary="===============4862960668031551809==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10956) Archetypes: GAE archetype references missing taglib resource Date: Tue, 14 Jun 2011 18:21:29 -0400 Message-ID: <1289407896.1681.1308090089471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1643021387.14846.1303930518576.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4862960668031551809== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10956?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10956: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/thread/165780?tstart=3D0 (= was: http://community.jboss.org/thread/165780?tstart=3D0) > Archetypes: GAE archetype references missing taglib resource > ------------------------------------------------------------ > > Key: RF-10956 > URL: https://issues.jboss.org/browse/RF-10956 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: archetype > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Fix For: 4.1.0.Final > > > See details on forum. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4862960668031551809==-- From jira-events at lists.jboss.org Tue Jun 14 18:23:29 2011 Content-Type: multipart/mixed; boundary="===============1251302187834352325==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10958) Unnecessary attributes in faces-config.xml for message component Date: Tue, 14 Jun 2011 18:23:29 -0400 Message-ID: <1024740612.1690.1308090209791.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 739306479.15213.1303938078284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1251302187834352325== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10958?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10958: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Priority: Minor (was: Major) > Unnecessary attributes in faces-config.xml for message component > ---------------------------------------------------------------- > > Key: RF-10958 > URL: https://issues.jboss.org/browse/RF-10958 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , cdk, component > Affects Versions: 4.1.0.Milestone1 > Environment: RichFaces 4.1.0-SNAPSHOT r.22442 > Metamer 4.1.0-SNAPSHOT r.22441 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Priority: Minor > Fix For: 4.1.0.Final > > > There are some unnecessary attributes in faces-config.xml for rich:messag= e component, such as: rendererType, rendersChildren. childCount, children, = family, facets. > These attributes then are suggested by IDE to fill by some value, which s= hould confuse developers. > Another possible unnecessary attributes are: onkeydown, onkeypress and on= keyup since message is not ValueHolder type (I meant there is not editable = input) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1251302187834352325==-- From jira-events at lists.jboss.org Tue Jun 14 18:23:29 2011 Content-Type: multipart/mixed; boundary="===============3373244163862113370==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10957) message and messages components missing some attributes annotation Date: Tue, 14 Jun 2011 18:23:29 -0400 Message-ID: <102949539.1684.1308090209588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 210217616.15210.1303937538325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3373244163862113370== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10957?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10957: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > message and messages components missing some attributes annotation > ------------------------------------------------------------------ > > Key: RF-10957 > URL: https://issues.jboss.org/browse/RF-10957 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , cdk, component > Affects Versions: 4.1.0.Milestone1 > Environment: RichFaces 4.1.0-SNAPSHOT r.22442 > Metamer 4.1.0-SNAPSHOT r.22440 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Priority: Critical > Fix For: 4.1.0.Final > > > Missing some attributes declared by faces-config.xml (and suggested by ID= E) in Metamer (missing annotations for them on appropriate fields in UI* im= plementation): > dir, lang, onclick, ondblclick, onkeydown, onkeypress, onkeyup, onmousedo= wn, onmousemove, onmouseout, onmouseover, onmouseup, style, styleClass, tit= le. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3373244163862113370==-- From jira-events at lists.jboss.org Tue Jun 14 18:23:30 2011 Content-Type: multipart/mixed; boundary="===============0416494165233508325==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10961) tabPanel causes NullPointerException if activeItem is not found Date: Tue, 14 Jun 2011 18:23:30 -0400 Message-ID: <1643306225.1703.1308090210139.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 127938302.16762.1303981458273.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0416494165233508325== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10961?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10961: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Affects Version/s: (was: 4.0.0.Final) Component/s: component-output (was: component-panels-layout-themes) Forum Reference: http://community.jboss.org/message/602791#602791 (w= as: http://community.jboss.org/message/602791#602791) > tabPanel causes NullPointerException if activeItem is not found > --------------------------------------------------------------- > > Key: RF-10961 > URL: https://issues.jboss.org/browse/RF-10961 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Environment: RichFaces 4.0.0-Final > Apache Tomcat 6.0.32 > Reporter: Stephan Meisinger > Fix For: 4.1.0.Final > > > ... > class foo { public String getTab(){return null;} } > causes a NPE in org.richfaces.component.AbstractTabPanel (Line 64). This = Bug was introduced with RF-10624. If activeItem is declared in a page, but = Id not found getItemByIndex will return null, but return value is not check= ed. > If bean return null, String is transformed by apache EL resolver from nul= l to empty string (""). So res is also not null. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0416494165233508325==-- From jira-events at lists.jboss.org Tue Jun 14 18:25:29 2011 Content-Type: multipart/mixed; boundary="===============2749613420010212179==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10964) autocomplete delete key behavior creates inconsistent state Date: Tue, 14 Jun 2011 18:25:29 -0400 Message-ID: <240258424.1712.1308090329719.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1902763516.22559.1304100558276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2749613420010212179== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10964?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10964: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > autocomplete delete key behavior creates inconsistent state > ----------------------------------------------------------- > > Key: RF-10964 > URL: https://issues.jboss.org/browse/RF-10964 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces Showcase environment. > Reporter: James G > Labels: autocomplete > Fix For: 4.1.0.Final > > > Can be seen in the RichFaces Showcase environment. > http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dautocomplete&skin=3DblueSky > In the 3rd autocomplete box, enter the letter 'a' and pick the first sugg= estion. (Alabama) > Click the mouse to the beginning of the autocomplete box and use the Dele= te key to erase Alabama. > Now the autocomplete box no longer works correctly. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2749613420010212179==-- From jira-events at lists.jboss.org Tue Jun 14 18:25:29 2011 Content-Type: multipart/mixed; boundary="===============2740144762267166278==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10963) a4j:commandButton doesn't update the hidden javax.faces.ViewState from render form Date: Tue, 14 Jun 2011 18:25:29 -0400 Message-ID: <965814460.1709.1308090329627.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1667105382.19611.1304049738324.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2740144762267166278== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10963?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10963: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > a4j:commandButton doesn't update the hidden javax.faces.ViewState from re= nder form > -------------------------------------------------------------------------= --------- > > Key: RF-10963 > URL: https://issues.jboss.org/browse/RF-10963 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.0.0.Final > Environment: S.O.: Ubuntu 10.04 > Browser: Chrome > JSF Impl: JSF 2.0.2 > Reporter: Guilherme Moreira > Fix For: 4.1.0.Final > > > A a4j:commandButton that's render another form causes this other form los= t it's hidden input viewState. > Example > xmlns:ui=3D"http://java.sun.com/jsf/facelets" > xmlns:f=3D"http://java.sun.com/jsf/core" > xmlns:h=3D"http://java.sun.com/jsf/html" > xmlns:rich=3D"http://richfaces.org/rich" > xmlns:a4j=3D"http://richfaces.org/a4j"> > > > > > > > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2740144762267166278==-- From jira-events at lists.jboss.org Tue Jun 14 18:27:29 2011 Content-Type: multipart/mixed; boundary="===============1291277281946980600==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Tue, 14 Jun 2011 18:27:29 -0400 Message-ID: <1427453943.1719.1308090449624.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1291277281946980600== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608688#com= ment-12608688 ] = Jay Balunas commented on RF-10970: ---------------------------------- Please provide more of a description for this request? > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Wanderlei Magri > Labels: new_and_noteworthy > Fix For: 4.1.0.Milestone1 > > Original Estimate: 3 weeks > Remaining Estimate: 3 weeks > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1291277281946980600==-- From jira-events at lists.jboss.org Tue Jun 14 18:27:29 2011 Content-Type: multipart/mixed; boundary="===============7551575858376269242==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10966) rich:autocomplete - missing @status attribute Date: Tue, 14 Jun 2011 18:27:29 -0400 Message-ID: <751018858.1715.1308090449513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1543447644.24842.1304334138307.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7551575858376269242== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10966?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10966: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/thread/166082 (was: http:/= /community.jboss.org/thread/166082) > rich:autocomplete - missing @status attribute > --------------------------------------------- > > Key: RF-10966 > URL: https://issues.jboss.org/browse/RF-10966 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > > When you want to provide status for autocompletion operation, you need to= use named status. > You can also use form-based status, but that will force you to use separa= te forms for each input. > Also other ajax-like attributes are missing, please investigate more. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7551575858376269242==-- From jira-events at lists.jboss.org Tue Jun 14 18:27:29 2011 Content-Type: multipart/mixed; boundary="===============4123481513080661831==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10968) Tree: treeSelectionChangeListener and treeToggleListener do not work Date: Tue, 14 Jun 2011 18:27:29 -0400 Message-ID: <500013493.1718.1308090449593.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 35352639.27278.1304411418583.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4123481513080661831== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10968?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10968: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Tree: treeSelectionChangeListener and treeToggleListener do not work > -------------------------------------------------------------------- > > Key: RF-10968 > URL: https://issues.jboss.org/browse/RF-10968 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tree > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22458 > Metamer 4.1.0-SNAPSHOT r.22459 > Mojarra 2.0.3- > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.1.0.Final > > > Attributes treeSelectionChangeListener and treeToggleListener in rich:tre= e do not work. However, attributes selectionChangeListener and toggleListen= er do work. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4123481513080661831==-- From jira-events at lists.jboss.org Tue Jun 14 18:29:29 2011 Content-Type: multipart/mixed; boundary="===============0285190391400898089==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10972) Taglib: attributes action and actionListener of tab should be hidden Date: Tue, 14 Jun 2011 18:29:29 -0400 Message-ID: <1860696519.1729.1308090569756.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2119626111.32384.1304588778368.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0285190391400898089== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10972?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10972: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Taglib: attributes action and actionListener of tab should be hidden > -------------------------------------------------------------------- > > Key: RF-10972 > URL: https://issues.jboss.org/browse/RF-10972 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-output > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22463 > Metamer 4.1.0-SNAPSHOT r.22465 > Mojarra 2.1.0-FCS > GlassFish Server Open Source Edition 3.1 > Java(TM) SE Runtime Environment 1.6.0_24-b07 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Labels: needs-qe > Fix For: 4.1.0.Final > > > Component rich:tab should not have attributes action and actionListener. = They don't work and other switchable panels (accordion, toggle panel) don't= have these attributes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0285190391400898089==-- From jira-events at lists.jboss.org Tue Jun 14 18:29:29 2011 Content-Type: multipart/mixed; boundary="===============4523034885987567088==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Tue, 14 Jun 2011 18:29:29 -0400 Message-ID: <948438207.1724.1308090569570.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4523034885987567088== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10970: ----------------------------- Original Estimate: (was: 3 weeks) Remaining Estimate: (was: 3 weeks) Labels: (was: new_and_noteworthy) Fix Version/s: 4.Future (was: 4.1.0.Milestone1) Component/s: component-input Affects: (was: [Documentation (Ref Guide, User Guide, etc.= ), Interactive Demo/Tutorial, Compatibility/Configuration, Release Notes]) Also please do not fill in every checkbox, option, and impl estimate. > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Wanderlei Magri > Fix For: 4.Future > > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4523034885987567088==-- From jira-events at lists.jboss.org Tue Jun 14 18:31:29 2011 Content-Type: multipart/mixed; boundary="===============1938188043904664425==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10973) Skinning: it's not possible to redefine some classes Date: Tue, 14 Jun 2011 18:31:29 -0400 Message-ID: <351320052.1733.1308090689604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 227349430.35245.1304680998276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1938188043904664425== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10973?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10973: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) Component/s: compatibility Forum Reference: http://community.jboss.org/message/603877 (was: http:= //community.jboss.org/message/603877) > Skinning: it's not possible to redefine some classes > ---------------------------------------------------- > > Key: RF-10973 > URL: https://issues.jboss.org/browse/RF-10973 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, skinning > Affects Versions: 4.0.0.Final > Environment: Chrome 11.0.696.57 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.Future > > > There are some differences among browsers in handling rewritten CSS class= es, e.g. define following class for rich:panel: > {code} > .rf-p-b { > padding: 0px; > background-color: green; > } > {code} > result: in Firefox 3.6.x, panel's body has padding 0 and green background= , in Chrome 11 background is green but panel has default padding (10px) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1938188043904664425==-- From jira-events at lists.jboss.org Tue Jun 14 18:31:29 2011 Content-Type: multipart/mixed; boundary="===============0892292872236626926==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10976) EDT columns cant be resized Date: Tue, 14 Jun 2011 18:31:29 -0400 Message-ID: <924593693.1739.1308090689785.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 637501282.38511.1304929758564.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0892292872236626926== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10976?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10976: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > EDT columns cant be resized > --------------------------- > > Key: RF-10976 > URL: https://issues.jboss.org/browse/RF-10976 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-tables > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22477 > MEtamer 4.1.0-SNAPSHOT r.22479 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.57 @ Linux i686 > Firefox 4.0 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0892292872236626926==-- From jira-events at lists.jboss.org Tue Jun 14 18:33:29 2011 Content-Type: multipart/mixed; boundary="===============5454876425189973166==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10978) Richfaces 4.0 Final fileUpload incomptible with Primefaces 2 Date: Tue, 14 Jun 2011 18:33:29 -0400 Message-ID: <288801911.1749.1308090809680.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1492970409.39415.1304949018293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5454876425189973166== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10978?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10978: ----------------------------- Labels: (was: waiting_on_user) Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: compatibility Forum Reference: http://community.jboss.org/message/604023 (was: http:= //community.jboss.org/message/604023) > Richfaces 4.0 Final fileUpload incomptible with Primefaces 2 > ------------------------------------------------------------ > > Key: RF-10978 > URL: https://issues.jboss.org/browse/RF-10978 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Reporter: Matt Choate > Fix For: 4.1.0.Final > > > Including the Primefaces 2 library along with Richfaces 4.0 Final causes = the Richfaces fileUpload component to break. In the JBoss logs this messa= ge appears when rendering the page with the component: > "JSF1091: No mime type could be found for file fileUploadProgress. To r= esolve this, add a mime-type mapping to the applications web.xml" > Also when monitoring the HTTP traffic in Fiddler I see this entry over an= d over. Appears to be stuck in some loop > /lsweb/rfRes/fileUploadProgress.jsf?ln=3Dorg.richfaces&rf_fu_uid_alt=3D0.= 712090154203886 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5454876425189973166==-- From jira-events at lists.jboss.org Tue Jun 14 18:33:29 2011 Content-Type: multipart/mixed; boundary="===============7639439357792828560==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10979) richfaces-showcase: tree demo uses application scoped bean Date: Tue, 14 Jun 2011 18:33:29 -0400 Message-ID: <420239697.1752.1308090809752.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1894010095.43041.1305037104595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7639439357792828560== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10979?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10979: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > richfaces-showcase: tree demo uses application scoped bean > ---------------------------------------------------------- > > Key: RF-10979 > URL: https://issues.jboss.org/browse/RF-10979 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Trivial > Fix For: 4.1.0.Final > > > So if you will play with selection at richfaces-showcase for some time yo= u will see that different result came as there are other users which uses t= he same demo page in the same time :) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7639439357792828560==-- From jira-events at lists.jboss.org Tue Jun 14 18:35:29 2011 Content-Type: multipart/mixed; boundary="===============4244562293519197052==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel Date: Tue, 14 Jun 2011 18:35:29 -0400 Message-ID: <398841512.1761.1308090929645.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4244562293519197052== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10980?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10980: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > Impossible to set tabindex of input inside rich:popupPanel > ---------------------------------------------------------- > > Key: RF-10980 > URL: https://issues.jboss.org/browse/RF-10980 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: accessibility, component-input, component-panels-lay= out-themes > Affects Versions: 4.0.0.Final > Environment: Windows 7, WebSphere AS 8b2, in both browsers IE and= FF. = > Reporter: Dmitry Volkov > Assignee: Jay Balunas > Labels: popupPanel, tabindex > Fix For: 4.Future > > > Tabindex attribute of any element inside rich:popupPanel forced to -1, th= erefore those elements can not be selected with keyboard. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4244562293519197052==-- From jira-events at lists.jboss.org Tue Jun 14 18:37:29 2011 Content-Type: multipart/mixed; boundary="===============6829790218477911244==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10981) Create event on e.g. to toggle error message panel with javascript Date: Tue, 14 Jun 2011 18:37:29 -0400 Message-ID: <2042338901.1765.1308091049418.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1780342475.43216.1305039864925.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6829790218477911244== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10981?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10981: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/message/604497 (was: http:= //community.jboss.org/message/604497) > Create event on e.g. to toggle error message panel with= javascript > -------------------------------------------------------------------------= ----------- > > Key: RF-10981 > URL: https://issues.jboss.org/browse/RF-10981 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: client-lib, component-validators > Affects Versions: 4.0.0.Final > Reporter: Markus L > Priority: Minor > Labels: client_side_validator > Fix For: 4.Future > > > Enhance rich:validator with event to e.g. enable an error message panel t= o be displayed/hidden when validation fails/passes. Could also be used to d= isplay a green check mark, which indicates validation passes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6829790218477911244==-- From jira-events at lists.jboss.org Tue Jun 14 18:39:29 2011 Content-Type: multipart/mixed; boundary="===============3359505793998296304==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10984) Implement rich:tree selectionType=server Date: Tue, 14 Jun 2011 18:39:29 -0400 Message-ID: <779512040.1770.1308091169590.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 19529798.45226.1305098778280.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3359505793998296304== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10984?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10984: ----------------------------- Summary: Implement rich:tree selectionType=3Dserver (was: rich:= tree selectionType=3Dserver throws Exception) Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > Implement rich:tree selectionType=3Dserver = > ----------------------------------------- > > Key: RF-10984 > URL: https://issues.jboss.org/browse/RF-10984 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tree > Affects Versions: 4.0.0.Final > Reporter: u j > Fix For: 4.Future > > > The component reference for RichFaces 4 states that rich:tree selectionTy= pe can be "server", but: > = > 17:35:25,373 GRAVE [javax.enterprise.resource.webcontainer.jsf.applicatio= n] Error Rendering View[/searchestab.xhtml]: java.lang.IllegalArgumentExcep= tion: server > at org.richfaces.renderkit.TreeRendererBase.getSelectionType(TreeRend= ererBase.java:164) [:4.0.0-SNAPSHOT] > at org.richfaces.renderkit.html.TreeRenderer.encodeEnd(TreeRenderer.j= ava:154) [:4.0.0-SNAPSHOT] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.ja= va:879) [:2.0.3-] > = > which is obvious in the code: > = > protected SwitchType getSelectionType(FacesContext context, UICompone= nt component) { > AbstractTree tree =3D (AbstractTree) component; > = > SwitchType selectionType =3D getSelectionTypeOrDefault(tree); > if (selectionType !=3D SwitchType.ajax && selectionType !=3D Swit= chType.client) { > //TODO - better message > throw new IllegalArgumentException(String.valueOf(selectionTy= pe)); > } > = > return selectionType; > } > See also > http://community.jboss.org/message/604516#604516 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3359505793998296304==-- From jira-events at lists.jboss.org Tue Jun 14 18:41:30 2011 Content-Type: multipart/mixed; boundary="===============3991845763409359301==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10985) richfaces-showcase: design and minor content problems Date: Tue, 14 Jun 2011 18:41:30 -0400 Message-ID: <500880328.1780.1308091290144.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3991845763409359301== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10985?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10985: ----------------------------- Priority: Critical (was: Major) > richfaces-showcase: design and minor content problems > ----------------------------------------------------- > > Key: RF-10985 > URL: https://issues.jboss.org/browse/RF-10985 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > 1) need to adjust "new" demos. The only new for now - arrangeable sample.= Having that outdated for so long makes the user thinks that nothing change= s there. > 2) http://50.richfaces-showcase.appspot.com/richfaces/component-sample.js= f?demo=3DdataTable&skin=3DblueSky arrangeable tab get cut. > 3) minor content problem: http://50.richfaces-showcase.appspot.com/richfa= ces/component-sample.jsf?demo=3DmediaOutput&skin=3DblueSky, all the colors = has "Color 1" label. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3991845763409359301==-- From jira-events at lists.jboss.org Tue Jun 14 18:43:29 2011 Content-Type: multipart/mixed; boundary="===============5304425687488650661==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10991) Drag'n'Drop: DOM tree pollution after dnd operations. Date: Tue, 14 Jun 2011 18:43:29 -0400 Message-ID: <1147147946.1786.1308091409704.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 5707707.6366.1305646801242.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5304425687488650661== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10991?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10991: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Drag'n'Drop: DOM tree pollution after dnd operations. > ----------------------------------------------------- > > Key: RF-10991 > URL: https://issues.jboss.org/browse/RF-10991 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-drag/drop > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Priority: Critical > Fix For: 4.1.0.Final > > > New indicator getting added to DOM each time when object dragged. And not= removed after drop operation. > http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3DdragDrop&skin=3DblueSky > drag "flexible ajax" a few times and drop but not to target zone but just= releasing the indicator. = > Now inspect the table cell with that element. I'm seeing next picture (as= much hidden td's as much times you dragged): > >
id=3D"form:src:0:j_idR370443752_3d201a4f" style=3D"position: relative;">= Flexible > Ajax
>
id=3D"form:src:0:j_idR370443752_3d201a4f" > style=3D"position: absolute; left: 635px; top: 307px; display: none;">Fl= exible > Ajax
>
id=3D"form:src:0:j_idR370443752_3d201a4f" > style=3D"position: absolute; left: 628px; top: 304px; display: none;">Fl= exible > Ajax
>
id=3D"form:src:0:j_idR370443752_3d201a4f" > style=3D"position: absolute; left: 642px; top: 307px; display: none;">Fl= exible > Ajax
>
id=3D"form:src:0:j_idR370443752_3d201a4f" > style=3D"position: absolute; left: 633px; top: 310px; display: none;">Fl= exible > Ajax
>
id=3D"form:src:0:j_idR370443752_3d201a4f" > style=3D"position: absolute; left: 639px; top: 317px; display: none;">Fl= exible > Ajax
> > Besides. Side issue maybe just review and create new one during that code= checks. I'm not sure why we adding ui:draggable styles and relative positi= on to *original* element right after it rendered. Why that could not be don= e only at clonned copy? Could that affect the UI in some cases(I think so)? -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5304425687488650661==-- From jira-events at lists.jboss.org Tue Jun 14 18:43:29 2011 Content-Type: multipart/mixed; boundary="===============2217325223345369352==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-10993) extendedDataTable eats up Content in IE8+ in when Zoom >= 110% Date: Tue, 14 Jun 2011 18:43:29 -0400 Message-ID: <1152443909.1789.1308091409800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1153061815.9670.1305722580926.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2217325223345369352== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10993?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12604799#com= ment-12604799 ] = Jay Balunas edited comment on RF-10993 at 6/14/11 6:43 PM: ----------------------------------------------------------- We obviously need to avoid having browsers ask our scripts to quit ;-) = We'll take a look for next release was (Author: jbalunas): We obviously need to avoid having browsers ask out scripts to quite ;-)= = We'll take a look for next release = > extendedDataTable eats up Content in IE8+ in when Zoom >=3D 110% > -------------------------------------------------------------- > > Key: RF-10993 > URL: https://issues.jboss.org/browse/RF-10993 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.0.0.Final > Environment: Win 7 > IE 8 (8.0.7600.16385 and above), IE9 (9.0.8112.16421) > Win2003 > IE 8 (8.0.6001.18702) > Reporter: martin bischoff > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > When browserzoom is acitivated (>=3D 110%), the Content of the extendendD= ataTable losses its heigth pixelwise. JavaScript Debugger shows me that the= re is an infite call of the following functions until the heigth is zero an= d the browser ask for script to terminate. > call stack: > - eventhandle (2200) > - handle (2562) > - proxy (768) > - updateLayout (308) > termination message (sorry its german): > Meldung: Ung=C3=BCltiges Argument. > Zeile: 308 > Zeichen: 5 > Code: 0 > URI: http:// ... /javax.faces.resource/extendedDataTable.js.xhtml?ln=3Dor= g.richfaces > I tested it in IE8 and IE9(a)IE8 mode. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2217325223345369352==-- From jira-events at lists.jboss.org Tue Jun 14 18:43:29 2011 Content-Type: multipart/mixed; boundary="===============2882391687927044515==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10989) Reimplement AbstractPanel.getActiveItem() more defensively Date: Tue, 14 Jun 2011 18:43:29 -0400 Message-ID: <607085096.1783.1308091409590.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1567669720.990.1305530880927.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2882391687927044515== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10989?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10989: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: optimization > Reimplement AbstractPanel.getActiveItem() more defensively > ---------------------------------------------------------- > > Key: RF-10989 > URL: https://issues.jboss.org/browse/RF-10989 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-panels-layout-themes, optimization > Affects Versions: 4.0.0.Final > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > > Based on the discussions in RF-10951, it will be good to implement Abstra= ctPanel.getActiveItem(), because it will fail each time you remove the acti= ve tab. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2882391687927044515==-- From jira-events at lists.jboss.org Tue Jun 14 18:45:29 2011 Content-Type: multipart/mixed; boundary="===============3959461238248862871==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10993) extendedDataTable eats up Content in IE8+ in when Zoom >= 110% Date: Tue, 14 Jun 2011 18:45:29 -0400 Message-ID: <1787763291.1792.1308091529859.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1153061815.9670.1305722580926.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3959461238248862871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10993?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10993: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > extendedDataTable eats up Content in IE8+ in when Zoom >=3D 110% > -------------------------------------------------------------- > > Key: RF-10993 > URL: https://issues.jboss.org/browse/RF-10993 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.0.0.Final > Environment: Win 7 > IE 8 (8.0.7600.16385 and above), IE9 (9.0.8112.16421) > Win2003 > IE 8 (8.0.6001.18702) > Reporter: martin bischoff > Priority: Critical > Fix For: 4.1.0.Final > > > When browserzoom is acitivated (>=3D 110%), the Content of the extendendD= ataTable losses its heigth pixelwise. JavaScript Debugger shows me that the= re is an infite call of the following functions until the heigth is zero an= d the browser ask for script to terminate. > call stack: > - eventhandle (2200) > - handle (2562) > - proxy (768) > - updateLayout (308) > termination message (sorry its german): > Meldung: Ung=C3=BCltiges Argument. > Zeile: 308 > Zeichen: 5 > Code: 0 > URI: http:// ... /javax.faces.resource/extendedDataTable.js.xhtml?ln=3Dor= g.richfaces > I tested it in IE8 and IE9(a)IE8 mode. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3959461238248862871==-- From jira-events at lists.jboss.org Tue Jun 14 18:45:30 2011 Content-Type: multipart/mixed; boundary="===============7850683493601874019==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10929) Full control over displayed label in InplaceSelect Date: Tue, 14 Jun 2011 18:45:29 -0400 Message-ID: <657153503.1796.1308091529959.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 688414769.31873.1302909213041.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7850683493601874019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10929?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608691#com= ment-12608691 ] = Val Blant commented on RF-10929: -------------------------------- Still working on getting IBM to allow me to sign the jboss open source agre= ement for this patch. Bureaucracy takes a while.... > Full control over displayed label in InplaceSelect > -------------------------------------------------- > > Key: RF-10929 > URL: https://issues.jboss.org/browse/RF-10929 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.3.Final > Reporter: Val Blant > Labels: InplaceSelect > Fix For: 3.Future > > Attachments: filteredLabelInplaceSelect.js, FilteredLabelInplaceS= electHandler.java, FilteredLabelInplaceSelectRenderer.java, HtmlFilteredLab= elInplaceSelect.java > > > This patch is somewhat related to this one - https://issues.jboss.org/bro= wse/RF-4302, but it takes that improvement a step further. > In the patch above, Greg introduced a new attribute (_showValueInView_) t= o enable the component to display the value as the label. This is very usef= ul, but I think it doesn't take it far enough. There are situations where i= t would be useful to have complete control over the label displayed once th= e selection is made. = > For example, I have some data which looks like this: > ||Value||In-list Label||Label after selection|| > |1234|1 - Farming Expenses|1| > |3453|2 - Farming Income|2| > |4564|3 - Other Expenses|3| > I don't think there is a way to do this with the current functionality of= _InplaceSelect_. > I didn't want to modify RichFaces, so in order to solve this problem I ex= tended _InplaceSelect_ to make a _FilteredLabelInplaceSelect_ which takes o= ne extra argument called _filterDisplayLabelMethod_ that takes a _MethodExp= ression_ that points to a method which takes a _SelectItem_ and returns the= desired label string. > Like this: > {code:title=3DUsage} > value=3D"#{backingBean.targetMeasurementDetailOid}" > filterDisplayLabelMethod=3D"#{backingBean.filterLabelDisplayValue}"> > > > {code} > {code:title=3DBacking Bean} > public String filterLabelDisplayValue(SelectItem item) { > String label =3D item.getLabel(); > if ( label !=3D null && label.contains("-") ) { > StringTokenizer t =3D new StringTokenizer(label); > if ( t.hasMoreTokens() ) { > label =3D t.nextToken(); > } > } > = > return label; > } > {code} > So, this component achieves server side label filtering with just a few c= hanges. I didn't modify existing RichFaces code, but it would be very easy = to apply my changes to the existing component (for those that know their wa= y around your building procedure :)). In fact, it would take even less code= , b/c I had to work around some inconveniences that would not be present if= I was modifying the component directly. I don't know how to make a proper = patch for you, so I'm submitting my code as a separate component in case yo= u decide to use it to augment the existing _InplaceSelect_. > |HtmlFilteredLabelInplaceSelect|Component that holds the new attribue| > |FilteredLabelInplaceSelectHandler|Sets the label filter MethodExpression= on HtmlFilteredLabelInplaceSelect| > |FilteredLabelInplaceSelectRenderer|Renders some javascript that augments= the existing client side code| > |filteredLabelInplaceSelect.js|Overrides applyTmpValue() and findLabel() = so they know how to get at the filtered label| > \\ > I hope this will be useful and my apologies for not submitting a proper p= atch (no time to learn how at the moment). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7850683493601874019==-- From jira-events at lists.jboss.org Tue Jun 14 18:45:30 2011 Content-Type: multipart/mixed; boundary="===============4513654081513715970==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11000) Hit miss for class loader cost performance problem in Richfaces 4.1.0. Date: Tue, 14 Jun 2011 18:45:30 -0400 Message-ID: <477574817.1804.1308091530176.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2095053109.20831.1306231800928.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4513654081513715970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11000?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11000: ----------------------------- Issue Type: Bug (was: Patch) Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Hit miss for class loader cost performance problem in Richfaces 4.1.0. > ---------------------------------------------------------------------- > > Key: RF-11000 > URL: https://issues.jboss.org/browse/RF-11000 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.1.0.Milestone1 > Environment: Linux, Java 6 > Reporter: Pawel J. > Assignee: Jay Balunas > Priority: Minor > Fix For: 4.1.0.Final > > Attachments: ResourceFactoryImpl-patch.txt > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > There are scenarios when resources are retrieved during no partial > request processing: > 1) JSF html renderer (such as ScriptRenderer from faces) require to > know resources names to include them to html/head, > 2) Resources content request. > We have two types of resources: dynamic and static. Predefined dynamic > resources (such as StateHolderResource) are read using class loader as > they are java classes. Static resources are kept in resources folder > as part of richfaces release jars (jquery.js, richfaces.js, etc). > There is a special case with compiled css that is consider as dynamic > resources but is not important in our case. > The problem appears when we try to load static resources using dynamic > loader. This make unnecessary lookup in java class loader space which > cost time and of course we miss the call as static resources not > exists there. > Statistics that shows class loader hits for every richfaces/ajax4jsf no p= artial request that will be eliminated after patch: > Resource::jquery.js::loading::timens::558000 ns::timems::0.558 > ms::all::1.561496 sec > Resource::richfaces.js::loading::timens::490000 ns::timems::0.49 > ms::all::1.561986 sec > Resource::richfaces-base-component.js::loading::timens::593000 > ns::timems::0.593 ms::all::1.563672 sec > Resource::richfaces-queue.js::loading::timens::672000 > ns::timems::0.672 ms::all::1.56435 sec > Resource::richfaces-event.js::loading::timens::3292000 > ns::timems::3.292 ms::all::1.569386 sec -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4513654081513715970==-- From jira-events at lists.jboss.org Tue Jun 14 18:45:30 2011 Content-Type: multipart/mixed; boundary="===============3280025159228335869==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10994) DnD: scripts not getting loaded via ajax Date: Tue, 14 Jun 2011 18:45:29 -0400 Message-ID: <1626052424.1795.1308091529938.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 305138007.11885.1305761400950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3280025159228335869== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10994?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10994: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > DnD: scripts not getting loaded via ajax > ---------------------------------------- > > Key: RF-10994 > URL: https://issues.jboss.org/browse/RF-10994 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-drag/drop > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > var=3D"node"> > > > dropListener=3D"#{aaa.process}" /> > > > > > > > > > > > Tree by default using ajax mode. So when you expanding nodes -leafs whic= h getting loaded should be draggable. But there is no draggable script reso= urce so you could see JS errors instead saying that Draggable si not a cons= tructor. > If change toggleType to client - works fine. If add any draggable compone= nt to the page - it also starts works as scripts already inplace. > (should be easier to reproduce with tab panel or just conditionally rende= red panel for example). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3280025159228335869==-- From jira-events at lists.jboss.org Tue Jun 14 18:49:29 2011 Content-Type: multipart/mixed; boundary="===============3589624673486370601==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11002) Tooltip: attribute value should be hidden Date: Tue, 14 Jun 2011 18:49:29 -0400 Message-ID: <1312451363.1810.1308091769461.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1271566365.28207.1306416481340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3589624673486370601== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11002?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-11002. ------------------------------ Resolution: Rejected The value is a valid attribute, and is documented. > Tooltip: attribute value should be hidden > ----------------------------------------- > > Key: RF-11002 > URL: https://issues.jboss.org/browse/RF-11002 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-output > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.unknown > Metamer 4.1.0-SNAPSHOT r.22511 > Mojarra 2.1.0-FCS > GlassFish Server Open Source Edition 3.1 > Java(TM) SE Runtime Environment 1.6.0_24-b07 @ Linux > Chrome 11.0.696.71 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.1.0.Milestone1 > > > rich:tooltip has attribute "value" which should be hidden. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3589624673486370601==-- From jira-events at lists.jboss.org Tue Jun 14 18:49:29 2011 Content-Type: multipart/mixed; boundary="===============0849248555476479276==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11004) Slider: JavaScript error with f:ajax Date: Tue, 14 Jun 2011 18:49:29 -0400 Message-ID: <1487367908.1812.1308091769511.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 151825770.28572.1306420201288.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0849248555476479276== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11004?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11004: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) > Slider: JavaScript error with f:ajax > ------------------------------------ > > Key: RF-11004 > URL: https://issues.jboss.org/browse/RF-11004 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT = > Metamer 4.1.0-SNAPSHOT r.22511 > Mojarra 2.0.3-b05 > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 11.0.696.71 @ Linux i686 > Reporter: Pavol Pitonak > Fix For: 4.Future > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/= richInputNumberSlider/fAjax.xhtml > # slide on slider > result: > *Uncaught ReferenceError: mojarra is not defined* = fAjax.xhtml:668 = > *RichFaces.ui.InputNumberSlider.onchange* = fAjax.xhtml:668 > *richfaces.ui.InputNumberSlider.richfaces.BaseComponent.extendClass.__set= Value* inputNumberSlider.js:112 > *richfaces.ui.InputNumberSlider.richfaces.BaseComponent.extendClass.__mou= semoveHandler* inputNumberSlider.js:192 > *richfaces.ui.InputNumberSlider.richfaces.BaseComponent.extendClass.__mou= sedownHandler* inputNumberSlider.js:179 > *jQuery.jQuery.extend.proxy.proxy* = jquery.js:768 > *jQuery.event.handle* = jquery.js:2562 > *jQuery.event.add.elemData.handle.eventHandle* = jquery.js:2201 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0849248555476479276==-- From jira-events at lists.jboss.org Tue Jun 14 18:51:29 2011 Content-Type: multipart/mixed; boundary="===============7160278387666766383==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11008) Removal of legacy core classes Date: Tue, 14 Jun 2011 18:51:29 -0400 Message-ID: <1873090285.1816.1308091889660.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7160278387666766383== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11008?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-11008. ------------------------------ Resolution: Done backport completed as part of merges prior to migration to git. > Removal of legacy core classes > ------------------------------ > > Key: RF-11008 > URL: https://issues.jboss.org/browse/RF-11008 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: core > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Fix For: 4.1.0.Milestone1 > > > Backport SVN r22303 removing legacy core classes -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7160278387666766383==-- From jira-events at lists.jboss.org Tue Jun 14 18:51:29 2011 Content-Type: multipart/mixed; boundary="===============3698821630175750457==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11009) VDL-DOC: release a vdl doc resource Date: Tue, 14 Jun 2011 18:51:29 -0400 Message-ID: <2010959707.1823.1308091889879.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3698821630175750457== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11009?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11009: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Affects Version/s: 4.1.0.Milestone1 Component/s: build/distribution doc > VDL-DOC: release a vdl doc resource > ----------------------------------- > > Key: RF-11009 > URL: https://issues.jboss.org/browse/RF-11009 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, doc > Affects Versions: 4.1.0.Milestone1 > Reporter: Anton Belevich > Fix For: 4.1.0.Final > > > We need have a realise version of vdl plugin. > http://anonsvn.jboss.org/repos/richfaces/modules/build/resources/trunk/vd= l-doc/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3698821630175750457==-- From jira-events at lists.jboss.org Tue Jun 14 18:51:29 2011 Content-Type: multipart/mixed; boundary="===============7393031844506662106==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11007) Backport from /trunk to /branches/4.0.x Date: Tue, 14 Jun 2011 18:51:29 -0400 Message-ID: <1122865435.1820.1308091889753.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7393031844506662106== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11007?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-11007. ------------------------------ Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Resolution: Done backport completed as part of merges prior to migration to git. > Backport from /trunk to /branches/4.0.x > --------------------------------------- > > Key: RF-11007 > URL: https://issues.jboss.org/browse/RF-11007 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Reporter: Nick Belaevski > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7393031844506662106==-- From jira-events at lists.jboss.org Tue Jun 14 18:53:29 2011 Content-Type: multipart/mixed; boundary="===============7893904722595307090==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11014) CustomBehaviorHandler: provide better name for the class and remove ComponentControlHandler from descendants Date: Tue, 14 Jun 2011 18:53:29 -0400 Message-ID: <1298495360.1825.1308092009501.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7893904722595307090== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11014?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11014: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Nick - Is this just a clean up task, or are there other implications to the= se changes? > CustomBehaviorHandler: provide better name for the class and remove Compo= nentControlHandler from descendants > -------------------------------------------------------------------------= ----------------------------------- > > Key: RF-11014 > URL: https://issues.jboss.org/browse/RF-11014 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core, optimization > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Fix For: 4.1.0.Final > > > CustomBehaviorHandler is base class for Ajax behaviors that should be com= patible with a4j:attachQueue tag, so the class should get better name and C= omponentControlHandler should not be inherited from it. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7893904722595307090==-- From jira-events at lists.jboss.org Tue Jun 14 18:55:29 2011 Content-Type: multipart/mixed; boundary="===============3902818496711296190==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11017) rich:extendedDataTable: Problems with resizing and ordering of columns with Firefox 4 Date: Tue, 14 Jun 2011 18:55:29 -0400 Message-ID: <708651340.1833.1308092129679.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2053110360.33219.1306595820932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3902818496711296190== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11017?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11017: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: compatibility > rich:extendedDataTable: Problems with resizing and ordering of columns wi= th Firefox 4 > -------------------------------------------------------------------------= ------------ > > Key: RF-11017 > URL: https://issues.jboss.org/browse/RF-11017 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-tables > Affects Versions: 4.1.0.Milestone1 > Environment: Tomcat6 and 7, Java 6, MyFaces 2.1.0-SNAPSHOT (28.05= .2011), RichFaces 4.1.0-SNAPSHOT (28.05.2011) > Reporter: Rene O > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > Attachments: jsf2testcase.war > > > To reproduce the two issues, i have append a testcase: > Issue 1 (ordering): > 1. call http://localhost:8080/jsf2testcase/tableTest.jsf > 2. try to change the order of the columns (e.g. A,B,C -> B,A,C) > 3. after that, the scrollbar of the table disappears > Note, that this issue appears with Firefox 4.0.1, but not with IE8 > Issue 2 (resizing): > 1. call http://localhost:8080/jsf2testcase/tableTestB.jsf > 2. click button to show table B > 3. try to resize the column width of table B > 4. resizing doesn't work in table B, but if you try to resize the column = width of table A, it will work. So it must be a bug. > Note, that this issue appears with Firefox 4.0.1, but not with IE8 = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3902818496711296190==-- From jira-events at lists.jboss.org Tue Jun 14 18:55:29 2011 Content-Type: multipart/mixed; boundary="===============2009055230316509914==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11016) Reformat all source code to follow the standard formates Date: Tue, 14 Jun 2011 18:55:29 -0400 Message-ID: <1263125353.1829.1308092129589.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 763469488.32846.1306524720937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2009055230316509914== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11016?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608697#com= ment-12608697 ] = Jay Balunas commented on RF-11016: ---------------------------------- Lukas - is this completed? If it is please resolve > Reformat all source code to follow the standard formates > -------------------------------------------------------- > > Key: RF-11016 > URL: https://issues.jboss.org/browse/RF-11016 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Affects Versions: 4.1.0.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Once we have update our source code format profiles ( should not be very = different ) http://community.jboss.org/message/607296#607296 we need to app= ly those to the repositories recently migrated to git so that everyone can = start with a standard base. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2009055230316509914==-- From jira-events at lists.jboss.org Tue Jun 14 18:55:29 2011 Content-Type: multipart/mixed; boundary="===============2187847740337282982==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11024) ListShuttle/PickList combined component for 4.0 Date: Tue, 14 Jun 2011 18:55:29 -0400 Message-ID: <366495186.1835.1308092129726.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1806722734.37823.1306867501015.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2187847740337282982== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11024?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11024: ----------------------------- Assignee: Brian Leathem Forum Reference: http://community.jboss.org/message/597916#597916 (was= : http://community.jboss.org/message/597916#597916) > ListShuttle/PickList combined component for 4.0 > ----------------------------------------------- > > Key: RF-11024 > URL: https://issues.jboss.org/browse/RF-11024 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Jay Balunas > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Develop a combined approach for ListShuttle, and PickList so that we can = have a single component handle the requirements. > Ilya already outlined a good portion of the functionality for this here: = http://community.jboss.org/thread/164988 > These will be discuss and finalized there. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2187847740337282982==-- From jira-events at lists.jboss.org Tue Jun 14 18:57:29 2011 Content-Type: multipart/mixed; boundary="===============1290608681916270314==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11025) OrderingList component for 4.0 Date: Tue, 14 Jun 2011 18:57:29 -0400 Message-ID: <1667878019.1839.1308092249513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1049926353.37852.1306868041513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1290608681916270314== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11025?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11025: -------------------------------- Assignee: Brian Leathem > OrderingList component for 4.0 > ------------------------------ > > Key: RF-11025 > URL: https://issues.jboss.org/browse/RF-11025 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-selects > Reporter: Jay Balunas > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Other ordering list is related to ListShuttle/PickList ( RF-11023 ), but = is its own stand alone component. = > It will be sharing a fair amount of functionality and code with ListShutt= le/PickList, and so should be designed and developed together. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1290608681916270314==-- From jira-events at lists.jboss.org Tue Jun 14 18:57:29 2011 Content-Type: multipart/mixed; boundary="===============3635024030248758449==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Date: Tue, 14 Jun 2011 18:57:29 -0400 Message-ID: <1219216006.1841.1308092249551.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3635024030248758449== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11035?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11035: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Unexpected exception during isValid call with Hibernate @Size validation = on h:selectManyCheckbox > -------------------------------------------------------------------------= ----------------------- > > Key: RF-11035 > URL: https://issues.jboss.org/browse/RF-11035 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.1.0.Milestone1 > Environment: * RichFaces 4.1.0-SNAPSHOT r.22520 > * Metamer ${4.1.0-SNAPSHOT} r.${22520} > * Apache MyFaces JSF-2.0 Core Impl 2.0.4 / Mojarra 2.0.4-b09 > * Apache Tomcat 7.0.12 > * Java(TM) SE Runtime Environment 1.6.0_19-b04 @Linux > * Firefox 3.6.17 @ Linux x86_64 > Reporter: J=C3=A1n Jamrich > Fix For: 4.1.0.Final > > Attachments: exception-with-mojarra, exception-with-myFaces > > > When validation performed on input of type h:selectManyCheckbox (bound to= property of type List) on backing bean), and unexpected error appe= ar. See details for Mojarra and MyFaces in log attached. > Since property bound to property is List type, SizeValidatorForCollection= validator implementation is called. But submited items from h:selectManyCh= eckbox are sent to appropriate method (isValid() ) as String[]. (Every item= from selectManyCheckbox is another array item). Its the same behavior for = Mojarra and MyFaces. > @Size annotation declare that it should work with String, Collection, Map= and Array. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3635024030248758449==-- From jira-events at lists.jboss.org Tue Jun 14 18:59:29 2011 Content-Type: multipart/mixed; boundary="===============1303380038760850080==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11045) Showcase: tabs with samples are trimmed Date: Tue, 14 Jun 2011 18:59:29 -0400 Message-ID: <416250516.1845.1308092369494.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1303380038760850080== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11045?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11045: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Showcase: tabs with samples are trimmed = > ---------------------------------------- > > Key: RF-11045 > URL: https://issues.jboss.org/browse/RF-11045 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: showcase > Affects Versions: 4.0.0.Final > Reporter: Pavol Pitonak > Fix For: 4.1.0.Final > > Attachments: showcase-tabs.png > > > Tabs in Showcase are trimmed in the case that there are more samples, e.g= . for rich:dataTable (see screenshot). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1303380038760850080==-- From jira-events at lists.jboss.org Tue Jun 14 18:59:29 2011 Content-Type: multipart/mixed; boundary="===============0512322448598105719==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Tue, 14 Jun 2011 18:59:29 -0400 Message-ID: <2110233833.1847.1308092369534.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0512322448598105719== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11054: ----------------------------- Component/s: base functionality = Forum Reference: http://community.jboss.org/thread/167372 (was: http:/= /community.jboss.org/thread/167372) > Dynamically created tabs within tabPanel causes NPE in getActiveItem() > ---------------------------------------------------------------------- > > Key: RF-11054 > URL: https://issues.jboss.org/browse/RF-11054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22526 > Metamer r.22526 > Mojarra 2.0.4-b09 > Apache Tomcat 7.0.12 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" ev= erything works correctly, with "ajax" tab switch not work as well as with "= null"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0512322448598105719==-- From jira-events at lists.jboss.org Tue Jun 14 19:01:29 2011 Content-Type: multipart/mixed; boundary="===============5679079311969777184==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11056) rich:calendar not working in popupPanel Date: Tue, 14 Jun 2011 19:01:29 -0400 Message-ID: <1289341522.1857.1308092489630.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5679079311969777184== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11056: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > Fix For: 4.1.0.Final > > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5679079311969777184==-- From jira-events at lists.jboss.org Tue Jun 14 19:01:29 2011 Content-Type: multipart/mixed; boundary="===============3016499737348910521==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Date: Tue, 14 Jun 2011 19:01:29 -0400 Message-ID: <472264334.1860.1308092489876.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3016499737348910521== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11060?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11060: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Forum Reference: http://community.jboss.org/thread/167554 (was: http:/= /community.jboss.org/thread/167554) > onselectionchange working incorrect with two extendedDataTable on same pa= ge > -------------------------------------------------------------------------= -- > > Key: RF-11060 > URL: https://issues.jboss.org/browse/RF-11060 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: GlassFish 3.0.1, Firefox > Reporter: Tom Giberius > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Final > > > If you put two extendedDataTable A en B on the same page then the followi= ng goes wrong: > If you selected record one of Table A en then select record one from tabl= e B then the onselectionchange trigger does not fire. The same counts for r= ecord two, three, etc. = > This prevents me for building a Master-Detail data entry screen where bot= h the master and the detail are multirecord. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in details, then go back to record 3 of maste= r and then the onselectionchange trigger does not fire. The master tables "= thinks" that record three is the selected record while actually it should b= e record one which was the selected record in the master table. > The correct behaviour should be that each table should "rember" it select= ed record. E.g. > Step 1) Select records one in master and show it details. > Step 2) Select record three in detail, then go back to record 3 of master= and the onselectionchange of the master should fire so that details of mas= ter record 3 can be shown. If you would have go back to record one of the m= aster then not firing the onselectionchange would be correct. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3016499737348910521==-- From jira-events at lists.jboss.org Tue Jun 14 19:01:29 2011 Content-Type: multipart/mixed; boundary="===============0449494140796880326==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11055) Make fileupload portlet enabled Date: Tue, 14 Jun 2011 19:01:29 -0400 Message-ID: <828403622.1854.1308092489550.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0449494140796880326== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11055: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0449494140796880326==-- From jira-events at lists.jboss.org Tue Jun 14 19:03:29 2011 Content-Type: multipart/mixed; boundary="===============0677204308858692645==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text Date: Tue, 14 Jun 2011 19:03:29 -0400 Message-ID: <1413386410.1867.1308092609593.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0677204308858692645== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11063?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11063: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: base functionality = > rich:select is not at same level with text = > ------------------------------------------- > > Key: RF-11063 > URL: https://issues.jboss.org/browse/RF-11063 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , compatibility, component-menu > Affects Versions: 4.0.0.Final > Environment: GAE, Win64 > Reporter: Ara Minosian > Fix For: 4.1.0.Final > > Attachments: ie9.jpg, other.jpg > > > Please, see attachment > {code:xml|title=3Dcode|borderStyle=3Dsolid} >

> Some text: >

> Some text: > {code} = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0677204308858692645==-- From jira-events at lists.jboss.org Tue Jun 14 19:03:29 2011 Content-Type: multipart/mixed; boundary="===============7975608598775318983==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10932) MyFaces: upgrade to 2.0.5 release Date: Tue, 14 Jun 2011 19:03:29 -0400 Message-ID: <1528885219.1872.1308092609797.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 541888875.34949.1303140933284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7975608598775318983== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10932?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10932: ----------------------------- Issue Type: Task (was: Component Upgrade) > MyFaces: upgrade to 2.0.5 release > --------------------------------- > > Key: RF-10932 > URL: https://issues.jboss.org/browse/RF-10932 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Priority: Critical > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7975608598775318983==-- From jira-events at lists.jboss.org Tue Jun 14 19:03:29 2011 Content-Type: multipart/mixed; boundary="===============4524688735010341431==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11061) VDL-DOC: release a faces-shade-transformers plugin Date: Tue, 14 Jun 2011 19:03:29 -0400 Message-ID: <771349991.1864.1308092609525.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4524688735010341431== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11061?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11061: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) Component/s: build/distribution > VDL-DOC: release a faces-shade-transformers plugin > -------------------------------------------------- > > Key: RF-11061 > URL: https://issues.jboss.org/browse/RF-11061 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone1 > Reporter: Anton Belevich > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > > need to release a plugin http://anonsvn.jboss.org/repos/richfaces/modules= /build/resources/trunk/faces-shade-transformers/ > and update version in http://anonsvn.jboss.org/repos/richfaces/branches/4= .0.X/ui/dist/richfaces-components-ui/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4524688735010341431==-- From jira-events at lists.jboss.org Tue Jun 14 19:03:29 2011 Content-Type: multipart/mixed; boundary="===============1768181678090771754==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11064) Push: Invalid async context for servlet AutoRegisteredPushServlet Date: Tue, 14 Jun 2011 19:03:29 -0400 Message-ID: <1664309332.1870.1308092609710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 910263183.1102.1307975303998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1768181678090771754== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11064?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11064: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.1.0.Milestone1) > Push: Invalid async context for servlet AutoRegisteredPushServlet > ----------------------------------------------------------------- > > Key: RF-11064 > URL: https://issues.jboss.org/browse/RF-11064 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.Milestone1 > Environment: Firefox 4.0.1 > JBoss 6.0.0.Final / 6.1.0-SNAPSHOT > Atmosphere 7.0.1/7.0.2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > > Sample application: https://github.com/lfryc/push-jms/ > Reproduced on: https://github.com/lfryc/push-jms/tree/6dd6b623410e30ee440= 6e13fb6e22866e652e637 > deploy/hornetq/hornetq-jms.xml: > {code:XML} > > > > {code} > deploy/hornetq/hornetq-configuration.xml > {code:XML} > > > {code} > 16:21:52,065 ERROR [org.apache.catalina.connector.CoyoteAdapter] An excep= tion or error occurred in the container during the request processing: java= .lang.IllegalStateException: Invalid async context for servlet AutoRegister= edPushServlet > at org.apache.catalina.core.StandardWrapperValve.async(StandardWrapperVa= lve.java:643) [:6.0.0.Final] > at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperVa= lve.java:402) [:6.0.0.Final] > at org.apache.catalina.core.StandardContextValve.event(StandardContextVa= lve.java:260) [:6.0.0.Final] > at org.jboss.web.tomcat.security.SecurityAssociationValve.event(Security= AssociationValve.java:328) [:6.0.0.Final] > at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.ev= ent(CatalinaContext.java:281) [:1.1.0.Final] > at org.jboss.web.tomcat.security.JaccContextValve.event(JaccContextValve= .java:116) [:6.0.0.Final] > at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.event= (SecurityContextEstablishmentValve.java:161) [:6.0.0.Final] > at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.ja= va:178) [:6.0.0.Final] > at org.apache.catalina.valves.ValveBase.event(ValveBase.java:200) [:6.0.= 0.Final] > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.event(CachedCo= nnectionValve.java:186) [:6.0.0.Final] > at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValv= e.java:128) [:6.0.0.Final] > at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.= event(ActiveRequestResponseCacheValve.java:70) [:6.0.0.Final] > at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:= 265) [:6.0.0.Final] > at org.apache.coyote.http11.Http11Processor.event(Http11Processor.java:7= 57) [:6.0.0.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.event= (Http11Protocol.java:602) [:6.0.0.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 8) [:6.0.0.Final] > at java.lang.Thread.run(Thread.java:636) [:1.6.0_20] > 16:21:52,076 ERROR [STDERR] java.lang.NullPointerException > 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .action(Servlet30Support.java:168) > 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .action(Servlet30Support.java:63) > 16:21:52,076 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .resume(AtmosphereResourceImpl.java:175) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.resume(Meteor.j= ava:199) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.resume(RequestImpl.java:61) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Sessi= onImpl.releaseRequest(SessionImpl.java:112) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Sessi= onImpl.connect(SessionImpl.java:85) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.onSuspend(RequestImpl.java:91) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .onSuspend(AtmosphereResourceImpl.java:483) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .notifyListeners(AtmosphereResourceImpl.java:455) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .notifyListeners(AtmosphereResourceImpl.java:443) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .suspend(AtmosphereResourceImpl.java:247) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.suspend(Meteor.= java:189) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.suspend(RequestImpl.java:57) > 16:21:52,078 ERROR [STDERR] at org.richfaces.webapp.PushHandlerFilter.do= Filter(PushHandlerFilter.java:102) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain= .doFilter(AtmosphereFilterChain.java:139) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain= .invokeFilterChain(AtmosphereFilterChain.java:116) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletPr= ocessor$FilterChainServletWrapper.service(ReflectorServletProcessor.java:29= 4) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletPr= ocessor.onRequest(ReflectorServletProcessor.java:152) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.= action(AsynchronousProcessor.java:191) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.= suspended(AsynchronousProcessor.java:142) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .service(Servlet30Support.java:87) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doCo= metSupport(AtmosphereServlet.java:1156) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doPo= st(AtmosphereServlet.java:1138) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doGe= t(AtmosphereServlet.java:1124) > 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Ht= tpServlet.java:734) > 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Ht= tpServlet.java:847) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilte= rChain.internalDoFilter(ApplicationFilterChain.java:324) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilte= rChain.doFilter(ApplicationFilterChain.java:242) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperV= alve.invoke(StandardWrapperValve.java:275) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardContextV= alve.invoke(StandardContextValve.java:191) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAss= ociationValve.invoke(SecurityAssociationValve.java:181) > 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaCon= text$RequestListenerValve.event(CatalinaContext.java:285) > 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaCon= text$RequestListenerValve.invoke(CatalinaContext.java:261) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContext= Valve.invoke(JaccContextValve.java:88) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityCon= textEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardHostValv= e.invoke(StandardHostValve.java:127) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportVal= ve.invoke(ErrorReportValve.java:102) > 16:21:52,080 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedCo= nnectionValve.invoke(CachedConnectionValve.java:158) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardEngineVa= lve.invoke(StandardEngineValve.java:109) > 16:21:52,081 ERROR [STDERR] at org.jboss.web.tomcat.service.request.Acti= veRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) > 16:21:52,081 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapt= er.service(CoyoteAdapter.java:362) > 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.= process(Http11Processor.java:877) > 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$H= ttp11ConnectionHandler.process(Http11Protocol.java:654) > 16:21:52,084 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Wo= rker.run(JIoEndpoint.java:946) > 16:21:52,084 ERROR [STDERR] at java.lang.Thread.run(Thread.java:636) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1768181678090771754==-- From jira-events at lists.jboss.org Tue Jun 14 20:37:32 2011 Content-Type: multipart/mixed; boundary="===============5724432026749236166==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10996) File upload: add attribute maxFilesQuantity Date: Tue, 14 Jun 2011 20:37:32 -0400 Message-ID: <288195989.1896.1308098252340.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 541045621.15547.1305898980982.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5724432026749236166== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10996?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10996: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.Future) Forum Reference: http://community.jboss.org/message/606151 (was: http:= //community.jboss.org/message/606151) > File upload: add attribute maxFilesQuantity > ------------------------------------------- > > Key: RF-10996 > URL: https://issues.jboss.org/browse/RF-10996 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.0.0.Final > Reporter: Pavol Pitonak > Fix For: 4.1.0.Final > > > RichFaces 3.x used to have an attribute maxFilesQuantity which defined ma= x files count allowed for upload. Add this attribute to RichFaces 4. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5724432026749236166==-- From jira-events at lists.jboss.org Tue Jun 14 20:39:30 2011 Content-Type: multipart/mixed; boundary="===============4020144436634173696==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7230) Review the performance related items from RF-1941 for 4.0 Date: Tue, 14 Jun 2011 20:39:30 -0400 Message-ID: <918123555.1921.1308098370824.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 12219306.1242999717487.JavaMail.jira@cloud.prod.atl2.jboss.com --===============4020144436634173696== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7230?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7230: ---------------------------- Priority: Major (was: Critical) > Review the performance related items from RF-1941 for 4.0 > --------------------------------------------------------- > > Key: RF-7230 > URL: https://issues.jboss.org/browse/RF-7230 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core, optimization > Reporter: Nick Belaevski > Assignee: Nick Belaevski > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4020144436634173696==-- From jira-events at lists.jboss.org Tue Jun 14 20:39:30 2011 Content-Type: multipart/mixed; boundary="===============0678353004974314848==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-4793) Add licensing information to all feasible files Date: Tue, 14 Jun 2011 20:39:30 -0400 Message-ID: <1036835279.1913.1308098370425.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 3080150.1225312537585.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0678353004974314848== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-4793?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-4793: ------------------------------- Assignee: Jay Balunas (was: Nick Belaevski) > Add licensing information to all feasible files = > ------------------------------------------------ > > Key: RF-4793 > URL: https://issues.jboss.org/browse/RF-4793 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, core > Affects Versions: 3.3.0 > Reporter: Nick Belaevski > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.Future > > > It is critical that review and apply consistent licensing to all RichFace= s files for the 4.0 release. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0678353004974314848==-- From jira-events at lists.jboss.org Tue Jun 14 20:39:31 2011 Content-Type: multipart/mixed; boundary="===============6884693496099480988==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7230) Review the performance related items from RF-1941 for 4.0 Date: Tue, 14 Jun 2011 20:39:31 -0400 Message-ID: <1312330201.1928.1308098371096.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 12219306.1242999717487.JavaMail.jira@cloud.prod.atl2.jboss.com --===============6884693496099480988== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7230?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-7230: ------------------------------- Assignee: Jay Balunas (was: Nick Belaevski) > Review the performance related items from RF-1941 for 4.0 > --------------------------------------------------------- > > Key: RF-7230 > URL: https://issues.jboss.org/browse/RF-7230 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core, optimization > Reporter: Nick Belaevski > Assignee: Jay Balunas > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6884693496099480988==-- From jira-events at lists.jboss.org Tue Jun 14 20:43:29 2011 Content-Type: multipart/mixed; boundary="===============2676356041777173384==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7882) Tables: dynamic columns component Date: Tue, 14 Jun 2011 20:43:29 -0400 Message-ID: <1960750009.1944.1308098609826.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2676356041777173384== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7882?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7882: ---------------------------- Priority: Major (was: Critical) Created a RFPL jira for 4.1.X to create update the wiki pages with this exa= mple > Tables: dynamic columns component > --------------------------------- > > Key: RF-7882 > URL: https://issues.jboss.org/browse/RF-7882 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Reporter: Nick Belaevski > Assignee: Jay Balunas > Labels: design, tran > Fix For: 4.Future > > Attachments: dataTable.zip > > > Port of rich:columns from 3.x -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2676356041777173384==-- From jira-events at lists.jboss.org Tue Jun 14 20:43:30 2011 Content-Type: multipart/mixed; boundary="===============8691826470826271753==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9333) Refactor iteration components refactor Date: Tue, 14 Jun 2011 20:43:30 -0400 Message-ID: <600871641.1957.1308098610259.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 735394549.2654.1283988109459.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8691826470826271753== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9333?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-9333: ---------------------------- Priority: Major (was: Critical) Lowering priority as we are waiting on feedback from the community on the c= urrent impl > Refactor iteration components refactor > -------------------------------------- > > Key: RF-9333 > URL: https://issues.jboss.org/browse/RF-9333 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Fix For: 4.Future > > > Divide iteration components API as it described at https://docs.google.co= m/Doc?docid=3D0AYeYG6io48XmZGZjanE1amtfMjY2M2puN3FnNg&hl=3Den&authkey=3DCNm= n_IMD and https://docs.google.com/Doc?docid=3D0AYeYG6io48XmZGZjanE1amtfMjVn= ZzQ3amZnZg&hl=3Den&authkey=3DCMb59L4N . > Implement iteration state saving as JSF 2.0 partial state (https://javase= rverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=3D153), test Leon= ardo's implementation: > https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id= =3D153 > myfaces alternate patches are here: https://issues.apache.org/jira/browse= /MYFACES-2616 > fixUIDataPSS-9-3-2.patch > fixUIDataPSS-9-3-no-markInitialStateFix-3.patch > Ed's comments: https://javaserverfaces-spec-public.dev.java.net/nonav/iss= ues/showattachment.cgi/268/message.txt > filter/sorter components are part of that implementation as well. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8691826470826271753==-- From jira-events at lists.jboss.org Tue Jun 14 20:45:30 2011 Content-Type: multipart/mixed; boundary="===============3249656735461215279==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9340) autocomplete, select, and inplaceSelect not sharing any js for popup functionality. Date: Tue, 14 Jun 2011 20:45:30 -0400 Message-ID: <553268403.1960.1308098730061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 258176650.3351.1284026330492.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3249656735461215279== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9340?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-9340: ---------------------------- Summary: autocomplete, select, and inplaceSelect not sharing any js fo= r popup functionality. (was: inputs base JS refactoring: autocomplete and = inplaceSelect not suing any shared js for popup functionality.) Priority: Major (was: Critical) > autocomplete, select, and inplaceSelect not sharing any js for popup func= tionality. > -------------------------------------------------------------------------= ---------- > > Key: RF-9340 > URL: https://issues.jboss.org/browse/RF-9340 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-input, optimization > Affects Versions: 4.0.0.Milestone3 > Reporter: Ilya Shaikovsky > Fix For: 4.Future > > > there should be some object which fully responsible for popup list repres= entation construction and show/hide/select item inside functionality. > for now Anton do not get the autocomplete script as he reviewed it and it= has additional functionality which relies on the fact that it based on inp= ut. (intering inside causes filtering in list and so on) > So both components for now has it's own impl for popup functionlity. > I believe critical as such impls breaks "clean-up" and "improve design" i= deas for 4.x -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3249656735461215279==-- From jira-events at lists.jboss.org Tue Jun 14 20:47:29 2011 Content-Type: multipart/mixed; boundary="===============4297949668598019167==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10539) Themes: wine theme show almost invisible text for disabled inputtext in Google Chrome. Date: Tue, 14 Jun 2011 20:47:29 -0400 Message-ID: <180670201.1967.1308098849751.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 135447010.11611.1297870633788.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4297949668598019167== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10539?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10539: ----------------------------- Priority: Minor (was: Trivial) > Themes: wine theme show almost invisible text for disabled inputtext in G= oogle Chrome. > -------------------------------------------------------------------------= ------------- > > Key: RF-10539 > URL: https://issues.jboss.org/browse/RF-10539 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Milestone6 > Environment: Tomcat 7.0.8/ Mojarra 2.0.4/ Richfaces 4 M6 > Reporter: Fl=C3=A1vio Henrique > Priority: Minor > Labels: richfaces > Fix For: 4.Future > > > Richfaces theme "Wine" in Google Chrome display almost invisible text for= disabled inputtextes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4297949668598019167==-- From jira-events at lists.jboss.org Tue Jun 14 20:51:29 2011 Content-Type: multipart/mixed; boundary="===============5649265000542698438==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10627) DT and EDT behaves differently with no data facets and label Date: Tue, 14 Jun 2011 20:51:29 -0400 Message-ID: <508609380.1980.1308099089726.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 886752174.6003.1298732105706.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5649265000542698438== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10627?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10627: ----------------------------- Priority: Minor (was: Optional) Agree that the behavior should be the same, but agree with nick that the su= ggested impl is not the way to go. We'll leave open, and see how things go. > DT and EDT behaves differently with no data facets and label > ------------------------------------------------------------ > > Key: RF-10627 > URL: https://issues.jboss.org/browse/RF-10627 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.CR1 > Environment: RichFaces 4.0.0-SNAPSHOT r.21945 > Metamer 4.0.0-SNAPSHOT r.21934 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 9.0.597.98 @ Linux x86_64 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Labels: metamer-ftest-tracked > Fix For: 4.Future > > > When noData facet created but have no rendered children, noDataLabel attr= ibute should be used (if not null). > It works with DataTable: > 1. open http://localhost:8080/metamer/faces/components/richDataTable/face= ts.xhtml > 2. uncheck "Show data in table" > 3. set text for "No data facet" =3D "" > (table is empty) > 4. set @noDataLabel=3D"no data here" > OK: data table contains text "no data here" > But not with ExtendedDataTable: > 1. open http://localhost:8080/metamer/faces/components/richExtendedDataTa= ble/facets.xhtml > 2. uncheck "Show data in table" > 3. set text for "No data facet" =3D "" > (table is empty) > 4. set @noDataLabel=3D"no data here" > FAIL: data table is still empty > EXPECTED: "no data here" text in table > = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5649265000542698438==-- From jira-events at lists.jboss.org Tue Jun 14 20:51:29 2011 Content-Type: multipart/mixed; boundary="===============3169684330757635361==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10446) rich:extendedDataTable - selected column view in Chrome Date: Tue, 14 Jun 2011 20:51:29 -0400 Message-ID: <529974658.1984.1308099089924.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2012153407.22975.1297092459429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3169684330757635361== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10446?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10446: ----------------------------- Priority: Minor (was: Optional) Forum Reference: http://community.jboss.org/message/585975#585975 (was= : http://community.jboss.org/message/585975#585975) > rich:extendedDataTable - selected column view in Chrome > ------------------------------------------------------- > > Key: RF-10446 > URL: https://issues.jboss.org/browse/RF-10446 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Milestone5 > Environment: Chrome 8 and 9 on Windows Vista, XP > Chromium 9 at Ubuntu > Reporter: Ilya Sorokoumov > Priority: Minor > Fix For: 4.Future > > > I was looking at richfaces-showcase.appspot.com and noticed an odd behavi= or of selected column in rich:extendedDataTable. > There are two pictures attached: > chrome.jpg shows how it works in Chrome 8 > ff.jsf - in FireFox 3.6 > Honestly it looks like a bug. = > Look into http://community.jboss.org/message/585975 for the screenshots. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3169684330757635361==-- From jira-events at lists.jboss.org Tue Jun 14 20:53:30 2011 Content-Type: multipart/mixed; boundary="===============8847848426329166127==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10439) Introduce SelectionChange API Date: Tue, 14 Jun 2011 20:53:30 -0400 Message-ID: <322803573.1997.1308099210077.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 227150391.22396.1297078722705.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8847848426329166127== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10439?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10439: ----------------------------- Priority: Minor (was: Optional) > Introduce SelectionChange API > ----------------------------- > > Key: RF-10439 > URL: https://issues.jboss.org/browse/RF-10439 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Milestone5 > Environment: RichFaces 4.0 trunk svn rev 21496 > Reporter: Martin Ko=C4=8D=C3=AD > Assignee: Ilya Shaikovsky > Priority: Minor > Fix For: 4.Future > > > I don't know if it is intended or not but current RF 4.0 don't have liste= ner/event for API for "SelectionChange" behaviour. Suggestions: > 1. introduce SelectionChangeEvent, SelectionChangeListener, SelectionChan= geSource API - there is TreeSelectionChangeEvent already - I think the new = SelectionChangeEvent can be base class for TreeSelectionChangeEvent > 2. add methods addSelectionChangeListener, removeSelectionChangeListener,= setSelectionListener(MethodExpression) etc. at UIExtendedDataTable > 3. rename client event name from "selectionchange" to "selectionChange" -= ValueChange has that convention > 4. RC showcase contains selection handling based on AjaxBehaviourEvent ->= modify it for r:extendedDataTable selectionChangeListener=3D"#{}" usage -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8847848426329166127==-- From jira-events at lists.jboss.org Tue Jun 14 20:55:29 2011 Content-Type: multipart/mixed; boundary="===============5853298088729322037==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2023) set Locale/DatePattern for Calendar globally (eg. in a web.xml context-param or something) Date: Tue, 14 Jun 2011 20:55:29 -0400 Message-ID: <1570273822.2011.1308099329859.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 592317.1201139781820.JavaMail.jira@cloud.prod.atl2.jboss.com --===============5853298088729322037== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-2023?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-2023: ---------------------------- Priority: Minor (was: Optional) Forum Reference: http://community.jboss.org/message/33585#33585 (was: = http://community.jboss.org/message/33585#33585) > set Locale/DatePattern for Calendar globally (eg. in a web.xml context-pa= ram or something) > -------------------------------------------------------------------------= ----------------- > > Key: RF-2023 > URL: https://issues.jboss.org/browse/RF-2023 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 3.1.3 > Environment: All > Reporter: Richard Kennard > Priority: Minor > Fix For: 4.Future > > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > It would be great if you could set the Locale/DatePattern for the Calenda= r control globally (eg. in a web.xml context-param or something), rather th= an having to put... > = > ...every time you use the tag? I know you can currently use an EL express= ion, like... > > ...but that requires extra plumbing on the part of the developer. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5853298088729322037==-- From jira-events at lists.jboss.org Tue Jun 14 20:55:30 2011 Content-Type: multipart/mixed; boundary="===============5695811168733194754==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-6658) panelMenu components: provide selectedItemClass and selectedGroupClass attributes Date: Tue, 14 Jun 2011 20:55:30 -0400 Message-ID: <159747209.2015.1308099330092.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 160363.1238496922449.JavaMail.jira@cloud.prod.atl2.jboss.com --===============5695811168733194754== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6658?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-6658: ---------------------------- Priority: Minor (was: Optional) Forum Reference: http://community.jboss.org/message/55542#55542 (was: = http://community.jboss.org/message/55542#55542) > panelMenu components: provide selectedItemClass and selectedGroupClass at= tributes > -------------------------------------------------------------------------= -------- > > Key: RF-6658 > URL: https://issues.jboss.org/browse/RF-6658 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Affects Versions: 3.3.1 > Reporter: Ilya Shaikovsky > Priority: Minor > Fix For: 4.Future > > > the same as for disable and hover states. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5695811168733194754==-- From jira-events at lists.jboss.org Tue Jun 14 20:55:30 2011 Content-Type: multipart/mixed; boundary="===============3164731850156470766==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-6906) FileUpload: full file transfer happens if size limit is exceeded Date: Tue, 14 Jun 2011 20:55:30 -0400 Message-ID: <1635508700.2017.1308099330275.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 31996116.1240428442470.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3164731850156470766== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-6906?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-6906: ---------------------------- Priority: Major (was: Optional) This may not be possible without using flash, but will need to be investiga= ted > FileUpload: full file transfer happens if size limit is exceeded > ---------------------------------------------------------------- > > Key: RF-6906 > URL: https://issues.jboss.org/browse/RF-6906 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-input > Affects Versions: 3.3.1 > Reporter: Nick Belaevski > Fix For: 4.Future > > > If file upload component is not using Flash, then full file transfer happ= ens if file size is greater than allowed maximum -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3164731850156470766==-- From jira-events at lists.jboss.org Tue Jun 14 20:57:29 2011 Content-Type: multipart/mixed; boundary="===============1072654511173815706==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10682) Column - @width does not have any effect for DataTable Date: Tue, 14 Jun 2011 20:57:29 -0400 Message-ID: <1351635557.2023.1308099449676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 725246783.927.1299162826398.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1072654511173815706== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10682?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10682: ----------------------------- Priority: Minor (was: Optional) > Column - @width does not have any effect for DataTable > ------------------------------------------------------ > > Key: RF-10682 > URL: https://issues.jboss.org/browse/RF-10682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.CR1 > Environment: RichFaces 4.0.0-SNAPSHOT r.22025 > Metamer 4.0.0-SNAPSHOT r.22035 > Mojarra 2.0.4-b09 > Apache Tomcat 6.0.29 > OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > Chrome 9.0.597.107 @ Linux x86_64 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.Future > > > Please check Metamer's Column sample [1] - I found that attribute list is= quite stale and after its update identified following problem: > @width doesn't change column's width (used "500" and "500px" values) > [1] http://localhost:8080/metamer/faces/components/richColumn/simple.xhtml -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1072654511173815706==-- From jira-events at lists.jboss.org Tue Jun 14 20:57:29 2011 Content-Type: multipart/mixed; boundary="===============7819352789904920270==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9807) rich:inplaceInput - after releasing focus, the focus marker is rendered as the square not around the component in IE7 Date: Tue, 14 Jun 2011 20:57:29 -0400 Message-ID: <624698835.2021.1308099449591.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 172218262.23618.1289494741249.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7819352789904920270== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9807?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-9807: ---------------------------- Priority: Minor (was: Optional) > rich:inplaceInput - after releasing focus, the focus marker is rendered a= s the square not around the component in IE7 > -------------------------------------------------------------------------= -------------------------------------------- > > Key: RF-9807 > URL: https://issues.jboss.org/browse/RF-9807 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Milestone4 > Environment: RichFaces 4.0.0.20101110-M4 r.20021 = > Metamer 4.0.0.20101110-M4 r.20033 = > Mojarra 2.0.3-FCS = > Apache Tomcat 6.0.29 = > OpenJDK Runtime Environment 1.6.0_18-b18 @ Linux = > Internet Explorer 7.0 @ Win32 = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Minor > Fix For: 4.Future > > Attachments: Screenshot-31.png > > > See attached screenshot -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7819352789904920270==-- From jira-events at lists.jboss.org Tue Jun 14 21:03:29 2011 Content-Type: multipart/mixed; boundary="===============5203187495165589160==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-7831) Changes: add aliases for attributes changed between 3.3.x and 4.0 Date: Tue, 14 Jun 2011 21:03:29 -0400 Message-ID: <1831841483.2035.1308099809696.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1059998807.1252416924018.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============5203187495165589160== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7831?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-7831. ----------------------------- Resolution: Out of Date > Changes: add aliases for attributes changed between 3.3.x and 4.0 > ----------------------------------------------------------------- > > Key: RF-7831 > URL: https://issues.jboss.org/browse/RF-7831 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component-a4j-core, migration > Affects Versions: 4.0.0.ALPHA1 > Reporter: Nick Belaevski > Assignee: Jay Balunas > Priority: Minor > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5203187495165589160==-- From jira-events at lists.jboss.org Tue Jun 14 21:03:29 2011 Content-Type: multipart/mixed; boundary="===============0320078845536108987==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-10335) Unit test for SelectUtils Date: Tue, 14 Jun 2011 21:03:29 -0400 Message-ID: <943366743.2033.1308099809525.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 77740762.880.1296142092906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0320078845536108987== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10335?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas closed RF-10335. ---------------------------- Resolution: Out of Date > Unit test for SelectUtils > ------------------------- > > Key: RF-10335 > URL: https://issues.jboss.org/browse/RF-10335 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Milestone6 > Reporter: Gleb Galkin > Priority: Minor > Labels: select_item > Fix For: 4.Future > > > Improve SelectUtilsTest with UISelectMany checking (second part of Select= Utils#getSelectItems). Also SelectUtils#getConvertedUIInputValue should be = tested. = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0320078845536108987==-- From jira-events at lists.jboss.org Tue Jun 14 21:06:29 2011 Content-Type: multipart/mixed; boundary="===============0630300301502184472==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7807) a4j:keepAlive: incompatibility with bound components Date: Tue, 14 Jun 2011 21:06:29 -0400 Message-ID: <727486115.2038.1308099989574.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2092894130.1252026143717.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============0630300301502184472== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7807?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7807: ---------------------------- Fix Version/s: 3.Future (was: 4.Future) Forum Reference: http://community.jboss.org/thread/17047?tstart=3D0 (w= as: http://community.jboss.org/thread/17047?tstart=3D0) > a4j:keepAlive: incompatibility with bound components > ---------------------------------------------------- > > Key: RF-7807 > URL: https://issues.jboss.org/browse/RF-7807 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 3.3.2.CR1 > Reporter: Nick Belaevski > Assignee: Nick Belaevski > Priority: Minor > Fix For: 3.Future > > > Please take a look at linked forum thread -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0630300301502184472==-- From jira-events at lists.jboss.org Tue Jun 14 21:11:29 2011 Content-Type: multipart/mixed; boundary="===============2394061282395028875==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Tue, 14 Jun 2011 21:11:29 -0400 Message-ID: <357311231.2042.1308100289536.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2394061282395028875== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10887: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.Future) Git Pull Request: https://github.com/richfaces/components/pull/5 (was:= https://github.com/richfaces/components/pull/5) Affects: [Documentation (Ref Guide, User Guide, etc.)] Yes I think it should be, and I've added the effects docs checkbox. Thanks a lot for the patch!! > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Labels: richfaces > Fix For: 4.1.0.Final > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2394061282395028875==-- From jira-events at lists.jboss.org Tue Jun 14 21:11:29 2011 Content-Type: multipart/mixed; boundary="===============6016195800613500387==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-9153) CSV export component of rich:dataTable/rich:extendedDataTable Date: Tue, 14 Jun 2011 21:11:29 -0400 Message-ID: <1673381148.2048.1308100289880.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1477632758.26550.1283155391909.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6016195800613500387== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9153?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-9153: ------------------------------- Assignee: Jay Balunas (was: Alexander Smirnov) > CSV export component of rich:dataTable/rich:extendedDataTable > ------------------------------------------------------------- > > Key: RF-9153 > URL: https://issues.jboss.org/browse/RF-9153 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final, 4.Future > Reporter: Michael Schmidt > Assignee: Jay Balunas > Labels: dataTables, excel, export > Fix For: 4.Future > > > A component which allows the CSV export/download of any given rich:dataTa= ble/rich:extendedDataTable. Especially in business applications there often= is the requirement to export any data into excel. A generic way to do it w= ould eliminate a lot of required work for Richfaces users. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6016195800613500387==-- From jira-events at lists.jboss.org Tue Jun 14 21:11:30 2011 Content-Type: multipart/mixed; boundary="===============8301235314497099024==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-9153) CSV export component of rich:dataTable/rich:extendedDataTable Date: Tue, 14 Jun 2011 21:11:30 -0400 Message-ID: <1218433092.2056.1308100290496.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1477632758.26550.1283155391909.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8301235314497099024== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9153?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-9153: ------------------------------- Assignee: (was: Jay Balunas) > CSV export component of rich:dataTable/rich:extendedDataTable > ------------------------------------------------------------- > > Key: RF-9153 > URL: https://issues.jboss.org/browse/RF-9153 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final, 4.Future > Reporter: Michael Schmidt > Labels: dataTables, excel, export > Fix For: 4.Future > > > A component which allows the CSV export/download of any given rich:dataTa= ble/rich:extendedDataTable. Especially in business applications there often= is the requirement to export any data into excel. A generic way to do it w= ould eliminate a lot of required work for Richfaces users. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8301235314497099024==-- From jira-events at lists.jboss.org Tue Jun 14 21:15:29 2011 Content-Type: multipart/mixed; boundary="===============6668027959915249564==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-8760) All elements of should be updated correctly for fisheye links Date: Tue, 14 Jun 2011 21:15:29 -0400 Message-ID: <1068321965.2059.1308100529724.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 905449014.4897.1276046618030.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6668027959915249564== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8760?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-8760. ----------------------------- Resolution: Done Completed as part of git migration > All elements of should be updated correctly for fisheye links > ------------------------------------------------------------------------- > > Key: RF-8760 > URL: https://issues.jboss.org/browse/RF-8760 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Reporter: Jay Balunas > Assignee: Jay Balunas > Fix For: 4.Future > > > most point to richfaces/ only -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6668027959915249564==-- From jira-events at lists.jboss.org Tue Jun 14 21:15:29 2011 Content-Type: multipart/mixed; boundary="===============3007505103895958322==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-9068) Component archetypes must be updated based on the new build refactor for M2 Date: Tue, 14 Jun 2011 21:15:29 -0400 Message-ID: <902005258.2061.1308100529848.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1710516466.2156.1281969611938.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3007505103895958322== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9068?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas resolved RF-9068. ----------------------------- Resolution: Out of Date We'll be using seam forge for future component creation = > Component archetypes must be updated based on the new build refactor for = M2 > -------------------------------------------------------------------------= -- > > Key: RF-9068 > URL: https://issues.jboss.org/browse/RF-9068 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution, cdk > Reporter: Jay Balunas > Fix For: 4.Future > > > Please look into this as you are also updating the other archetype issue = for M2. > Components should not have boms, and other changes. Please compare with = other areas. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3007505103895958322==-- From jira-events at lists.jboss.org Tue Jun 14 21:19:29 2011 Content-Type: multipart/mixed; boundary="===============3546200421344680957==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7230) Review the performance related items from RF-1941 for 4.0 Date: Tue, 14 Jun 2011 21:19:29 -0400 Message-ID: <497468101.2069.1308100769644.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 12219306.1242999717487.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3546200421344680957== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7230?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-7230: ---------------------------- Fix Version/s: 4.1.0.Final (was: 4.Future) > Review the performance related items from RF-1941 for 4.0 > --------------------------------------------------------- > > Key: RF-7230 > URL: https://issues.jboss.org/browse/RF-7230 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core, optimization > Reporter: Nick Belaevski > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3546200421344680957==-- From jira-events at lists.jboss.org Tue Jun 14 21:19:29 2011 Content-Type: multipart/mixed; boundary="===============3923385840784464886==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10842) dataScroller: renderIfSinglePage=false breaks component Date: Tue, 14 Jun 2011 21:19:29 -0400 Message-ID: <1499639412.2073.1308100769790.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1787131417.720.1301913813232.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3923385840784464886== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10842?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10842: ----------------------------- Fix Version/s: 4.1.0.Final (was: 4.Future) Forum Reference: http://community.jboss.org/message/597301#597301 (was= : http://community.jboss.org/message/597301#597301) > dataScroller: renderIfSinglePage=3Dfalse breaks component > ------------------------------------------------------- > > Key: RF-10842 > URL: https://issues.jboss.org/browse/RF-10842 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Fix For: 4.1.0.Final > > > just added = > > > > to /richfaces-showcase/src/main/webapp/richfaces/dataTable/samples/tableF= iltering-sample.xhtml > And scroller is never shown. = > Should be: > 1) shown initially as there are at least three pages > 2) not shown after filtering if there are single page > 3) rendered back if reseting filter. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3923385840784464886==-- From jira-events at lists.jboss.org Tue Jun 14 21:21:29 2011 Content-Type: multipart/mixed; boundary="===============6008037342376987842==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10442) extendedDataTable: add state saving functionality Date: Tue, 14 Jun 2011 21:21:29 -0400 Message-ID: <630036395.2081.1308100889755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1245105000.22571.1297083759998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6008037342376987842== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10442?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10442: ----------------------------- Issue Type: Enhancement (was: Bug) Forum Reference: http://community.jboss.org/thread/162090 (was: http:/= /community.jboss.org/thread/162090) > extendedDataTable: add state saving functionality > ------------------------------------------------- > > Key: RF-10442 > URL: https://issues.jboss.org/browse/RF-10442 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Milestone5 > Reporter: Ilya Shaikovsky > Assignee: Jay Balunas > Fix For: 4.Future > > > developer should be able to store column width'es, order and so on betwee= n requests. > TO discuss: use tableState as before or maybe create set of specific attr= ibutes for every required properties set. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6008037342376987842==-- From jira-events at lists.jboss.org Tue Jun 14 21:21:30 2011 Content-Type: multipart/mixed; boundary="===============6701973700698311998==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8934) Theme roller application Date: Tue, 14 Jun 2011 21:21:29 -0400 Message-ID: <1343459722.2087.1308100889994.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1369195621.4313.1279119418914.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6701973700698311998== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-8934?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-8934: ---------------------------- Assignee: (was: Nick Belaevski) Fix Version/s: 4.1.0.Final (was: 4.Future) Forum Reference: http://community.jboss.org/thread/154147?tstart=3D0 (= was: http://community.jboss.org/thread/154147?tstart=3D0) > Theme roller application > ------------------------ > > Key: RF-8934 > URL: https://issues.jboss.org/browse/RF-8934 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: examples, skinning > Affects Versions: 4.0.0.Milestone1 > Reporter: Nick Belaevski > Fix For: 4.1.0.Final > > > See related forum thread & this link: http://jqueryui.com/themeroller/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6701973700698311998==-- From jira-events at lists.jboss.org Tue Jun 14 21:25:30 2011 Content-Type: multipart/mixed; boundary="===============1632121843382769013==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11066) Component: rich:contextMenu for RichFaces 4.X Date: Tue, 14 Jun 2011 21:25:30 -0400 Message-ID: <1586449257.2097.1308101130131.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 987139553.2094.1308101130053.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1632121843382769013== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11066?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11066: ----------------------------- Issue Type: Feature Request (was: Task) > Component: rich:contextMenu for RichFaces 4.X > --------------------------------------------- > > Key: RF-11066 > URL: https://issues.jboss.org/browse/RF-11066 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-menu > Affects Versions: 4.0.0.Final > Reporter: Jay Balunas > Fix For: 4.Future > > > Migration, implement a version of the context menu for RichFaces 4.X -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1632121843382769013==-- From jira-events at lists.jboss.org Tue Jun 14 21:25:30 2011 Content-Type: multipart/mixed; boundary="===============1490710973570889411==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11066) Component: rich:contextMenu for RichFaces 4.X Date: Tue, 14 Jun 2011 21:25:30 -0400 Message-ID: <987139553.2094.1308101130053.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1490710973570889411== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Component: rich:contextMenu for RichFaces 4.X --------------------------------------------- Key: RF-11066 URL: https://issues.jboss.org/browse/RF-11066 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component-menu Affects Versions: 4.0.0.Final Reporter: Jay Balunas Fix For: 4.Future Migration, implement a version of the context menu for RichFaces 4.X -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1490710973570889411==-- From jira-events at lists.jboss.org Wed Jun 15 03:57:29 2011 Content-Type: multipart/mixed; boundary="===============7715028329245386575==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10871) rich:message wrong format of error message Date: Wed, 15 Jun 2011 03:57:29 -0400 Message-ID: <1962605696.2502.1308124649542.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7715028329245386575== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-10871: ----------------------------- Attachment: incorrectMessage.PNG incorrect behavior of rich:message > rich:message wrong format of error message > ------------------------------------------ > > Key: RF-10871 > URL: https://issues.jboss.org/browse/RF-10871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile device - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: correctMessage.png, incorrectMessage.PNG > > > The error messages which are rendered have bad format, because it should = have font size as text labels before inputs, but they have bigger font size. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7715028329245386575==-- From jira-events at lists.jboss.org Wed Jun 15 03:57:29 2011 Content-Type: multipart/mixed; boundary="===============0727293355243735488==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10871) rich:message wrong format of error message Date: Wed, 15 Jun 2011 03:57:29 -0400 Message-ID: <929438658.2505.1308124649603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0727293355243735488== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10871?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-10871: ----------------------------- Attachment: correctMessage.png correct behavior of rich:message > rich:message wrong format of error message > ------------------------------------------ > > Key: RF-10871 > URL: https://issues.jboss.org/browse/RF-10871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile device - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: correctMessage.png, incorrectMessage.PNG > > > The error messages which are rendered have bad format, because it should = have font size as text labels before inputs, but they have bigger font size. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0727293355243735488==-- From jira-events at lists.jboss.org Wed Jun 15 04:06:29 2011 Content-Type: multipart/mixed; boundary="===============2251488273496896903==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-10871) rich:message wrong format of error message Date: Wed, 15 Jun 2011 04:06:29 -0400 Message-ID: <1099882840.2515.1308125189764.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2251488273496896903== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10871?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608755#com= ment-12608755 ] = Juraj Huska edited comment on RF-10871 at 6/15/11 4:05 AM: ----------------------------------------------------------- I meant behavior of rich:message from this sample: http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dmessage&skin=3DblueSky Error messages should have the font size same as the labels in front of lab= els, for example error message which renders for Name input should have siz= e of Name label. And this is incorrect on iPhone4. I attached this differences in screenshots, incorrectMessage.png is from iP= hone4 and correctMessage.png is from desktop. Same problem applies for rich:messages. was (Author: jhuska): I meant behavior of rich:message from this sample: http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dmessage&skin=3DblueSky Error messages has the font size same as the labels in front of labels, for= example error message which renders for Name input should have size of Nam= e label. I attached this differences in screenshots, incorrectMessage.png is from iP= hone4 and correctMessage.png is from desktop. Same problem applies for rich:messages. = > rich:message wrong format of error message > ------------------------------------------ > > Key: RF-10871 > URL: https://issues.jboss.org/browse/RF-10871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile device - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: correctMessage.png, incorrectMessage.PNG > > > The error messages which are rendered have bad format, because it should = have font size as text labels before inputs, but they have bigger font size. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2251488273496896903==-- From jira-events at lists.jboss.org Wed Jun 15 04:06:29 2011 Content-Type: multipart/mixed; boundary="===============5955877388351941672==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10871) rich:message wrong format of error message Date: Wed, 15 Jun 2011 04:06:29 -0400 Message-ID: <484906941.2511.1308125189598.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5955877388351941672== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10871?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608755#com= ment-12608755 ] = Juraj Huska commented on RF-10871: ---------------------------------- I meant behavior of rich:message from this sample: http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo= =3Dmessage&skin=3DblueSky Error messages has the font size same as the labels in front of labels, for= example error message which renders for Name input should have size of Nam= e label. I attached this differences in screenshots, incorrectMessage.png is from iP= hone4 and correctMessage.png is from desktop. Same problem applies for rich:messages. > rich:message wrong format of error message > ------------------------------------------ > > Key: RF-10871 > URL: https://issues.jboss.org/browse/RF-10871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile device - iPhone 4 - OS version iOS 4.2.1 - browser Safari > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: correctMessage.png, incorrectMessage.PNG > > > The error messages which are rendered have bad format, because it should = have font size as text labels before inputs, but they have bigger font size. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5955877388351941672==-- From jira-events at lists.jboss.org Wed Jun 15 04:25:29 2011 Content-Type: multipart/mixed; boundary="===============8967358914554810484==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Wed, 15 Jun 2011 04:25:29 -0400 Message-ID: <436882505.2577.1308126329597.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8967358914554810484== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-10874: ----------------------------- Attachment: goodVisibleCrossSign.PNG > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: barelyVisibleCrossSign.PNG, goodVisibleCrossSign.PNG > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8967358914554810484==-- From jira-events at lists.jboss.org Wed Jun 15 04:25:29 2011 Content-Type: multipart/mixed; boundary="===============4029371271098594633==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Wed, 15 Jun 2011 04:25:29 -0400 Message-ID: <345804014.2581.1308126329720.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4029371271098594633== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Juraj Huska updated RF-10874: ----------------------------- Attachment: barelyVisibleCrossSign.PNG > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: barelyVisibleCrossSign.PNG, goodVisibleCrossSign.PNG > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4029371271098594633==-- From jira-events at lists.jboss.org Wed Jun 15 04:38:29 2011 Content-Type: multipart/mixed; boundary="===============6978228930960615741==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Wed, 15 Jun 2011 04:38:29 -0400 Message-ID: <1308760913.2593.1308127109588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6978228930960615741== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608760#com= ment-12608760 ] = Juraj Huska commented on RF-10874: ---------------------------------- I meant the sample for rich:hashParam from: http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?skin= =3DblueSky The cross sign of popup panel in top right corner is barely visible with so= me standard skins, more precisely with these: ruby, wine, emeraldTown, deepMarine and classic skin. = It is good visible with: blueSky and japanCherry skin. I attached the screenshot with ruby sample and blueSky. The more it is zoom= ed out more it is barely visible. This problem is on mobile devices as well as on desktops. > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: mobile > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: barelyVisibleCrossSign.PNG, goodVisibleCrossSign.PNG > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6978228930960615741==-- From jira-events at lists.jboss.org Wed Jun 15 06:17:29 2011 Content-Type: multipart/mixed; boundary="===============8943764571175128530==" MIME-Version: 1.0 From: Balazs Zsoldos (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11055) Make fileupload portlet enabled Date: Wed, 15 Jun 2011 06:17:29 -0400 Message-ID: <531485281.2759.1308133049526.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8943764571175128530== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608781#com= ment-12608781 ] = Balazs Zsoldos commented on RF-11055: ------------------------------------- I signed it. Now it shows that it waits for the approval of the project lea= d. It is signed in the name of my company: Corporate - Everit Kft. > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8943764571175128530==-- From jira-events at lists.jboss.org Wed Jun 15 07:28:29 2011 Content-Type: multipart/mixed; boundary="===============1275151868896892201==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11055) Make fileupload portlet enabled Date: Wed, 15 Jun 2011 07:28:29 -0400 Message-ID: <1661431399.2910.1308137309699.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1275151868896892201== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11055?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608796#com= ment-12608796 ] = Jay Balunas commented on RF-11055: ---------------------------------- ok - I have approved it - thanks again! > Make fileupload portlet enabled > ------------------------------- > > Key: RF-11055 > URL: https://issues.jboss.org/browse/RF-11055 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 4.0.0.Final > Environment: Liferay 6.0.6, JBoss portletbridge 3.0, Richfaces 4.= 0.Final > Reporter: Balazs Zsoldos > Assignee: Wesley Hales > Fix For: 4.1.0.Final > > Attachments: fileupload_based_on_externalcontext.patch > > > Currently FileUploadFacesContextFactory and in related classes depend on = HttpServletRequest and HttpServletResponse and HttpSession that make it imp= ossible to let it work in portal environments. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1275151868896892201==-- From jira-events at lists.jboss.org Wed Jun 15 07:35:29 2011 Content-Type: multipart/mixed; boundary="===============1714776974828547806==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign Date: Wed, 15 Jun 2011 07:35:29 -0400 Message-ID: <2060427043.2924.1308137729458.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1714776974828547806== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10874?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10874: ----------------------------- Assignee: (was: Wesley Hales) Component/s: skinning (was: mobile) > rich:poppupPanel not possible to change the size of poppupPanel, bad visi= bility of cross sign > -------------------------------------------------------------------------= -------------------- > > Key: RF-10874 > URL: https://issues.jboss.org/browse/RF-10874 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: skinning > Affects Versions: 4.0.0.Final > Environment: Demo application - richfaces-showcase-4.0.0.Final-je= e6.war > container - Jboss AS 6.0.0.Final > mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari > iPad1 - OS version iOS 4.2.1 - browser Safari > Nexus S - OS Android 2.3.2 = > Reporter: Juraj Huska > Fix For: 4.1.0.Final > > Attachments: barelyVisibleCrossSign.PNG, goodVisibleCrossSign.PNG > > > It is not possible to change the size of poppup panel, in demos where it = should be possible(hashParam), and also the cross which should cancel the p= anel is with some skins, like with for example ruby, is almost invisible. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1714776974828547806==-- From jira-events at lists.jboss.org Wed Jun 15 07:37:29 2011 Content-Type: multipart/mixed; boundary="===============4223223321491398488==" MIME-Version: 1.0 From: Wanderlei Magri (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Wed, 15 Jun 2011 07:37:29 -0400 Message-ID: <1885365057.2928.1308137849499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4223223321491398488== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608797#com= ment-12608797 ] = Wanderlei Magri commented on RF-10970: -------------------------------------- Working directly with objects, for example you pass a list of objects to au= tocomplete it and the return value is an object, being able to use the conv= ert. > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Wanderlei Magri > Fix For: 4.Future > > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4223223321491398488==-- From jira-events at lists.jboss.org Wed Jun 15 07:39:29 2011 Content-Type: multipart/mixed; boundary="===============4373922647431217385==" MIME-Version: 1.0 From: Wanderlei Magri (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Wed, 15 Jun 2011 07:39:29 -0400 Message-ID: <1611507739.2936.1308137969888.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4373922647431217385== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Wanderlei Magri updated RF-10970: --------------------------------- Original Estimate: 4 weeks Remaining Estimate: 4 weeks Labels: AutoComplete (was: ) Fix Version/s: 4.0.1.Milestone1 4.1.0.Milestone1 (was: 4.Future) Affects Version/s: 4.0.1.Milestone1 4.1.0.Milestone1 Description: I think it UIAutocomplete should work with object, = such as o p:autocomplete the primefaces.Working directly with objects, for = example you pass a list of objects to autocomplete it and the return value = is an object, being able to use the convert. (was: I think it UIAutocomple= te should work with object, such as o p:autocomplete the primefaces) Complexity: Medium Affects: [Documentation (Ref Guide, User Guide, etc.), Inter= active Demo/Tutorial] > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Wanderlei Magri > Labels: AutoComplete > Fix For: 4.0.1.Milestone1, 4.1.0.Milestone1 > > Original Estimate: 4 weeks > Remaining Estimate: 4 weeks > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces.Working directly with objects, for example you pass a lis= t of objects to autocomplete it and the return value is an object, being ab= le to use the convert. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4373922647431217385==-- From jira-events at lists.jboss.org Wed Jun 15 07:41:29 2011 Content-Type: multipart/mixed; boundary="===============8439251258377325170==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11016) Reformat all source code to follow the standard formates Date: Wed, 15 Jun 2011 07:41:29 -0400 Message-ID: <1575709407.2943.1308138089438.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 763469488.32846.1306524720937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8439251258377325170== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11016?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11016. ----------------------------- Resolution: Done > Reformat all source code to follow the standard formates > -------------------------------------------------------- > > Key: RF-11016 > URL: https://issues.jboss.org/browse/RF-11016 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, clean-up > Affects Versions: 4.1.0.Milestone1 > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Once we have update our source code format profiles ( should not be very = different ) http://community.jboss.org/message/607296#607296 we need to app= ly those to the repositories recently migrated to git so that everyone can = start with a standard base. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8439251258377325170==-- From jira-events at lists.jboss.org Wed Jun 15 07:49:29 2011 Content-Type: multipart/mixed; boundary="===============4703818433922999845==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Wed, 15 Jun 2011 07:49:29 -0400 Message-ID: <724018868.2974.1308138569641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4703818433922999845== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10970: ----------------------------- Fix Version/s: 4.Future (was: 4.1.0.Milestone1) (was: 4.0.1.Milestone1) Affects Version/s: 4.0.0.Final (was: 4.1.0.Milestone1) (was: 4.0.1.Milestone1) Affects: (was: [Documentation (Ref Guide, User Guide, etc.)= , Interactive Demo/Tutorial]) Thanks for updating the description, but again, please do not set the other= fields! > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Wanderlei Magri > Labels: AutoComplete > Fix For: 4.Future > > Original Estimate: 4 weeks > Remaining Estimate: 4 weeks > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces.Working directly with objects, for example you pass a lis= t of objects to autocomplete it and the return value is an object, being ab= le to use the convert. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4703818433922999845==-- From jira-events at lists.jboss.org Wed Jun 15 07:55:30 2011 Content-Type: multipart/mixed; boundary="===============0945150020359831941==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11038) extendedTable: sorting sample Date: Wed, 15 Jun 2011 07:55:29 -0400 Message-ID: <1796916499.3011.1308138929909.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0945150020359831941== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-11038: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Ilya Shaikovsky) > extendedTable: sorting sample > ----------------------------- > > Key: RF-11038 > URL: https://issues.jboss.org/browse/RF-11038 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0945150020359831941==-- From jira-events at lists.jboss.org Wed Jun 15 08:03:29 2011 Content-Type: multipart/mixed; boundary="===============5905957355586519644==" MIME-Version: 1.0 From: Wanderlei Magri (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10970) UIAutocomplete should work with object, such as o p:autocomplete the primefaces Date: Wed, 15 Jun 2011 08:03:29 -0400 Message-ID: <1692082030.3032.1308139409549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1329600701.28566.1304444058364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5905957355586519644== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10970?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608813#com= ment-12608813 ] = Wanderlei Magri commented on RF-10970: -------------------------------------- Ok, sorry I did not understand. > UIAutocomplete should work with object, such as o p:autocomplete the prim= efaces > -------------------------------------------------------------------------= ------ > > Key: RF-10970 > URL: https://issues.jboss.org/browse/RF-10970 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Wanderlei Magri > Labels: AutoComplete > Fix For: 4.Future > > Original Estimate: 4 weeks > Remaining Estimate: 4 weeks > > I think it UIAutocomplete should work with object, such as o p:autocomple= te the primefaces.Working directly with objects, for example you pass a lis= t of objects to autocomplete it and the return value is an object, being ab= le to use the convert. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5905957355586519644==-- From jira-events at lists.jboss.org Wed Jun 15 09:10:29 2011 Content-Type: multipart/mixed; boundary="===============7318273281485315960==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11041) extendedTable: ajax loading sample Date: Wed, 15 Jun 2011 09:10:29 -0400 Message-ID: <954167026.3231.1308143429709.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1837462659.5046.1307308679305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7318273281485315960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11041?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11041. ----------------------------- Resolution: Done > extendedTable: ajax loading sample > ---------------------------------- > > Key: RF-11041 > URL: https://issues.jboss.org/browse/RF-11041 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7318273281485315960==-- From jira-events at lists.jboss.org Wed Jun 15 09:10:29 2011 Content-Type: multipart/mixed; boundary="===============0525330874652998248==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11039) extendedTable: filtering sample Date: Wed, 15 Jun 2011 09:10:29 -0400 Message-ID: <596950211.3225.1308143429578.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0525330874652998248== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11039?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11039. ----------------------------- Resolution: Done > extendedTable: filtering sample > ------------------------------- > > Key: RF-11039 > URL: https://issues.jboss.org/browse/RF-11039 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0525330874652998248==-- From jira-events at lists.jboss.org Wed Jun 15 09:10:29 2011 Content-Type: multipart/mixed; boundary="===============4078362785544107268==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11042) autocomplete: custom layouts sample Date: Wed, 15 Jun 2011 09:10:29 -0400 Message-ID: <1077401811.3233.1308143429751.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 369138524.5078.1307321519313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4078362785544107268== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11042?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11042. ----------------------------- Resolution: Done > autocomplete: custom layouts sample > ----------------------------------- > > Key: RF-11042 > URL: https://issues.jboss.org/browse/RF-11042 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4078362785544107268==-- From jira-events at lists.jboss.org Wed Jun 15 09:12:29 2011 Content-Type: multipart/mixed; boundary="===============4657066317314024539==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11037) richfaces-showcase: new demos Date: Wed, 15 Jun 2011 09:12:29 -0400 Message-ID: <1528784924.3237.1308143549507.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1560828782.5020.1307296259290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4657066317314024539== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11037?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608831#com= ment-12608831 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11037: --------------------------------- Changes merged, thanks for the demos Ilya! > richfaces-showcase: new demos > ----------------------------- > > Key: RF-11037 > URL: https://issues.jboss.org/browse/RF-11037 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > > I would like to contribute some demos to components showcase app. > I will create subtasks to track proposed ones. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4657066317314024539==-- From jira-events at lists.jboss.org Wed Jun 15 09:22:42 2011 Content-Type: multipart/mixed; boundary="===============0432049590741978184==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11038) extendedTable: sorting sample Date: Wed, 15 Jun 2011 09:22:42 -0400 Message-ID: <539379217.3269.1308144162104.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0432049590741978184== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11038?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11038: ---------------------------- Assignee: Ilya Shaikovsky (was: Luk=C3=A1=C5=A1 Fry=C4=8D) Git Pull Request: https://github.com/richfaces/showcase/pull/4 (was: h= ttps://github.com/richfaces/showcase/pull/4) > extendedTable: sorting sample > ----------------------------- > > Key: RF-11038 > URL: https://issues.jboss.org/browse/RF-11038 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Ilya Shaikovsky > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0432049590741978184==-- From jira-events at lists.jboss.org Wed Jun 15 10:36:30 2011 Content-Type: multipart/mixed; boundary="===============0886589129470799624==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7787) Process JSF client-behavior information and generate Behavior and Behavior-renderer classes. Date: Wed, 15 Jun 2011 10:36:30 -0400 Message-ID: <207048776.3596.1308148590870.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 672984062.1251504743785.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com --===============0886589129470799624== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7787?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-7787: --------------------------- Fix Version/s: (was: 4.Future) > Process JSF client-behavior information and generate Behavior and Behavio= r-renderer classes. > -------------------------------------------------------------------------= ------------------- > > Key: RF-7787 > URL: https://issues.jboss.org/browse/RF-7787 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: cdk > Reporter: Alexander Smirnov > Assignee: Alexander Smirnov > Fix For: 4.0.0.Milestone6 > > > 1. Develop behavior-related annotations. > 2. Create annotation processor for behavior classes. > 3. Parse behavior section of the faces-config.xml > 4. Write behavior classes. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0886589129470799624==-- From jira-events at lists.jboss.org Wed Jun 15 10:40:31 2011 Content-Type: multipart/mixed; boundary="===============0921346130441659432==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 Date: Wed, 15 Jun 2011 10:40:31 -0400 Message-ID: <1327365467.3712.1308148831437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0921346130441659432== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608873#com= ment-12608873 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11052: --------------------------------- Jay, this seems as Maven 3 issue - it is just not activating profiles from = $HOME/.m2/settings.xml (only central repo is than discussed for presence of= richfaces-parent). The workaround is to checkout richfaces-parent (tag 10) locally into projec= t structure. > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0921346130441659432==-- From jira-events at lists.jboss.org Wed Jun 15 10:51:29 2011 Content-Type: multipart/mixed; boundary="===============2311453256094020269==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 Date: Wed, 15 Jun 2011 10:51:29 -0400 Message-ID: <2039311190.3803.1308149489634.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2311453256094020269== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12608876#com= ment-12608876 ] = Jay Balunas commented on RF-11052: ---------------------------------- Do you happen to have a bug report for this? That is an annoying issue for= sure :-( > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2311453256094020269==-- From jira-events at lists.jboss.org Wed Jun 15 11:15:29 2011 Content-Type: multipart/mixed; boundary="===============3945395808691762862==" MIME-Version: 1.0 From: Juraj Huska (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11067) rich:autocomplete popups with suggestions does not reflect the value in input Date: Wed, 15 Jun 2011 11:15:29 -0400 Message-ID: <1009005238.3915.1308150929734.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3945395808691762862== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:autocomplete popups with suggestions does not reflect the value in inp= ut ---------------------------------------------------------------------------= -- Key: RF-11067 URL: https://issues.jboss.org/browse/RF-11067 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Affects Versions: 4.1.0.Milestone1 Environment: richfaces-showcase commit 4a534c358ff5903429609ff065fc27bae6fec2c0 Reporter: Juraj Huska In richfaces-showcase, demo for rich:autocomplete, sample Custom Popup Layo= uts, popup with suggestions does not reflect what is typed in the input, it= always shows the first row of suggestion. = For example when I type v, it should render popup with suggestion Vermont, = but instead of it suggest Alabama. = This is corrected when something is chosen, for example Alabama, then sugge= stions work properly. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3945395808691762862==-- From jira-events at lists.jboss.org Wed Jun 15 11:36:29 2011 Content-Type: multipart/mixed; boundary="===============2685103866718380498==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11068) Migrate sandbox from SVN to git Date: Wed, 15 Jun 2011 11:36:29 -0400 Message-ID: <1412378498.3987.1308152189501.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2685103866718380498== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11068?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas moved RFPL-1501 to RF-11068: ---------------------------------------- Project: RichFaces (was: RichFaces Planning) Key: RF-11068 (was: RFPL-1501) Workflow: GIT Pull Request workflow (was: jira) Component/s: architectural build/distribution (was: site) (was: build) Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Final) > Migrate sandbox from SVN to git > ------------------------------- > > Key: RF-11068 > URL: https://issues.jboss.org/browse/RF-11068 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2685103866718380498==-- From jira-events at lists.jboss.org Wed Jun 15 11:44:30 2011 Content-Type: multipart/mixed; boundary="===============0917169742573286832==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11069) New Components for 4.1.0.Milestone2 Date: Wed, 15 Jun 2011 11:44:29 -0400 Message-ID: <45267789.4053.1308152669995.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0917169742573286832== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable New Components for 4.1.0.Milestone2 ----------------------------------- Key: RF-11069 URL: https://issues.jboss.org/browse/RF-11069 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: component Affects Versions: 4.1.0.Milestone2 Reporter: Jay Balunas Assignee: Jay Balunas Priority: Blocker Fix For: 4.1.0.Milestone2 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0917169742573286832==-- From jira-events at lists.jboss.org Thu Jun 16 07:32:23 2011 Content-Type: multipart/mixed; boundary="===============1318413124226399924==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11070) Turn on Checkstyle check for tests Date: Thu, 16 Jun 2011 07:32:23 -0400 Message-ID: <591863011.686.1308223943720.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1318413124226399924== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Turn on Checkstyle check for tests ---------------------------------- Key: RF-11070 URL: https://issues.jboss.org/browse/RF-11070 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.1.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Currently tests are not covered by checkstyle, I suggest to turn checkstyle on for tests in richfaces-root-parent: http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.htm= l#includeTestSourceDirectory It is necessary to check that clean build of whole framework passes with th= is settings. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1318413124226399924==-- From jira-events at lists.jboss.org Thu Jun 16 09:09:24 2011 Content-Type: multipart/mixed; boundary="===============3964695665702167431==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11071) richfaces-bom doesn't point relatively to richfaces-parent Date: Thu, 16 Jun 2011 09:09:23 -0400 Message-ID: <1492763158.990.1308229763972.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3964695665702167431== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable richfaces-bom doesn't point relatively to richfaces-parent ---------------------------------------------------------- Key: RF-11071 URL: https://issues.jboss.org/browse/RF-11071 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.1.0.Milestone1 Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D Fix For: 4.1.0.Milestone1 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============3964695665702167431==-- From jira-events at lists.jboss.org Thu Jun 16 09:11:25 2011 Content-Type: multipart/mixed; boundary="===============9155005293309236204==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 Date: Thu, 16 Jun 2011 09:11:25 -0400 Message-ID: <2107718563.1041.1308229885608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============9155005293309236204== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11052?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12609208#com= ment-12609208 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11052: --------------------------------- Note that there is also wrong setup parent of richfaces-bom ( RF-11071 ), but it doesn't help this problem except you have parent downloaded locally. It seems that is not whole Maven 3 issue, but maven-shade-plugin, which is = trying to build effective pom, I have sent mail to Maven ML. > Module components cannot be build with Maven 3 > ---------------------------------------------- > > Key: RF-11052 > URL: https://issues.jboss.org/browse/RF-11052 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT > Maven 3.0.3 > Reporter: Pavol Pitonak > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > # Clone Git repository https://github.com/richfaces/components.git > # run mvn clean package using Maven 3.0.3 > result: > {quote} > [INFO] ------------------------------------------------------------------= ------ > [INFO] Building Richfaces UI Components API 4.1.0-SNAPSHOT > [INFO] ------------------------------------------------------------------= ------ > ... > [INFO] ------------------------------------------------------------------= ------ > [INFO] BUILD FAILURE > [INFO] ------------------------------------------------------------------= ------ > [INFO] Total time: 3.449s > [INFO] Finished at: Mon Jun 06 15:39:44 CEST 2011 > [INFO] Final Memory: 8M/105M > [INFO] ------------------------------------------------------------------= ------ > [ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugi= n:1.3.3:shade (default) on project richfaces-components-api: Error creating= shaded jar: 1 problem was encountered while building the effective model f= or org.richfaces.ui:richfaces-components-api:4.1.0-SNAPSHOT > [ERROR] [FATAL] Non-resolvable parent POM for org.richfaces:richfaces-bom= :4.1.0-SNAPSHOT: Could not find artifact org.richfaces:richfaces-parent:pom= :10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' po= ints at wrong local POM @ org.richfaces:richfaces-bom:4.1.0-SNAPSHOT, /data= /eclipse-workspace/richfaces/build/bom/pom.xml, line 24, column 13 > [ERROR] for project org.richfaces.ui:richfaces-components-api:4.1.0-SNAPS= HOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-componen= ts-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-co= mponents-api:4.1.0-SNAPSHOT at /data/eclipse-workspace/richfaces/components= /dist/richfaces-components-api/dependency-reduced-pom.xml > [ERROR] -> [Help 1] > [ERROR] = > [ERROR] To see the full stack trace of the errors, re-run Maven with the = -e switch. > [ERROR] Re-run Maven using the -X switch to enable full debug logging. > [ERROR] = > [ERROR] For more information about the errors and possible solutions, ple= ase read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExe= cutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============9155005293309236204==-- From jira-events at lists.jboss.org Thu Jun 16 09:11:25 2011 Content-Type: multipart/mixed; boundary="===============8601716093501988090==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9485) IE9 Beta - AJAX broken Date: Thu, 16 Jun 2011 09:11:24 -0400 Message-ID: <1065789906.1024.1308229884903.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8601716093501988090== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9485?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-9485: ---------------------------- Comment: was deleted (was: Please Ignore this comment, i can't delete it) > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Assignee: Jay Balunas > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown i= n the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf,= line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 23= 73 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascri= pt.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = =3D new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 is= sue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8601716093501988090==-- From jira-events at lists.jboss.org Thu Jun 16 10:55:23 2011 Content-Type: multipart/mixed; boundary="===============5069782244355111138==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11072) File Upload immediateUpload has no effect in Richfaces 4.0 Date: Thu, 16 Jun 2011 10:55:23 -0400 Message-ID: <1970428880.1329.1308236123681.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5069782244355111138== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable File Upload immediateUpload has no effect in Richfaces 4.0 ---------------------------------------------------------- Key: RF-11072 URL: https://issues.jboss.org/browse/RF-11072 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Jesse Bowes Richfaces 4.0 does not seem to support immediateUpload. Setting this value= to true still requires the user to manually upload the files -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5069782244355111138==-- From jira-events at lists.jboss.org Thu Jun 16 13:34:23 2011 Content-Type: multipart/mixed; boundary="===============0549281763127883528==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11064) Push: Invalid async context for servlet AutoRegisteredPushServlet Date: Thu, 16 Jun 2011 13:34:23 -0400 Message-ID: <503639479.1890.1308245663643.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 910263183.1102.1307975303998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0549281763127883528== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11064?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12609296#com= ment-12609296 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11064: --------------------------------- Seems like jbossweb-3.0.0.CR1 issue, but can't get into it more deeper. The problem happens on CoyoteAdapter.java:265, expecting eventMode =3D fals= e (getting EventType.END effectively) but instead getting eventMode =3D tru= e (leads to EventType.EVENT). I will wait for AS7 CR1 release to check there. > Push: Invalid async context for servlet AutoRegisteredPushServlet > ----------------------------------------------------------------- > > Key: RF-11064 > URL: https://issues.jboss.org/browse/RF-11064 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-a4j-core > Affects Versions: 4.1.0.Milestone1 > Environment: Firefox 4.0.1 > JBoss 6.0.0.Final / 6.1.0-SNAPSHOT > Atmosphere 7.0.1/7.0.2 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Final > > > Sample application: https://github.com/lfryc/push-jms/ > Reproduced on: https://github.com/lfryc/push-jms/tree/6dd6b623410e30ee440= 6e13fb6e22866e652e637 > deploy/hornetq/hornetq-jms.xml: > {code:XML} > > > > {code} > deploy/hornetq/hornetq-configuration.xml > {code:XML} > > > {code} > 16:21:52,065 ERROR [org.apache.catalina.connector.CoyoteAdapter] An excep= tion or error occurred in the container during the request processing: java= .lang.IllegalStateException: Invalid async context for servlet AutoRegister= edPushServlet > at org.apache.catalina.core.StandardWrapperValve.async(StandardWrapperVa= lve.java:643) [:6.0.0.Final] > at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperVa= lve.java:402) [:6.0.0.Final] > at org.apache.catalina.core.StandardContextValve.event(StandardContextVa= lve.java:260) [:6.0.0.Final] > at org.jboss.web.tomcat.security.SecurityAssociationValve.event(Security= AssociationValve.java:328) [:6.0.0.Final] > at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.ev= ent(CatalinaContext.java:281) [:1.1.0.Final] > at org.jboss.web.tomcat.security.JaccContextValve.event(JaccContextValve= .java:116) [:6.0.0.Final] > at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.event= (SecurityContextEstablishmentValve.java:161) [:6.0.0.Final] > at org.apache.catalina.core.StandardHostValve.event(StandardHostValve.ja= va:178) [:6.0.0.Final] > at org.apache.catalina.valves.ValveBase.event(ValveBase.java:200) [:6.0.= 0.Final] > at org.jboss.web.tomcat.service.jca.CachedConnectionValve.event(CachedCo= nnectionValve.java:186) [:6.0.0.Final] > at org.apache.catalina.core.StandardEngineValve.event(StandardEngineValv= e.java:128) [:6.0.0.Final] > at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.= event(ActiveRequestResponseCacheValve.java:70) [:6.0.0.Final] > at org.apache.catalina.connector.CoyoteAdapter.event(CoyoteAdapter.java:= 265) [:6.0.0.Final] > at org.apache.coyote.http11.Http11Processor.event(Http11Processor.java:7= 57) [:6.0.0.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.event= (Http11Protocol.java:602) [:6.0.0.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:93= 8) [:6.0.0.Final] > at java.lang.Thread.run(Thread.java:636) [:1.6.0_20] > 16:21:52,076 ERROR [STDERR] java.lang.NullPointerException > 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .action(Servlet30Support.java:168) > 16:21:52,076 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .action(Servlet30Support.java:63) > 16:21:52,076 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .resume(AtmosphereResourceImpl.java:175) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.resume(Meteor.j= ava:199) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.resume(RequestImpl.java:61) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Sessi= onImpl.releaseRequest(SessionImpl.java:112) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Sessi= onImpl.connect(SessionImpl.java:85) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.onSuspend(RequestImpl.java:91) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .onSuspend(AtmosphereResourceImpl.java:483) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .notifyListeners(AtmosphereResourceImpl.java:455) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .notifyListeners(AtmosphereResourceImpl.java:443) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereResourceImpl= .suspend(AtmosphereResourceImpl.java:247) > 16:21:52,077 ERROR [STDERR] at org.atmosphere.cpr.Meteor.suspend(Meteor.= java:189) > 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.Reque= stImpl.suspend(RequestImpl.java:57) > 16:21:52,078 ERROR [STDERR] at org.richfaces.webapp.PushHandlerFilter.do= Filter(PushHandlerFilter.java:102) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain= .doFilter(AtmosphereFilterChain.java:139) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.util.AtmosphereFilterChain= .invokeFilterChain(AtmosphereFilterChain.java:116) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletPr= ocessor$FilterChainServletWrapper.service(ReflectorServletProcessor.java:29= 4) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletPr= ocessor.onRequest(ReflectorServletProcessor.java:152) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.= action(AsynchronousProcessor.java:191) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AsynchronousProcessor.= suspended(AsynchronousProcessor.java:142) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.container.Servlet30Support= .service(Servlet30Support.java:87) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doCo= metSupport(AtmosphereServlet.java:1156) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doPo= st(AtmosphereServlet.java:1138) > 16:21:52,078 ERROR [STDERR] at org.atmosphere.cpr.AtmosphereServlet.doGe= t(AtmosphereServlet.java:1124) > 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Ht= tpServlet.java:734) > 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(Ht= tpServlet.java:847) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilte= rChain.internalDoFilter(ApplicationFilterChain.java:324) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilte= rChain.doFilter(ApplicationFilterChain.java:242) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperV= alve.invoke(StandardWrapperValve.java:275) > 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardContextV= alve.invoke(StandardContextValve.java:191) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAss= ociationValve.invoke(SecurityAssociationValve.java:181) > 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaCon= text$RequestListenerValve.event(CatalinaContext.java:285) > 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaCon= text$RequestListenerValve.invoke(CatalinaContext.java:261) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContext= Valve.invoke(JaccContextValve.java:88) > 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityCon= textEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:100) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardHostValv= e.invoke(StandardHostValve.java:127) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportVal= ve.invoke(ErrorReportValve.java:102) > 16:21:52,080 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedCo= nnectionValve.invoke(CachedConnectionValve.java:158) > 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardEngineVa= lve.invoke(StandardEngineValve.java:109) > 16:21:52,081 ERROR [STDERR] at org.jboss.web.tomcat.service.request.Acti= veRequestResponseCacheValve.invoke(ActiveRequestResponseCacheValve.java:53) > 16:21:52,081 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapt= er.service(CoyoteAdapter.java:362) > 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.= process(Http11Processor.java:877) > 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$H= ttp11ConnectionHandler.process(Http11Protocol.java:654) > 16:21:52,084 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Wo= rker.run(JIoEndpoint.java:946) > 16:21:52,084 ERROR [STDERR] at java.lang.Thread.run(Thread.java:636) -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0549281763127883528==-- From jira-events at lists.jboss.org Thu Jun 16 18:11:23 2011 Content-Type: multipart/mixed; boundary="===============7117434721021169406==" MIME-Version: 1.0 From: ba nguyen (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11073) fileUpload listHeight Date: Thu, 16 Jun 2011 18:11:23 -0400 Message-ID: <1380660665.2239.1308262283636.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7117434721021169406== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable fileUpload listHeight --------------------- Key: RF-11073 URL: https://issues.jboss.org/browse/RF-11073 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.0.0.Final Environment: Windows 7 Glassfish v3.1 Eclipse JEE Helios Service Release 1 FireFox 4 Reporter: ba nguyen listHeight is ignored. No documentation regarding this feature in RichFaces= 4 final releases. = Referencing issue RF-9737 the fix was version 4 milestone 6. Final version = does not carry on the fix. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7117434721021169406==-- From jira-events at lists.jboss.org Fri Jun 17 12:57:23 2011 Content-Type: multipart/mixed; boundary="===============6432256198282847796==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11074) FileUpload ontyperejected not working Date: Fri, 17 Jun 2011 12:57:23 -0400 Message-ID: <1674170258.4343.1308329843663.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6432256198282847796== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable FileUpload ontyperejected not working ------------------------------------- Key: RF-11074 URL: https://issues.jboss.org/browse/RF-11074 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Reporter: Jesse Bowes ontyperejected doesn't appear to be working in the 4.0.0.Final Code Snippet: {quote} {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6432256198282847796==-- From jira-events at lists.jboss.org Fri Jun 17 18:26:23 2011 Content-Type: multipart/mixed; boundary="===============3194827195493870812==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11075) filesubmit event not triggered on rich:fileupload Date: Fri, 17 Jun 2011 18:26:23 -0400 Message-ID: <61556300.4765.1308349583639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============3194827195493870812== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable filesubmit event not triggered on rich:fileupload ------------------------------------------------- Key: RF-11075 URL: https://issues.jboss.org/browse/RF-11075 Project: RichFaces Issue Type: Task Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Reporter: Jesse Bowes It appears as through the filesubmit event isn't being triggered by the fil= eUpload component. = doesnt reload the form, = thus pointing at the event never being triggered. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3194827195493870812==-- From jira-events at lists.jboss.org Sat Jun 18 16:55:23 2011 Content-Type: multipart/mixed; boundary="===============9206922881718169974==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11076) Improved build/scripts/checkout.sh Date: Sat, 18 Jun 2011 16:55:23 -0400 Message-ID: <792173847.4948.1308430523614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============9206922881718169974== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Improved build/scripts/checkout.sh ---------------------------------- Key: RF-11076 URL: https://issues.jboss.org/browse/RF-11076 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: build/distribution Affects Versions: 4.1.0.Milestone1 Environment: N/A Reporter: Justin Wyer I've added an -u argument which lets you specify your github username. When= specified it will checkout your forked modules and also automatically set = the upstream remote for each module. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============9206922881718169974==-- From jira-events at lists.jboss.org Sat Jun 18 17:09:23 2011 Content-Type: multipart/mixed; boundary="===============2026550602784469860==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11077) JSTL 1.2 has been removed from maven central. Date: Sat, 18 Jun 2011 17:09:23 -0400 Message-ID: <740330109.4953.1308431363619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2026550602784469860== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable JSTL 1.2 has been removed from maven central. --------------------------------------------- Key: RF-11077 URL: https://issues.jboss.org/browse/RF-11077 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: archetype, build/distribution, component, core, showc= ase Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 Environment: N/A Reporter: Justin Wyer The build is broken when building with a clean local maven repo. Maven cent= ral has removed jstl 1.2 and Oracle has added jstl-api 1.2 and jstl-impl 1.= 2 under different group-Id's https://issues.sonatype.org/browse/MVNCENTRAL-71 http://community.jboss.org/thread/168223?tstart=3D0 -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2026550602784469860==-- From jira-events at lists.jboss.org Sun Jun 19 09:03:23 2011 Content-Type: multipart/mixed; boundary="===============1501794796397132066==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11076) Improved build/scripts/checkout.sh Date: Sun, 19 Jun 2011 09:03:23 -0400 Message-ID: <1681249619.5089.1308488603661.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 792173847.4948.1308430523614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1501794796397132066== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11076?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Justin Wyer updated RF-11076: ----------------------------- Git Pull Request: https://github.com/richfaces/build/pull/2 (was: http= s://github.com/richfaces/build/pull/2) Description: I've added an -u argument which lets you specify your= github username. When username is specified it will checkout your forked m= odules and also automatically set the upstream remote for each module. (wa= s: I've added an -u argument which lets you specify your github username. W= hen specified it will checkout your forked modules and also automatically s= et the upstream remote for each module.) > Improved build/scripts/checkout.sh > ---------------------------------- > > Key: RF-11076 > URL: https://issues.jboss.org/browse/RF-11076 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone1 > Environment: N/A > Reporter: Justin Wyer > Labels: richfaces > > I've added an -u argument which lets you specify your github username. Wh= en username is specified it will checkout your forked modules and also auto= matically set the upstream remote for each module. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1501794796397132066==-- From jira-events at lists.jboss.org Mon Jun 20 12:02:23 2011 Content-Type: multipart/mixed; boundary="===============5111134372652127946==" MIME-Version: 1.0 From: Alessandro Arrigo (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11078) javax.faces.FacesException: Error send image Date: Mon, 20 Jun 2011 12:02:23 -0400 Message-ID: <350489934.6808.1308585743684.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5111134372652127946== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable javax.faces.FacesException: Error send image -------------------------------------------- Key: RF-11078 URL: https://issues.jboss.org/browse/RF-11078 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tree Affects Versions: 3.3.3.Final Environment: firefox , chrome , ie Reporter: Alessandro Arrigo I have this errore when i used ie 7.6 java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 0 at org.ajax4jsf.util.Zipper.unzip(Zipper.java:30) at org.richfaces.renderkit.html.images.TreeImageBase$TreeImageData.(= TreeImageBase.java:109) at org.richfaces.renderkit.html.images.TreeImageBase.getTreeImageData(Tree= ImageBase.java:94) at org.richfaces.renderkit.html.images.TreeLineNodeImage.paint(TreeLineNod= eImage.java:47) at org.ajax4jsf.resource.Java2Dresource.getImage(Java2Dresource.java:116) at org.ajax4jsf.resource.Java2Dresource.send(Java2Dresource.java:89) My code is it: #{unit.descrizioneEstesa= } --------------- END ------------- This error is caused when i click on selectBooleanCheckbox but only when i = used ie 7.6 meanwhile i used ie 8 or another browser this error not appear -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5111134372652127946==-- From jira-events at lists.jboss.org Mon Jun 20 14:26:23 2011 Content-Type: multipart/mixed; boundary="===============6262035295636135029==" MIME-Version: 1.0 From: Edilmar Alves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11079) Increase size of autocomplete Date: Mon, 20 Jun 2011 14:26:23 -0400 Message-ID: <1627657741.7185.1308594383678.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6262035295636135029== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Increase size of autocomplete ----------------------------- Key: RF-11079 URL: https://issues.jboss.org/browse/RF-11079 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Environment: Any OS, browsers Chrome/Firefox Reporter: Edilmar Alves inputClass property allows to increase size of the edit box of autocomplete. popupClass property allows to increase size of the rectangule of list box, = but the list itself is not increased. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6262035295636135029==-- From jira-events at lists.jboss.org Mon Jun 20 14:32:23 2011 Content-Type: multipart/mixed; boundary="===============8065369730328348060==" MIME-Version: 1.0 From: Edilmar Alves (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11080) Create own onblur event to work with autocomplete onblur built in Date: Mon, 20 Jun 2011 14:32:23 -0400 Message-ID: <2008300969.7193.1308594743621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8065369730328348060== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Create own onblur event to work with autocomplete onblur built in ----------------------------------------------------------------- Key: RF-11080 URL: https://issues.jboss.org/browse/RF-11080 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.0.0.Final Environment: Any OS, Browsers Chrome/Firefox Reporter: Edilmar Alves If you create some onblur event, for example, to change the edit box value = of autocomplete to uppercase, the onblur built in event of autocomplete doe= sn't work properly -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8065369730328348060==-- From jira-events at lists.jboss.org Wed Jun 22 04:13:23 2011 Content-Type: multipart/mixed; boundary="===============1479479881882494222==" MIME-Version: 1.0 From: Jordi Claus (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel Date: Wed, 22 Jun 2011 04:13:23 -0400 Message-ID: <289984566.12407.1308730403837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1479479881882494222== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610233#com= ment-12610233 ] = Jordi Claus commented on RF-11056: ---------------------------------- Hi all, We had the same problem with Firefox 4 and it seems that with Firefox 5 it = works fine > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > Fix For: 4.1.0.Final > > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1479479881882494222==-- From jira-events at lists.jboss.org Wed Jun 22 13:47:23 2011 Content-Type: multipart/mixed; boundary="===============6994388057536268437==" MIME-Version: 1.0 From: Jesse Bowes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11075) filesubmit event not triggered on rich:fileupload Date: Wed, 22 Jun 2011 13:47:23 -0400 Message-ID: <1157201541.13997.1308764843634.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 61556300.4765.1308349583639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6994388057536268437== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11075?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jesse Bowes updated RF-11075: ----------------------------- Issue Type: Bug (was: Task) > filesubmit event not triggered on rich:fileupload > ------------------------------------------------- > > Key: RF-11075 > URL: https://issues.jboss.org/browse/RF-11075 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Affects Versions: 4.0.0.Final > Reporter: Jesse Bowes > > It appears as through the filesubmit event isn't being triggered by the f= ileUpload component. = > doesnt reload the form= , thus pointing at the event never being triggered. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6994388057536268437==-- From jira-events at lists.jboss.org Thu Jun 23 05:05:23 2011 Content-Type: multipart/mixed; boundary="===============5793165666887550758==" MIME-Version: 1.0 From: =?utf-8?q?J=C3=A1n_Jamrich_=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] Created: (RF-11081) Dynamically created tabs: tab switch doesn't work with switchType "ajax" or null Date: Thu, 23 Jun 2011 05:05:23 -0400 Message-ID: <112447369.15546.1308819923766.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============5793165666887550758== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Dynamically created tabs: tab switch doesn't work with switchType "ajax" or= null ---------------------------------------------------------------------------= ----- Key: RF-11081 URL: https://issues.jboss.org/browse/RF-11081 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 4.0.0.Final Environment: RichFaces 4.1.0-SNAPSHOT r.22533 Metamer 4.1.0-SNAPSHOT r.22533 Mojarra 2.0.4-b09 Apache Tomcat 7.0.12 Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux Chrome 12.0.718.0 @ Linux i686 Reporter: J=C3=A1n Jamrich With swithType set to "ajax" or not set (null) tab switch doesn't work (tab= don't get switched). With option "server" tab switching works, but another issue influences beha= vior. Its important note that this happens only for dynamically created tabs. (Fo= r statically created tabs works tab switching correctly). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============5793165666887550758==-- From jira-events at lists.jboss.org Thu Jun 23 07:10:23 2011 Content-Type: multipart/mixed; boundary="===============7338037367275829286==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11071) richfaces-bom doesn't point relatively to richfaces-parent Date: Thu, 23 Jun 2011 07:10:23 -0400 Message-ID: <1254579950.15687.1308827423641.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1492763158.990.1308229763972.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7338037367275829286== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11071?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11071. ----------------------------- Resolution: Done > richfaces-bom doesn't point relatively to richfaces-parent > ---------------------------------------------------------- > > Key: RF-11071 > URL: https://issues.jboss.org/browse/RF-11071 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: build/distribution > Affects Versions: 4.1.0.Milestone1 > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7338037367275829286==-- From jira-events at lists.jboss.org Thu Jun 23 11:11:23 2011 Content-Type: multipart/mixed; boundary="===============5732414851975821568==" MIME-Version: 1.0 From: Florentin Lauverjat (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10206) Add WAI-ARIA support to components Date: Thu, 23 Jun 2011 11:11:23 -0400 Message-ID: <1541177698.16531.1308841883802.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 160969468.11688.1294933489635.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5732414851975821568== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10206?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610715#com= ment-12610715 ] = Florentin Lauverjat commented on RF-10206: ------------------------------------------ Hi, Working in the IT department of a bank, we are studying the means to make o= ur applications accessible, the subject of accessibility is becoming a majo= r issue in many ways. Our teams are using mainly rich-based technology for our applications, and = the recommendations from WCAG doesn't seem to work properly on them. WAI-ARIA could be the solution we're expecting. Is there a roadmap of some sort on the WAI-ARIA support for RichFaces ? = Regards. > Add WAI-ARIA support to components > ---------------------------------- > > Key: RF-10206 > URL: https://issues.jboss.org/browse/RF-10206 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: accessibility > Affects Versions: 3.3.3.Final > Reporter: Brent Yarger > Assignee: Nick Belaevski > Labels: WAI-ARIA > Fix For: 4.Future > > > WAI-ARIA support would be a nice feature to have to improve accessibility= of Richfaces. Both keyboard accessibility and screen reader accessibility = could be significantly improved by adding WAI-ARIA support -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5732414851975821568==-- From jira-events at lists.jboss.org Thu Jun 23 11:48:24 2011 Content-Type: multipart/mixed; boundary="===============1007550216364908180==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10206) Add WAI-ARIA support to components Date: Thu, 23 Jun 2011 11:48:24 -0400 Message-ID: <1731201238.16615.1308844104061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 160969468.11688.1294933489635.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1007550216364908180== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10206?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610731#com= ment-12610731 ] = Jay Balunas commented on RF-10206: ---------------------------------- There is no roadmap for this support at this time, however that does not me= an it is not going to be worked on. If you have any suggestions, or specif= ic issues discuss them in the forums, and we'll see what we can do. = Also of coarse if there are patches or improvements you would like to help = with please take a look at our github information in the wiki! > Add WAI-ARIA support to components > ---------------------------------- > > Key: RF-10206 > URL: https://issues.jboss.org/browse/RF-10206 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: accessibility > Affects Versions: 3.3.3.Final > Reporter: Brent Yarger > Assignee: Nick Belaevski > Labels: WAI-ARIA > Fix For: 4.Future > > > WAI-ARIA support would be a nice feature to have to improve accessibility= of Richfaces. Both keyboard accessibility and screen reader accessibility = could be significantly improved by adding WAI-ARIA support -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1007550216364908180==-- From jira-events at lists.jboss.org Fri Jun 24 00:27:24 2011 Content-Type: multipart/mixed; boundary="===============5906451193886949884==" MIME-Version: 1.0 From: Marc-Christian Schroeer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel Date: Fri, 24 Jun 2011 00:27:24 -0400 Message-ID: <716046152.18306.1308889644070.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5906451193886949884== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610869#com= ment-12610869 ] = Marc-Christian Schroeer commented on RF-11056: ---------------------------------------------- I can confirm that the component works fine with Firefox 5, but sadly this = does not solve my problems as most of our clients are a little bit slow or = "cautious" when it comes to updating software and they are still using Fire= fox 3.x or 4 tops. So for the time being we are using Primefaces' calendar = and editor components alongside Richfaces, but in the long run still want t= o eliminate Primefaces from our projects. Anyway, I did some more research and noticed that the switchPopup function = seems to get called twice when the popup button is clicked. Maybe this hint= s at a problem when adding event handlers during the re-render of the dialo= g. > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > Fix For: 4.1.0.Final > > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5906451193886949884==-- From jira-events at lists.jboss.org Fri Jun 24 04:24:24 2011 Content-Type: multipart/mixed; boundary="===============2773693716335033520==" MIME-Version: 1.0 From: choesang tenzin (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-7230) Review the performance related items from RF-1941 for 4.0 Date: Fri, 24 Jun 2011 04:24:24 -0400 Message-ID: <902056113.18774.1308903864313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 12219306.1242999717487.JavaMail.jira@cloud.prod.atl2.jboss.com --===============2773693716335033520== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7230?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610905#comm= ent-12610905 ] = choesang tenzin commented on RF-7230: ------------------------------------- @Nick: Is it even feasible to separate the resources (js/css/imgs) from the= jars, so that versioning and setting expiry headers are possible as Josh s= uggests. Another great advantage of separation would allow the developers to choose = which components to include/exclude. Technically is it even feasible? > Review the performance related items from RF-1941 for 4.0 > --------------------------------------------------------- > > Key: RF-7230 > URL: https://issues.jboss.org/browse/RF-7230 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: core, optimization > Reporter: Nick Belaevski > Assignee: Jay Balunas > Fix For: 4.1.0.Final > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2773693716335033520==-- From jira-events at lists.jboss.org Fri Jun 24 08:05:24 2011 Content-Type: multipart/mixed; boundary="===============1448987658973647904==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel Date: Fri, 24 Jun 2011 08:05:23 -0400 Message-ID: <1903139230.19217.1308917123674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1448987658973647904== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11056?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12610947#com= ment-12610947 ] = Jay Balunas commented on RF-11056: ---------------------------------- We have this planned for 4.1.0 release, and we'll see if there is something= we can do. I'm glad FF5 fixes the issue though. That does make me think = there is a browser issue, but we'll take a look. > rich:calendar not working in popupPanel = > ---------------------------------------- > > Key: RF-11056 > URL: https://issues.jboss.org/browse/RF-11056 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: compatibility, component-input > Affects Versions: 4.0.0.Final > Environment: Tomcat 7.0.12, MyFaces 2.0.4, RichFaces 4.0.0.Final > Reporter: Marc-Christian Schroeer > Fix For: 4.1.0.Final > > > A rich:calendar component within a popupPanel does not work in Firefox 4.= 0.1 as clicking on the popup icon does not popup the calendar. This is not = the case for Chrome, Internet Explorer 9 and Safari browsers. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1448987658973647904==-- From jira-events at lists.jboss.org Fri Jun 24 11:18:24 2011 Content-Type: multipart/mixed; boundary="===============8543222038766021640==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11027) rich:editor component for 4.X Date: Fri, 24 Jun 2011 11:18:24 -0400 Message-ID: <537197276.19568.1308928704097.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8543222038766021640== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11027?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11027: ----------------------------- Priority: Critical (was: Major) > rich:editor component for 4.X > ----------------------------- > > Key: RF-11027 > URL: https://issues.jboss.org/browse/RF-11027 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > Requirements and planning for the 4.X implementation of the rich:editor c= omponent are needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8543222038766021640==-- From jira-events at lists.jboss.org Fri Jun 24 11:45:24 2011 Content-Type: multipart/mixed; boundary="===============0013311498144671871==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11068) Migrate sandbox from SVN to git Date: Fri, 24 Jun 2011 11:45:24 -0400 Message-ID: <790289954.19759.1308930324313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============0013311498144671871== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11068?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11068: ----------------------------- Priority: Major (was: Critical) > Migrate sandbox from SVN to git > ------------------------------- > > Key: RF-11068 > URL: https://issues.jboss.org/browse/RF-11068 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: architectural, build/distribution > Reporter: Jay Balunas > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0013311498144671871==-- From jira-events at lists.jboss.org Fri Jun 24 11:51:23 2011 Content-Type: multipart/mixed; boundary="===============7915037066696611019==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11011) rich:hashParam there is in screen.height instead of window.height in the text description for this component in showcase Date: Fri, 24 Jun 2011 11:51:23 -0400 Message-ID: <464125865.19785.1308930683800.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============7915037066696611019== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11011?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11011: ---------------------------------- Assignee: Brian Leathem > rich:hashParam there is in screen.height instead of window.height in the = text description for this component in showcase > -------------------------------------------------------------------------= ----------------------------------------------- > > Key: RF-11011 > URL: https://issues.jboss.org/browse/RF-11011 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Environment: richfaces-showcase > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.1.0.Milestone1 > > > In the text description of this component, it is said that the top and le= ft values are computed as screen.height / 2 - 150 and screen.width / 2 - 25= 0 respectively. But in the source code these values are computed as window.= height() / 2 - 150 and window.width() / 2 - 250 and these give different va= lues. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7915037066696611019==-- From jira-events at lists.jboss.org Fri Jun 24 11:51:24 2011 Content-Type: multipart/mixed; boundary="===============2484869292558762153==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11010) richfaces-showcase: fix grammatical issues Date: Fri, 24 Jun 2011 11:51:23 -0400 Message-ID: <1035786751.19788.1308930683902.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2484869292558762153== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11010?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-11010: ---------------------------------- Assignee: Brian Leathem > richfaces-showcase: fix grammatical issues > ------------------------------------------ > > Key: RF-11010 > URL: https://issues.jboss.org/browse/RF-11010 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Environment: richfaces-showcase > Reporter: Juraj Huska > Assignee: Brian Leathem > Priority: Trivial > Fix For: 4.1.0.Milestone1 > > > a4j:status - sample: referenced status, there is adress instead of address > a4j:status - sample: status simple, there is succesfully instead of succe= ssfully > a4j:attachQueue - there is button with text label submit but the text abo= ve says that there should be button with label save > a4j:mediaOutput - all names of selects are Color1, but there should be Co= lor1, Color2, Color3 > rich:graphValidator - 1.in my opinion there should be the minimal and max= imal length of password in the text which describes this component, 2. ther= e is typo when passwords are typed correctly in info message, there is succ= esfully instead of successfully. > rich:message - in the text is written click "Validate" button, but there = is "Ajax Validate" button = > rich:messages - same as in rich:message > rich:dataTable - sample: DataTableFiltering - there is a filter for milea= ge, where is filter, which should filter values which are less than filter = value, since there is < sign, but actually the filter works in a way less o= r equal. > rich:poppupPanel - there is coarse instead of course in the text descript= ion for component, in the sample for login panel positioning, in the first = paragraph of text > rich:autocomplete - there is: using tokens ', and ' ', but should be usin= g tokens ',' and ' ' in the text for second input = -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2484869292558762153==-- From jira-events at lists.jboss.org Fri Jun 24 11:53:24 2011 Content-Type: multipart/mixed; boundary="===============8910124906806329420==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10988) richfaces-showcase: bad description at standard skinning page. Date: Fri, 24 Jun 2011 11:53:24 -0400 Message-ID: <1531192301.19802.1308930804186.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 768875902.346.1305399480985.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8910124906806329420== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10988?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-10988: ---------------------------------- Assignee: Brian Leathem > richfaces-showcase: bad description at standard skinning page. > -------------------------------------------------------------- > > Key: RF-10988 > URL: https://issues.jboss.org/browse/RF-10988 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples, showcase > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > 1) there are no levels anymore > 2) parameters not specified so need to browse documentation additionally. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8910124906806329420==-- From jira-events at lists.jboss.org Fri Jun 24 11:53:24 2011 Content-Type: multipart/mixed; boundary="===============1040784515984822266==" MIME-Version: 1.0 From: Brian Leathem (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10985) richfaces-showcase: design and minor content problems Date: Fri, 24 Jun 2011 11:53:24 -0400 Message-ID: <2092476789.19800.1308930804116.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1040784515984822266== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10985?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-10985: ---------------------------------- Assignee: Brian Leathem > richfaces-showcase: design and minor content problems > ----------------------------------------------------- > > Key: RF-10985 > URL: https://issues.jboss.org/browse/RF-10985 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: examples > Affects Versions: 4.0.0.Final > Reporter: Ilya Shaikovsky > Assignee: Brian Leathem > Priority: Critical > Fix For: 4.1.0.Milestone1 > > > 1) need to adjust "new" demos. The only new for now - arrangeable sample.= Having that outdated for so long makes the user thinks that nothing change= s there. > 2) http://50.richfaces-showcase.appspot.com/richfaces/component-sample.js= f?demo=3DdataTable&skin=3DblueSky arrangeable tab get cut. > 3) minor content problem: http://50.richfaces-showcase.appspot.com/richfa= ces/component-sample.jsf?demo=3DmediaOutput&skin=3DblueSky, all the colors = has "Color 1" label. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1040784515984822266==-- From jira-events at lists.jboss.org Fri Jun 24 11:53:24 2011 Content-Type: multipart/mixed; boundary="===============2613538717791200300==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10932) MyFaces: upgrade to 2.0.5 release Date: Fri, 24 Jun 2011 11:53:24 -0400 Message-ID: <2104409952.19797.1308930804032.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 541888875.34949.1303140933284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2613538717791200300== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10932?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-10932: -------------------------------- Assignee: Jay Balunas > MyFaces: upgrade to 2.0.5 release > --------------------------------- > > Key: RF-10932 > URL: https://issues.jboss.org/browse/RF-10932 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) = > Components: third-party > Affects Versions: 4.0.0.Final > Reporter: Nick Belaevski > Assignee: Jay Balunas > Priority: Critical > Fix For: 4.1.0.Milestone1 > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2613538717791200300==-- From jira-events at lists.jboss.org Fri Jun 24 11:55:40 2011 Content-Type: multipart/mixed; boundary="===============1078062862055774389==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10940) Client side validation refers to non existing javascript function Date: Fri, 24 Jun 2011 11:55:39 -0400 Message-ID: <632437297.19824.1308930939942.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 249664467.39211.1303225953186.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1078062862055774389== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10940?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-10940: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Client side validation refers to non existing javascript function > ----------------------------------------------------------------- > > Key: RF-10940 > URL: https://issues.jboss.org/browse/RF-10940 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final > Reporter: Niels Soeffers > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Priority: Critical > Labels: tran > Fix For: 4.1.0.Milestone1 > > > Client Side Javascript functions are called on the component tags (for ex= ample onChange attribute) and defined at the bottom of the rendered page. W= e encountered a case where the function called in the onchange attribute is= not defined at the bottom of the page. > Our domain layer contains two different classes RG and SRG (they do not i= nherit from each other). However they both embed an embeddable class E with= a field "name" > In the GUI we have a page with a single form and two regions. One for add= ing a RG object and one for adding a SRG object. Both regions contain a h:i= nputText for the "name" field. So the first inputText is bound to {{RG.embe= dded.name}} and the second on {{SRG.embedded.name}}. Both inputTexts have a= rich:validator tag as a child component. > When the page is initially rendered both h:inputText have the same javasc= ript function referred to in their onchange attribute (RGName_3Av). = > Which is not wrong because the validation (@NotNull on the "name" field i= n the Embedded class) is the same for both value bindings. It is a little b= it confusing to see a method with a name of RGName_3Av on a component that = is actually bound to SRG and so we would expect the method to call SRGName_= 3Av, but it's certainly not wrong and I even find it a very nice optimizati= on. > However when we click on an a:commandButton in the second region and rere= nder this second region, then suddenly the javascript function in the oncha= nge attribute of the second inputText is changed and the name refers to the= SRG component (SRGName_3Av), but this javascript method is never defined, = because it was optimized when we initially rendered the complete page. > Hope you can reproduce the problem with the above description and fix the= problem or provide a workaround? > Kind Regards, > Niels -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1078062862055774389==-- From jira-events at lists.jboss.org Fri Jun 24 11:55:40 2011 Content-Type: multipart/mixed; boundary="===============0894424575290990848==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Date: Fri, 24 Jun 2011 11:55:40 -0400 Message-ID: <292886794.19828.1308930940066.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0894424575290990848== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11054?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11054: -------------------------------- Assignee: Jay Balunas > Dynamically created tabs within tabPanel causes NPE in getActiveItem() > ---------------------------------------------------------------------- > > Key: RF-11054 > URL: https://issues.jboss.org/browse/RF-11054 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: base functionality , component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: RichFaces 4.1.0-SNAPSHOT r.22526 > Metamer r.22526 > Mojarra 2.0.4-b09 > Apache Tomcat 7.0.12 > Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux > Chrome 12.0.718.0 @ Linux i686 > Reporter: J=C3=A1n Jamrich > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" ev= erything works correctly, with "ajax" tab switch not work as well as with "= null"), all dynamically created tabs causes NPE on tab switch. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0894424575290990848==-- From jira-events at lists.jboss.org Fri Jun 24 11:59:23 2011 Content-Type: multipart/mixed; boundary="===============1454656144075544056==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10948) component select: instable behaviour in conjunction with a standard jsf-tag ajax (event selectitem, probably more) Date: Fri, 24 Jun 2011 11:59:23 -0400 Message-ID: <1618311893.19838.1308931163793.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 687930473.1426.1303407018320.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1454656144075544056== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10948?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-10948: -------------------------------- Assignee: Jay Balunas > component select: instable behaviour in conjunction with a standard jsf-t= ag ajax (event selectitem, probably more) > -------------------------------------------------------------------------= ----------------------------------------- > > Key: RF-10948 > URL: https://issues.jboss.org/browse/RF-10948 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Environment: Webcontainer: Tomcat 6 > JSF 2.0 implementation: mojarra 2.0.4-b9 > Richfaces 4 Final > Reporter: Sergej Becker > Assignee: Jay Balunas > Fix For: 4.1.0.Milestone1 > > > The durable usage of the sample below can reproduce an inconsistent behav= ior of the component 'select' in conjunction with a standard jsf-tag 'ajax': > on event 'selectitem' (it probably effects more events) the ajax-request = doesn't work consistent. Occurs sporadically! It usually affects the first = selected value. > > > > > > > > > > > > > > > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1454656144075544056==-- From jira-events at lists.jboss.org Fri Jun 24 14:20:23 2011 Content-Type: multipart/mixed; boundary="===============1284271742325045561==" MIME-Version: 1.0 From: Joshua Brookes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11082) rich:graphValidator doesn't work with iterable object graph field inside nested composite components Date: Fri, 24 Jun 2011 14:20:23 -0400 Message-ID: <1091658838.20166.1308939623664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1284271742325045561== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:graphValidator doesn't work with iterable object graph field inside ne= sted composite components ---------------------------------------------------------------------------= ------------------------- Key: RF-11082 URL: https://issues.jboss.org/browse/RF-11082 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-validators Affects Versions: 4.0.0.Final Reporter: Joshua Brookes There is a known issue with Graph Validator where it can only resolve a clo= ned object itself, but not variables derived from it ( uidata variables, c:= set, alias etc ). If you need to validate variables in the iterator, a loop= variable is needed to explicitly reference fields. This workaround does no= t work when used in nested composite components. Validation will not use the values input into the form when the bug occurs.= This only happens when a class-level constraint exists on the class used i= nt he iterable field. This JIRA is for the latter issue, but an issue should also be created for = the original variant of the problem. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1284271742325045561==-- From jira-events at lists.jboss.org Fri Jun 24 14:24:23 2011 Content-Type: multipart/mixed; boundary="===============3429201002611463739==" MIME-Version: 1.0 From: Joshua Brookes (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11082) rich:graphValidator doesn't work with iterable object graph field inside nested composite components Date: Fri, 24 Jun 2011 14:24:23 -0400 Message-ID: <980223143.20173.1308939863729.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1091658838.20166.1308939623664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3429201002611463739== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11082?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Joshua Brookes updated RF-11082: -------------------------------- Attachment: example.zip Contains domain classes with constraints, Managed Bean, facelet and composi= te components. To run drop these into a functional JSF 2/RichFaces 4 projec= t that supports CDI for managed bean scanning (like SpringBeanFacesELResolv= er) or modify the managed bean appropriately. > rich:graphValidator doesn't work with iterable object graph field inside = nested composite components > -------------------------------------------------------------------------= --------------------------- > > Key: RF-11082 > URL: https://issues.jboss.org/browse/RF-11082 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final > Reporter: Joshua Brookes > Labels: composite_component, graphValidator, validation, val= idator > Attachments: example.zip > > > There is a known issue with Graph Validator where it can only resolve a c= loned object itself, but not variables derived from it ( uidata variables, = c:set, alias etc ). If you need to validate variables in the iterator, a lo= op variable is needed to explicitly reference fields. This workaround does = not work when used in nested composite components. > Validation will not use the values input into the form when the bug occur= s. This only happens when a class-level constraint exists on the class used= int he iterable field. > This JIRA is for the latter issue, but an issue should also be created fo= r the original variant of the problem. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3429201002611463739==-- From jira-events at lists.jboss.org Fri Jun 24 14:24:24 2011 Content-Type: multipart/mixed; boundary="===============5191627317810349408==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11082) rich:graphValidator doesn't work with iterable object graph field inside nested composite components Date: Fri, 24 Jun 2011 14:24:23 -0400 Message-ID: <1884669200.20177.1308939863840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1091658838.20166.1308939623664.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5191627317810349408== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11082?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-11082: -------------------------------------- Forum Reference: http://community.jboss.org/message/611091#611091, http= ://community.jboss.org/message/611091 (was: http://community.jboss.org/mes= sage/611091) > rich:graphValidator doesn't work with iterable object graph field inside = nested composite components > -------------------------------------------------------------------------= --------------------------- > > Key: RF-11082 > URL: https://issues.jboss.org/browse/RF-11082 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-validators > Affects Versions: 4.0.0.Final > Reporter: Joshua Brookes > Labels: composite_component, graphValidator, validation, val= idator > Attachments: example.zip > > > There is a known issue with Graph Validator where it can only resolve a c= loned object itself, but not variables derived from it ( uidata variables, = c:set, alias etc ). If you need to validate variables in the iterator, a lo= op variable is needed to explicitly reference fields. This workaround does = not work when used in nested composite components. > Validation will not use the values input into the form when the bug occur= s. This only happens when a class-level constraint exists on the class used= int he iterable field. > This JIRA is for the latter issue, but an issue should also be created fo= r the original variant of the problem. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5191627317810349408==-- From jira-events at lists.jboss.org Fri Jun 24 16:47:23 2011 Content-Type: multipart/mixed; boundary="===============8035959925579015955==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11083) collapsibleSubTable nesting bug Date: Fri, 24 Jun 2011 16:47:23 -0400 Message-ID: <1951654380.20302.1308948443613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============8035959925579015955== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable collapsibleSubTable nesting bug ------------------------------- Key: RF-11083 URL: https://issues.jboss.org/browse/RF-11083 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.0.0.Final Reporter: Val Blant When I attempt to nest __ s, I get an error at = the top of my page that says: {quote} This page contains the following errors: error on line 202 at column 74: Opening and ending tag mismatch: tbody line= 0 and tr Below is a rendering of the page up to the first error. {quote} The page is rendered up to the nested __. I think I found the problem in the code. = The reason the first level of nesting works, is b/c the rendering is done b= y _DataTableRenderer_, which has the following code: {code:java} boolean isSubtable =3D (child instanceof AbstractCollap= sibleSubTable); // new row -> close if (rowHolder.getProcessCell() !=3D 0) { encodeRowEnd(writer); = if (isSubtable) { encodeTableBodyEnd(writer); tbodyStart =3D false; = if (partialUpdate) { partialEnd(facesContext); } } } {code} Now, the 2nd level of nesting will be handled by _CollapsibleSubTableRender= er_, which must do similar processing: {code:java} else if (component instanceof AbstractCollapsibleSubTable) { if(component.isRendered()) { encodeRowEnd(writer); } = component.encodeAll(facesContext); rowHolder.setRowStart(true); } {code} Note that the 2nd snippet neglects to close the __ tag, so the error= : {quote}error on line 202 at column 74: Opening and ending tag mismatch: tbo= dy line 0 and tr{quote} makes sense now. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8035959925579015955==-- From jira-events at lists.jboss.org Fri Jun 24 21:08:23 2011 Content-Type: multipart/mixed; boundary="===============6770610971392800886==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11083) collapsibleSubTable nesting bug Date: Fri, 24 Jun 2011 21:08:23 -0400 Message-ID: <1339736385.20582.1308964103803.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1951654380.20302.1308948443613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============6770610971392800886== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11083?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12611061#com= ment-12611061 ] = Val Blant commented on RF-11083: -------------------------------- I've tried to create a workaround, but it turned out to be not so easy. It = looks like __ was never written to make nesting= possible, even though RF3 __ could be nested. = Is my conclusion correct? Is RF4 really limited to single level table nesti= ng? > collapsibleSubTable nesting bug > ------------------------------- > > Key: RF-11083 > URL: https://issues.jboss.org/browse/RF-11083 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Val Blant > > When I attempt to nest __ s, I get an error a= t the top of my page that says: > {quote} > This page contains the following errors: > error on line 202 at column 74: Opening and ending tag mismatch: tbody li= ne 0 and tr > Below is a rendering of the page up to the first error. > {quote} > The page is rendered up to the nested __. > I think I found the problem in the code. = > The reason the first level of nesting works, is b/c the rendering is done= by _DataTableRenderer_, which has the following code: > {code:java} > boolean isSubtable =3D (child instanceof AbstractColl= apsibleSubTable); > // new row -> close > if (rowHolder.getProcessCell() !=3D 0) { > encodeRowEnd(writer); > = > if (isSubtable) { > encodeTableBodyEnd(writer); > tbodyStart =3D false; > = > if (partialUpdate) { > partialEnd(facesContext); > } > } > } > {code} > Now, the 2nd level of nesting will be handled by _CollapsibleSubTableRend= erer_, which must do similar processing: > {code:java} > else if (component instanceof AbstractCollapsibleSubTable= ) { > if(component.isRendered()) { > encodeRowEnd(writer); > } > = > component.encodeAll(facesContext); > rowHolder.setRowStart(true); > } > {code} > Note that the 2nd snippet neglects to close the __ tag, so the err= or : > {quote}error on line 202 at column 74: Opening and ending tag mismatch: t= body line 0 and tr{quote} > makes sense now. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6770610971392800886==-- From jira-events at lists.jboss.org Mon Jun 27 04:00:24 2011 Content-Type: multipart/mixed; boundary="===============0413672617775534137==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Mon, 27 Jun 2011 04:00:24 -0400 Message-ID: <649937963.21444.1309161624142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0413672617775534137== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-10887: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: richfaces > Fix For: 4.1.0.Milestone1 > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0413672617775534137==-- From jira-events at lists.jboss.org Mon Jun 27 04:00:24 2011 Content-Type: multipart/mixed; boundary="===============0631365911011541122==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Mon, 27 Jun 2011 04:00:24 -0400 Message-ID: <694907288.21448.1309161624306.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0631365911011541122== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-10887: ---------------------------- Fix Version/s: 4.1.0.Milestone1 (was: 4.1.0.Final) Git Pull Request: https://github.com/richfaces/components/pull/5 (was:= https://github.com/richfaces/components/pull/5) > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: richfaces > Fix For: 4.1.0.Milestone1 > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0631365911011541122==-- From jira-events at lists.jboss.org Mon Jun 27 04:02:31 2011 Content-Type: multipart/mixed; boundary="===============8218781099968152848==" MIME-Version: 1.0 From: SBS JIRA Integration (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Mon, 27 Jun 2011 04:02:24 -0400 Message-ID: <547241406.21452.1309161744155.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8218781099968152848== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-10887: -------------------------------------- Git Pull Request: https://github.com/richfaces/components/pull/5 (was:= https://github.com/richfaces/components/pull/5) Forum Reference: http://community.jboss.org/message/610918#610918 > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: richfaces > Fix For: 4.1.0.Milestone1 > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============8218781099968152848==-- From jira-events at lists.jboss.org Mon Jun 27 05:29:23 2011 Content-Type: multipart/mixed; boundary="===============2965335037838203970==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11084) Push - add client-side API for disabling, enabling a4j:push Date: Mon, 27 Jun 2011 05:29:23 -0400 Message-ID: <276630497.21733.1309166963661.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2965335037838203970== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Push - add client-side API for disabling, enabling a4j:push ----------------------------------------------------------- Key: RF-11084 URL: https://issues.jboss.org/browse/RF-11084 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: base functionality , component-a4j-core Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2965335037838203970==-- From jira-events at lists.jboss.org Mon Jun 27 05:31:23 2011 Content-Type: multipart/mixed; boundary="===============1523127541658569318==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11085) Push - add server-side API for disabling, enabling a4j:push Date: Mon, 27 Jun 2011 05:31:23 -0400 Message-ID: <784257864.21735.1309167083640.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============1523127541658569318== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Push - add server-side API for disabling, enabling a4j:push ----------------------------------------------------------- Key: RF-11085 URL: https://issues.jboss.org/browse/RF-11085 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============1523127541658569318==-- From jira-events at lists.jboss.org Mon Jun 27 05:31:23 2011 Content-Type: multipart/mixed; boundary="===============0102788141726458125==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Deleted: (RF-11086) Push - add server-side API for disabling, enabling a4j:push Date: Mon, 27 Jun 2011 05:31:23 -0400 Message-ID: <2116569540.21738.1309167083845.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1335839455.21736.1309167083697.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0102788141726458125== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11086?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D deleted RF-11086: ---------------------------- > Push - add server-side API for disabling, enabling a4j:push > ----------------------------------------------------------- > > Key: RF-11086 > URL: https://issues.jboss.org/browse/RF-11086 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) = > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0102788141726458125==-- From jira-events at lists.jboss.org Mon Jun 27 05:31:23 2011 Content-Type: multipart/mixed; boundary="===============2104425477103470723==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11086) Push - add server-side API for disabling, enabling a4j:push Date: Mon, 27 Jun 2011 05:31:23 -0400 Message-ID: <1335839455.21736.1309167083697.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2104425477103470723== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Push - add server-side API for disabling, enabling a4j:push ----------------------------------------------------------- Key: RF-11086 URL: https://issues.jboss.org/browse/RF-11086 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 4.0.0.Final Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2104425477103470723==-- From jira-events at lists.jboss.org Tue Jun 28 03:22:23 2011 Content-Type: multipart/mixed; boundary="===============4785661728412594967==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11087) rich:select add onlistpopup / onlisthide events Date: Tue, 28 Jun 2011 03:22:23 -0400 Message-ID: <1369302809.24170.1309245743667.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============4785661728412594967== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:select add onlistpopup / onlisthide events ----------------------------------------------- Key: RF-11087 URL: https://issues.jboss.org/browse/RF-11087 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.0.0.Final, 4.1.0.Milestone1 Environment: N/A Reporter: Justin Wyer This is an enhancement to add onlistpopup / onlisthide events to rich:selec= t these are more semantical, and remove the need for using onclick etc to t= ry and perform custom client side code when the list is displayed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============4785661728412594967==-- From jira-events at lists.jboss.org Tue Jun 28 03:22:23 2011 Content-Type: multipart/mixed; boundary="===============0595558544956153149==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11087) rich:select add onlistpopup / onlisthide events Date: Tue, 28 Jun 2011 03:22:23 -0400 Message-ID: <531815691.24173.1309245743756.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1369302809.24170.1309245743667.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0595558544956153149== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11087?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12611433#com= ment-12611433 ] = Justin Wyer commented on RF-11087: ---------------------------------- Please assign this to me. > rich:select add onlistpopup / onlisthide events > ----------------------------------------------- > > Key: RF-11087 > URL: https://issues.jboss.org/browse/RF-11087 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final, 4.1.0.Milestone1 > Environment: N/A > Reporter: Justin Wyer > Labels: rich:select > > This is an enhancement to add onlistpopup / onlisthide events to rich:sel= ect these are more semantical, and remove the need for using onclick etc to= try and perform custom client side code when the list is displayed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0595558544956153149==-- From jira-events at lists.jboss.org Tue Jun 28 03:27:23 2011 Content-Type: multipart/mixed; boundary="===============2706600828210095124==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Tue, 28 Jun 2011 03:27:23 -0400 Message-ID: <2012979835.24177.1309246043698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============2706600828210095124== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:select modify manualInput behavior to avoid single item scoped item li= st 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-input Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 Reporter: Justin Wyer rich:select has usability issues when using enableManualInput=3D"true" this= 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 value. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2706600828210095124==-- From jira-events at lists.jboss.org Tue Jun 28 03:27:23 2011 Content-Type: multipart/mixed; boundary="===============1469582280140276995==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Tue, 28 Jun 2011 03:27:23 -0400 Message-ID: <741249303.24179.1309246043750.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2012979835.24177.1309246043698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============1469582280140276995== 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=3D12611434#com= ment-12611434 ] = Justin Wyer commented on RF-11088: ---------------------------------- Please assign this to me. > 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-input > Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Justin Wyer > Labels: rich:select > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1469582280140276995==-- From jira-events at lists.jboss.org Tue Jun 28 06:23:25 2011 Content-Type: multipart/mixed; boundary="===============7605336790946463841==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7351) Regression: "messages: globalOnly does not work properly" Date: Tue, 28 Jun 2011 06:23:24 -0400 Message-ID: <314756554.24534.1309256604918.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7605336790946463841== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-7351?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-7351: --------------------------------- Assignee: J=C3=A1n Jamrich (was: Pavol Pitonak) > Regression: "messages: globalOnly does not work properly" > --------------------------------------------------------- > > Key: RF-7351 > URL: https://issues.jboss.org/browse/RF-7351 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component, regression > Affects Versions: 3.3.1, 4.0.0.Final > Environment: Windows / JBoss 4.2.2.GA / Seam 2.1.1.GA / RichFaces= 3.3.1.GA > Reporter: Joseph Miller > Assignee: J=C3=A1n Jamrich > Fix For: 4.1.0.Final > > Attachments: example-globalOnly-bug.zip, example-globalOnly-bug.z= ip, Screen shot 2011-04-22 at 16.22.11.png, Screen shot 2011-04-27 at 08.51= .26.png, Screen shot 2011-04-27 at 08.52.49.png > > Time Spent: 4 hours > Remaining Estimate: 0 minutes > > Looks like a regression of RF-615... I've upgraded my Seam project to sue= RF 3.3.1, in order to fix a number of other bugs, but now messages intende= d for a single UI component (via the for=3D ) are appearing in the global m= essages list at the top of my page. > My page template has: > > ... > > and the controls have: > > ... > > I can switch the rich:messages to h:messages, and it behaves as it should= . Also reverting back to the RichFaces 3.2.2.SR1 jars makes the problem go = away, but I get the other older bugs back :( -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============7605336790946463841==-- From jira-events at lists.jboss.org Tue Jun 28 08:52:23 2011 Content-Type: multipart/mixed; boundary="===============7671906783871646800==" MIME-Version: 1.0 From: Jay Balunas (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11088) rich:select modify manualInput behavior to avoid single item scoped item list popup when editing value Date: Tue, 28 Jun 2011 08:52:23 -0400 Message-ID: <1977752990.24789.1309265543651.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2012979835.24177.1309246043698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7671906783871646800== 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.p= lugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11088: -------------------------------- Assignee: Justin Wyer > 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-input > Affects Versions: 4.0.0.Final, 4.0.1.Milestone1, 4.1.0.Milestone1 > Reporter: Justin Wyer > Assignee: Justin Wyer > Labels: rich:select > > 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. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7671906783871646800==-- From jira-events at lists.jboss.org Tue Jun 28 09:19:23 2011 Content-Type: multipart/mixed; boundary="===============3864571035694255608==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11087) rich:select add onlistpopup / onlisthide events Date: Tue, 28 Jun 2011 09:19:23 -0400 Message-ID: <1863675617.24902.1309267163654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1369302809.24170.1309245743667.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============3864571035694255608== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11087?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Justin Wyer reassigned RF-11087: -------------------------------- Assignee: Justin Wyer > rich:select add onlistpopup / onlisthide events > ----------------------------------------------- > > Key: RF-11087 > URL: https://issues.jboss.org/browse/RF-11087 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final, 4.1.0.Milestone1 > Environment: N/A > Reporter: Justin Wyer > Assignee: Justin Wyer > Labels: rich:select > > This is an enhancement to add onlistpopup / onlisthide events to rich:sel= ect these are more semantical, and remove the need for using onclick etc to= try and perform custom client side code when the list is displayed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3864571035694255608==-- From jira-events at lists.jboss.org Tue Jun 28 09:21:24 2011 Content-Type: multipart/mixed; boundary="===============4577024121901076267==" MIME-Version: 1.0 From: Justin Wyer (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Tue, 28 Jun 2011 09:21:24 -0400 Message-ID: <1324049310.24912.1309267284104.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4577024121901076267== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Justin Wyer reassigned RF-10887: -------------------------------- Assignee: Justin Wyer (was: Luk=C3=A1=C5=A1 Fry=C4=8D) > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Assignee: Justin Wyer > Labels: richfaces > Fix For: 4.1.0.Milestone1 > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4577024121901076267==-- From jira-events at lists.jboss.org Tue Jun 28 11:09:23 2011 Content-Type: multipart/mixed; boundary="===============6800061387309282064==" MIME-Version: 1.0 From: Pavol Pitonak (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11089) Tooltip: attribute value ignored Date: Tue, 28 Jun 2011 11:09:23 -0400 Message-ID: <1022611930.25308.1309273763690.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6800061387309282064== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Tooltip: attribute value ignored -------------------------------- Key: RF-11089 URL: https://issues.jboss.org/browse/RF-11089 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-output Affects Versions: 4.0.0.Final Environment: RichFaces 4.1.0-SNAPSHOT r.unknown Metamer 4.1.0-SNAPSHOT r.22533 Mojarra 2.1.0-FCS GlassFish Server Open Source Edition 3.1 Java(TM) SE Runtime Environment 1.6.0_24-b07 @ Linux Chrome 12.0.742.100 @ Linux i686 Reporter: Pavol Pitonak The attribute value of the tooltip doesn't work (first sample), nested text= works fine (second sample). According to RF-11002 the attribute value is a= valid attribute. {code:xml} {code} {code:xml} tooltip content {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6800061387309282064==-- From jira-events at lists.jboss.org Tue Jun 28 17:05:23 2011 Content-Type: multipart/mixed; boundary="===============8021745965925513295==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11083) collapsibleSubTable nesting bug Date: Tue, 28 Jun 2011 17:05:23 -0400 Message-ID: <1621720289.26222.1309295123620.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1951654380.20302.1308948443613.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============8021745965925513295== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11083?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Val Blant closed RF-11083. -------------------------- Resolution: Incomplete Description The bug is still there, but my analysis of the problem was incorrect. Now t= hat I understand the code a bit better, I can see that my problem statement= was incorrect. I'll open another issue when I find the actual bug. > collapsibleSubTable nesting bug > ------------------------------- > > Key: RF-11083 > URL: https://issues.jboss.org/browse/RF-11083 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Val Blant > > When I attempt to nest __ s, I get an error a= t the top of my page that says: > {quote} > This page contains the following errors: > error on line 202 at column 74: Opening and ending tag mismatch: tbody li= ne 0 and tr > Below is a rendering of the page up to the first error. > {quote} > The page is rendered up to the nested __. > I think I found the problem in the code. = > The reason the first level of nesting works, is b/c the rendering is done= by _DataTableRenderer_, which has the following code: > {code:java} > boolean isSubtable =3D (child instanceof AbstractColl= apsibleSubTable); > // new row -> close > if (rowHolder.getProcessCell() !=3D 0) { > encodeRowEnd(writer); > = > if (isSubtable) { > encodeTableBodyEnd(writer); > tbodyStart =3D false; > = > if (partialUpdate) { > partialEnd(facesContext); > } > } > } > {code} > Now, the 2nd level of nesting will be handled by _CollapsibleSubTableRend= erer_, which must do similar processing: > {code:java} > else if (component instanceof AbstractCollapsibleSubTable= ) { > if(component.isRendered()) { > encodeRowEnd(writer); > } > = > component.encodeAll(facesContext); > rowHolder.setRowStart(true); > } > {code} > Note that the 2nd snippet neglects to close the __ tag, so the err= or : > {quote}error on line 202 at column 74: Opening and ending tag mismatch: t= body line 0 and tr{quote} > makes sense now. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8021745965925513295==-- From jira-events at lists.jboss.org Wed Jun 29 05:12:23 2011 Content-Type: multipart/mixed; boundary="===============0865275048348068136==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11043) Collect requirements on Editor component in community Date: Wed, 29 Jun 2011 05:12:23 -0400 Message-ID: <166082308.27188.1309338743736.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1033119338.5830.1307361479654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0865275048348068136== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11043?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11043: ---------------------------- Forum Reference: http://community.jboss.org/message/610315#610315 > Collect requirements on Editor component in community > ----------------------------------------------------- > > Key: RF-11043 > URL: https://issues.jboss.org/browse/RF-11043 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Search through forums and collect requirements. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============0865275048348068136==-- From jira-events at lists.jboss.org Wed Jun 29 05:12:23 2011 Content-Type: multipart/mixed; boundary="===============2017190107792727521==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11043) Collect requirements on Editor component in community Date: Wed, 29 Jun 2011 05:12:23 -0400 Message-ID: <1927257526.27189.1309338743758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1033119338.5830.1307361479654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2017190107792727521== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11043?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12611710#com= ment-12611710 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11043: --------------------------------- Requirements gathering discussion posted: http://community.jboss.org/message/610315#610315 > Collect requirements on Editor component in community > ----------------------------------------------------- > > Key: RF-11043 > URL: https://issues.jboss.org/browse/RF-11043 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Search through forums and collect requirements. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2017190107792727521==-- From jira-events at lists.jboss.org Wed Jun 29 05:14:23 2011 Content-Type: multipart/mixed; boundary="===============4799892421431630808==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11044) Look for Editor implementations which suits requirements Date: Wed, 29 Jun 2011 05:14:23 -0400 Message-ID: <1802014499.27194.1309338863697.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============4799892421431630808== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D updated RF-11044: ---------------------------- Implementations listed on http://community.jboss.org/message/610303#610303 > Look for Editor implementations which suits requirements > -------------------------------------------------------- > > Key: RF-11044 > URL: https://issues.jboss.org/browse/RF-11044 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-rich-= text-editors -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============4799892421431630808==-- From jira-events at lists.jboss.org Wed Jun 29 05:14:23 2011 Content-Type: multipart/mixed; boundary="===============2450147166706174039==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11043) Collect requirements on Editor component in community Date: Wed, 29 Jun 2011 05:14:23 -0400 Message-ID: <236643768.27201.1309338863906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1033119338.5830.1307361479654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2450147166706174039== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11043?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12611714#com= ment-12611714 ] = Luk=C3=A1=C5=A1 Fry=C4=8D commented on RF-11043: --------------------------------- Summarize requirements collected from issues for 3.x and user/dev spaces. > Collect requirements on Editor component in community > ----------------------------------------------------- > > Key: RF-11043 > URL: https://issues.jboss.org/browse/RF-11043 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > Search through forums and collect requirements. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2450147166706174039==-- From jira-events at lists.jboss.org Wed Jun 29 05:14:24 2011 Content-Type: multipart/mixed; boundary="===============2572532700669462443==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11044) Look for Editor implementations which suits requirements Date: Wed, 29 Jun 2011 05:14:23 -0400 Message-ID: <141804997.27202.1309338863927.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2572532700669462443== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11044?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D resolved RF-11044. ----------------------------- Resolution: Done > Look for Editor implementations which suits requirements > -------------------------------------------------------- > > Key: RF-11044 > URL: https://issues.jboss.org/browse/RF-11044 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) = > Components: component-input > Reporter: Luk=C3=A1=C5=A1 Fry=C4=8D > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Fix For: 4.1.0.Milestone1 > > > http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-rich-= text-editors -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2572532700669462443==-- From jira-events at lists.jboss.org Wed Jun 29 05:16:24 2011 Content-Type: multipart/mixed; boundary="===============5476467425047457590==" MIME-Version: 1.0 From: Stephane Daviet (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9127) rich:messages produce content outside tags on AJAX refresh Date: Wed, 29 Jun 2011 05:16:24 -0400 Message-ID: <1269306500.27214.1309338984429.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2014498564.18109.1282639153243.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============5476467425047457590== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9127?page=3Dcom.atlassian.jira.plu= gin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12611716#comm= ent-12611716 ] = Stephane Daviet commented on RF-9127: ------------------------------------- After furter testing, I can confirm that the problem was linked with a spec= ific version of Firebug installed as a global extension on Firefox. Not a R= ichfaces bug then. > rich:messages produce content outside tags on AJAX refresh > ----------------------------------------------------------------- > > Key: RF-9127 > URL: https://issues.jboss.org/browse/RF-9127 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Firefox 3.6.6 and IE7 on Windows Vista and XP > Suspected not being platform specific > Reporter: Stephane Daviet > Priority: Minor > Labels: rich_messages > > When refreshing after the response of an AJAX request, the rich:messages = component produce unexpected content before the opening tag. > The combination of rich:messages with another component on the page trigg= ering AJAX request (rich:ajaxValidator for instance) could produce this beh= avior. > Each new request response add a new line before the first opening = tag. > This behavior is reproductible on rich:messages page of the Live Demo and= has also been reproduced on a simple custom page. > Unexpected content spotted with Firebug: >

>
>
>
-- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5476467425047457590==-- From jira-events at lists.jboss.org Wed Jun 29 05:18:23 2011 Content-Type: multipart/mixed; boundary="===============7348786056933694582==" MIME-Version: 1.0 From: Stephane Daviet (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-9127) rich:messages produce content outside tags on AJAX refresh Date: Wed, 29 Jun 2011 05:18:23 -0400 Message-ID: <1759788882.27219.1309339103682.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 2014498564.18109.1282639153243.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============7348786056933694582== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-9127?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:all-tabpanel ] Stephane Daviet closed RF-9127. ------------------------------- Clearly not a RichFaces bug. > rich:messages produce content outside tags on AJAX refresh > ----------------------------------------------------------------- > > Key: RF-9127 > URL: https://issues.jboss.org/browse/RF-9127 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: component > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Firefox 3.6.6 and IE7 on Windows Vista and XP > Suspected not being platform specific > Reporter: Stephane Daviet > Priority: Minor > Labels: rich_messages > > When refreshing after the response of an AJAX request, the rich:messages = component produce unexpected content before the opening tag. > The combination of rich:messages with another component on the page trigg= ering AJAX request (rich:ajaxValidator for instance) could produce this beh= avior. > Each new request response add a new line before the first opening = tag. > This behavior is reproductible on rich:messages page of the Live Demo and= has also been reproduced on a simple custom page. > Unexpected content spotted with Firebug: >
>
>
>
-- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7348786056933694582==-- From jira-events at lists.jboss.org Wed Jun 29 19:21:23 2011 Content-Type: multipart/mixed; boundary="===============6562265797503334742==" MIME-Version: 1.0 From: Val Blant (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11090) rich:collapsibleSubTable cannot be nested Date: Wed, 29 Jun 2011 19:21:23 -0400 Message-ID: <901013159.28809.1309389683809.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6562265797503334742== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable rich:collapsibleSubTable cannot be nested ----------------------------------------- Key: RF-11090 URL: https://issues.jboss.org/browse/RF-11090 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-tables Affects Versions: 4.0.0.Final Reporter: Val Blant When __ s are nested, the following error occur= s: {quote} This page contains the following errors: error on line 202 at column 74: Opening and ending tag mismatch: tbody line= 0 and tr Below is a rendering of the page up to the first error. {quote} The page is rendered up to the nested __. This error happens b/c nested sub tables render an extra __ element af= ter the nested subtable row. I was able to work around the problem by making a small tweak to _Collapsib= leSubTableRenderer_. The lines I added or changes are marked with *"// fix = line"* comment. {code:title=3DFixedCollapsibleSubTableRenderer.java|borderStyle=3Dsolid} /** * Allows nested subTables to be rendered properly */ @ResourceDependencies({ @ResourceDependency(name =3D "jquery.js"), @ResourceDependency(name =3D "richfaces.js"), @ResourceDependency(library=3D"org.richfaces", name =3D "collapsible-su= btable.ecss"), @ResourceDependency(library=3D"org.richfaces", name =3D "collapsible-su= btable.js") }) public class FixedCollapsibleSubTableRenderer extends CollapsibleSubTableRe= nderer { = @Override public void encodeRow(ResponseWriter writer, FacesContext facesContext, Ro= wHolderBase holder) throws IOException { RowHolder rowHolder =3D (RowHolder)holder; Row row =3D rowHolder.getRow(); putRowStylesIntoContext(facesContext, rowHolder); = rowHolder.setRowStart(true); Iterator components =3D row.columns(); if (rowHolder.isUpdatePartial()) { partialStart(facesContext,((AbstractCollapsibleSubTable) row).g= etRelativeClientId(facesContext) + ":b"); } = int columnNumber =3D 0; boolean isSubtable =3D false; // fix line while (components.hasNext()) { UIComponent component =3D components.next(); if(component.isRendered()) { if(component instanceof UIColumn ) { component.getAttributes().put(COLUMN_CLASS, getColumnCl= ass(rowHolder, columnNumber)); encodeColumn(facesContext, writer, (UIColumn)component = , rowHolder); columnNumber++; } else if (component instanceof AbstractCollapsibleSubTable= ) { if(component.isRendered()) { isSubtable =3D true; // fix line encodeRowEnd(writer); } = if ( ((AbstractCollapsibleSubTable) component).isExpand= ed() ) { component.encodeAll(facesContext); } rowHolder.setRowStart(true); } } = } if ( !isSubtable) encodeRowEnd(writer); // fix line if (rowHolder.isUpdatePartial()) { partialEnd(facesContext); } } } {code} This renderer needs to be registered in _faces-config.xml_: {code} org.richfaces.Data org.richfaces.CollapsibleSubTableRenderer bla.FixedCollapsibleSubTableRenderer {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6562265797503334742==-- From jira-events at lists.jboss.org Thu Jun 30 04:46:24 2011 Content-Type: multipart/mixed; boundary="===============2906189513943838332==" MIME-Version: 1.0 From: =?utf-8?q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29_=3Cjira-events_at_lists=2E?= =?utf-8?q?jboss=2Eorg=3E?= To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. Date: Thu, 30 Jun 2011 04:46:24 -0400 Message-ID: <618713244.29279.1309423584602.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2906189513943838332== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-10887?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Luk=C3=A1=C5=A1 Fry=C4=8D reassigned RF-10887: ------------------------------- Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D (was: Justin Wyer) > rich:select setValue(value) javascript api does not allow setting an empt= y value. > -------------------------------------------------------------------------= -------- > > Key: RF-10887 > URL: https://issues.jboss.org/browse/RF-10887 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) = > Components: component-input > Affects Versions: 4.0.0.Final > Reporter: Justin Wyer > Assignee: Luk=C3=A1=C5=A1 Fry=C4=8D > Labels: richfaces > Fix For: 4.1.0.Milestone1 > > > You can only set the value of the list to a valid entry in the list, been= able to clear the value of the list would be useful. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira = --===============2906189513943838332==-- From jira-events at lists.jboss.org Thu Jun 30 10:14:23 2011 Content-Type: multipart/mixed; boundary="===============2052946464344070611==" MIME-Version: 1.0 From: Viliam Rockai (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11091) Autocomplete component is wrongly aligned Date: Thu, 30 Jun 2011 10:14:23 -0400 Message-ID: <1508281054.30002.1309443263890.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 108255604.29996.1309443263695.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============2052946464344070611== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11091?page=3Dcom.atlassian.jira.p= lugin.system.issuetabpanels:all-tabpanel ] Viliam Rockai updated RF-11091: ------------------------------- Attachment: autocomplete.png > Autocomplete component is wrongly aligned > ----------------------------------------- > > Key: RF-11091 > URL: https://issues.jboss.org/browse/RF-11091 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Viliam Rockai > Attachments: autocomplete.png > > > Autocomplete component is wrongly aligned (tested in chrome). See the att= achment picture as an example. The input created by autocomplete has smalle= r height then input component and it is under the writing-line rule. That c= auses forms using autocomplete to look scattered. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2052946464344070611==-- From jira-events at lists.jboss.org Thu Jun 30 10:14:23 2011 Content-Type: multipart/mixed; boundary="===============6842179470217696172==" MIME-Version: 1.0 From: Viliam Rockai (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11091) Autocomplete component is wrongly aligned Date: Thu, 30 Jun 2011 10:14:23 -0400 Message-ID: <108255604.29996.1309443263695.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> --===============6842179470217696172== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Autocomplete component is wrongly aligned ----------------------------------------- Key: RF-11091 URL: https://issues.jboss.org/browse/RF-11091 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Reporter: Viliam Rockai Attachments: autocomplete.png Autocomplete component is wrongly aligned (tested in chrome). See the attac= hment picture as an example. The input created by autocomplete has smaller = height then input component and it is under the writing-line rule. That cau= ses forms using autocomplete to look scattered. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============6842179470217696172==-- From jira-events at lists.jboss.org Thu Jun 30 10:55:24 2011 Content-Type: multipart/mixed; boundary="===============0252379505494002667==" MIME-Version: 1.0 From: Viliam Rockai (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11091) Autocomplete component is wrongly aligned Date: Thu, 30 Jun 2011 10:55:24 -0400 Message-ID: <1645679987.30130.1309445724070.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 108255604.29996.1309443263695.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com --===============0252379505494002667== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://issues.jboss.org/browse/RF-11091?page=3Dcom.atlassian.jira.pl= ugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D12612026#com= ment-12612026 ] = Viliam Rockai commented on RF-11091: ------------------------------------ code used to generate the attachment picture: autocomplete: input: > Autocomplete component is wrongly aligned > ----------------------------------------- > > Key: RF-11091 > URL: https://issues.jboss.org/browse/RF-11091 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Reporter: Viliam Rockai > Attachments: autocomplete.png > > > Autocomplete component is wrongly aligned (tested in chrome). See the att= achment picture as an example. The input created by autocomplete has smalle= r height then input component and it is under the writing-line rule. That c= auses forms using autocomplete to look scattered. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0252379505494002667==--