From jira-events at lists.jboss.org Wed Jun 1 00:06:00 2011 From: jira-events at lists.jboss.org (umanath muthuvel (JIRA)) Date: Wed, 1 Jun 2011 00:06:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11028) Dynamic extendDataTable not support ajax support Message-ID: <1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 row 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 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 action... 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 From jira-events at lists.jboss.org Wed Jun 1 01:02:01 2011 From: jira-events at lists.jboss.org (umanath muthuvel (JIRA)) Date: Wed, 1 Jun 2011 01:02:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11028) Dynamic extendDataTable not support ajax support In-Reply-To: <1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1529492554.38948.1306904521988.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11028?page=com.atlassian.jira.plugin.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 row 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 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 action... 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, TableAttributes tableAttributes) { System.out.println("-------- createTable -----------"); HtmlExtendedDataTable extendedDataTable = new HtmlExtendedDataTable(); extendedDataTable.setId(tableAttributes.getId()); String binding = "${" + beanName + "." + tableAttributes.getValue() + "}"; System.out.println("Tabel Value = "+binding); ValueExpression valExp = getExpressionFactory() .createValueExpression(getELContext(), binding, List.class); extendedDataTable.setWidth("100"); extendedDataTable.setValueExpression("value", valExp); extendedDataTable.setVar(tableAttributes.getVar()); extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENANCE_TABLE_SEL_MODE); extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_TABLE_SORT_MODE); for(ColumnAttributes columnAttributes : tableAttributes.getColumnAttributesList()) { System.out.println(" column "+columnAttributes.getHeader()); if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { HtmlOutputText headerComponent = new HtmlOutputText(); headerComponent.setValue(columnAttributes.getHeader()); HtmlColumn htmlColumn = new HtmlColumn(); htmlColumn.setHeader(headerComponent); // Column ID is Must while creating dynamically, To avoid null pointer Exception. // Based on id value to set the Column Index internally. htmlColumn.setId(columnAttributes.getValue()); binding = "#{" + tableAttributes.getVar()+ "." + columnAttributes.getValue() + "}"; System.out.println("Column Value = "+binding); valExp = getExpressionFactory() .createValueExpression(getELContext(), binding, String.class); HtmlOutputText outputText = new HtmlOutputText(); outputText.setValueExpression("value", valExp); htmlColumn.getChildren().add(outputText); extendedDataTable.getChildren().add(htmlColumn); System.out.println(" column added "); } else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { System.out.println(" Inside : "+ HtmlAjaxSupport.COMPONENT_TYPE ); HtmlAjaxSupport ajaxSupport = new HtmlAjaxSupport(); ajaxSupport.setId("static_ajax_id"); binding = "#{" + beanName + "." +columnAttributes.getAction() + "}"; System.out.println(" Method binding: "+binding); MethodExpression methodBind = getExpressionFactory().createMethodExpression(getELContext(), binding, null, new Class[] {}); ajaxSupport.setActionExpression(methodBind); // MethodBinding action = FacesContext.getCurrentInstance().getApplication() // .createMethodBinding(binding, new Class[0]); // ajaxSupport.setAction(action); // System.out.println("Ajax Action :" +ajaxSupport.getAction().getExpressionString()); System.out.println("Ajax Action1 :" +ajaxSupport.getActionExpression().getExpressionString()); ajaxSupport.setEvent(columnAttributes.getEvent()); System.out.println("Ajax event :" +ajaxSupport.getEvent()); extendedDataTable.getChildren().add(ajaxSupport); } } 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 row 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 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 action... 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 columns 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 action... this time it firing the corresponding method. > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j" > xmlns:hex="http://hexaware.com/custom"> > > > > > > > > > > > > > > ------------------------------------------------------------------------------------------- > And attached Static xhtml Page > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j" > xmlns:hex="http://hexaware.com/custom"> > > > > > > > > var="category" > sortMode="single" > value="#{upmBranchMaintenanceBean.resultBranchListVO}" > > > > > > > > > > > > > > > > action="#{upmBranchMaintenanceBean.takeSelection}" /> > > > > > > ---------------------------------------------------------------------------------------- > And for your reference i attached Dynamic table creation Source code here > private static HtmlExtendedDataTable createTable(String beanName, TableAttributes tableAttributes) { > System.out.println("-------- createTable -----------"); > HtmlExtendedDataTable extendedDataTable = new HtmlExtendedDataTable(); > extendedDataTable.setId(tableAttributes.getId()); > String binding = "${" + beanName + "." + tableAttributes.getValue() + "}"; > System.out.println("Tabel Value = "+binding); > ValueExpression valExp = getExpressionFactory() > .createValueExpression(getELContext(), binding, List.class); > extendedDataTable.setWidth("100"); > extendedDataTable.setValueExpression("value", valExp); > extendedDataTable.setVar(tableAttributes.getVar()); > extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENANCE_TABLE_SEL_MODE); > extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_TABLE_SORT_MODE); > > for(ColumnAttributes columnAttributes : tableAttributes.getColumnAttributesList()) { > System.out.println(" column "+columnAttributes.getHeader()); > if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { > HtmlOutputText headerComponent = new HtmlOutputText(); > headerComponent.setValue(columnAttributes.getHeader()); > > HtmlColumn htmlColumn = new HtmlColumn(); > htmlColumn.setHeader(headerComponent); > > // Column ID is Must while creating dynamically, To avoid null pointer Exception. > // Based on id value to set the Column Index internally. > htmlColumn.setId(columnAttributes.getValue()); > > binding = "#{" + tableAttributes.getVar()+ "." + columnAttributes.getValue() + "}"; > > System.out.println("Column Value = "+binding); > valExp = getExpressionFactory() > .createValueExpression(getELContext(), binding, String.class); > > HtmlOutputText outputText = new HtmlOutputText(); > outputText.setValueExpression("value", valExp); > htmlColumn.getChildren().add(outputText); > > extendedDataTable.getChildren().add(htmlColumn); > System.out.println(" column added "); > > > } > else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { > System.out.println(" Inside : "+ HtmlAjaxSupport.COMPONENT_TYPE ); > HtmlAjaxSupport ajaxSupport = new HtmlAjaxSupport(); > > ajaxSupport.setId("static_ajax_id"); > > binding = "#{" + beanName + "." +columnAttributes.getAction() + "}"; > System.out.println(" Method binding: "+binding); > > MethodExpression methodBind = getExpressionFactory().createMethodExpression(getELContext(), binding, null, new Class[] {}); > ajaxSupport.setActionExpression(methodBind); > > // MethodBinding action = FacesContext.getCurrentInstance().getApplication() > // .createMethodBinding(binding, new Class[0]); > // ajaxSupport.setAction(action); > // > System.out.println("Ajax Action :" +ajaxSupport.getAction().getExpressionString()); > System.out.println("Ajax Action1 :" +ajaxSupport.getActionExpression().getExpressionString()); > ajaxSupport.setEvent(columnAttributes.getEvent()); > System.out.println("Ajax event :" +ajaxSupport.getEvent()); > extendedDataTable.getChildren().add(ajaxSupport); > } > } > 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 From jira-events at lists.jboss.org Wed Jun 1 03:50:01 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 1 Jun 2011 03:50:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11019) Refine formatting and checkstyle rules for Java In-Reply-To: <1252038883.34567.1306757821135.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1280770516.39288.1306914601829.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11019?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605695#comment-12605695 ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Wed Jun 1 04:16:01 2011 From: jira-events at lists.jboss.org (Pieter Van Nuffel (JIRA)) Date: Wed, 1 Jun 2011 04:16:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-1282) Mouse wheel scrolling support for scrollableDataTable In-Reply-To: <10193026.1194004679340.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <868413201.39353.1306916161707.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605704#comment-12605704 ] Pieter Van Nuffel commented on RF-1282: --------------------------------------- I encountered this issue and created a workaround using the jQuery mousewheel 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 = jQuery('div[id = j_id197:resultTable:bc]'); var scrollPanel = jQuery('div[id = j_id197:resultTable:scb]'); jQuery(innerPanel).bind('mousewheel', function(event, delta) { var shift = delta * 30; var current = 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 From jira-events at lists.jboss.org Wed Jun 1 06:38:00 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 1 Jun 2011 06:38:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11021) rich:select atribute selectFirst doesn't work In-Reply-To: <866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <431973645.39636.1306924680945.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11021?page=com.atlassian.jira.plugin.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 behaved in RichFaces 3. However, the description of the component might be changed 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 From jira-events at lists.jboss.org Wed Jun 1 07:40:01 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Wed, 1 Jun 2011 07:40:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work In-Reply-To: <866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1230982418.39708.1306928401034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11021?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605746#comment-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 debate 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 From jira-events at lists.jboss.org Wed Jun 1 07:46:01 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Wed, 1 Jun 2011 07:46:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7281) New component: rich:notify In-Reply-To: <10225796.1243572296530.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <388936063.39721.1306928761229.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7281?page=com.atlassian.jira.plugin.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 if 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 rich:messages) and client side with a javascript base API. This would make it 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 From jira-events at lists.jboss.org Wed Jun 1 08:13:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 1 Jun 2011 08:13:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11020) Define and verify CSS, JavaScript and XHTML formatting rules In-Reply-To: <825171959.34580.1306757941353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1164665573.39785.1306930380959.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11020?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605752#comment-12605752 ] Luk?? Fry? 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 has 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Wed Jun 1 09:27:01 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Wed, 1 Jun 2011 09:27:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11027) rich:editor component for 4.X Message-ID: <267311709.39999.1306934821047.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11027?page=com.atlassian.jira.plugin.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 component are needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Wed Jun 1 10:58:01 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Wed, 1 Jun 2011 10:58:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11027) rich:editor component for 4.X Message-ID: <841738292.40374.1306940281281.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-11027: -------------------------------- Assignee: Luk?? Fry? > 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?? Fry? > Fix For: 4.1.0.Milestone1 > > > Requirements and planning for the 4.X implementation of the rich:editor component are needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Wed Jun 1 19:51:00 2011 From: jira-events at lists.jboss.org (Ara Minosian (JIRA)) Date: Wed, 1 Jun 2011 19:51:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work In-Reply-To: <866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1957821769.41313.1306972260974.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11021?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605925#comment-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 From jira-events at lists.jboss.org Thu Jun 2 05:51:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 2 Jun 2011 05:51:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11020) Define and verify CSS, JavaScript and XHTML formatting rules In-Reply-To: <825171959.34580.1306757941353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1445867442.42181.1307008260977.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11020?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Thu Jun 2 05:51:01 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 2 Jun 2011 05:51:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11019) Refine formatting and checkstyle rules for Java In-Reply-To: <1252038883.34567.1306757821135.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1431891234.42182.1307008261009.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11019?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Thu Jun 2 08:48:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Thu, 2 Jun 2011 08:48:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing Message-ID: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? 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 was 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 From jira-events at lists.jboss.org Thu Jun 2 12:28:01 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Thu, 2 Jun 2011 12:28:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11030) rich:inplaceSelect suggestions disappear when move scroller (in Chrome) Message-ID: <15317003.1129.1307032081203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?n Jamrich When move scroller by mouse in rich:inplaceSelect without confirmation button (immediate selection) in Chrome browser, whole pop-up with selects disappear. But scroller works corectly in Forefox. I made some test changes in ShowCase - added more options into first inplaceSelect -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 2 15:00:59 2011 From: jira-events at lists.jboss.org (Paul Knox (JIRA)) Date: Thu, 2 Jun 2011 15:00:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11031) autosized attribute does not work in IE7 Message-ID: <599797221.1325.1307041259297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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=false 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='true' height='' width='' for all browsers except IE7 (which works, for some reason the height and width attributes are ignored) For IE7 I set autosized='false' height='670' width='400' which renders 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 From jira-events at lists.jboss.org Thu Jun 2 23:15:59 2011 From: jira-events at lists.jboss.org (Jesse Bowes (JIRA)) Date: Thu, 2 Jun 2011 23:15:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11032) fileUpload Upload button not shown in Firefox 2.0 Message-ID: <369988934.2247.1307070959595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 possible. I am able to add a file to the upload component, but the "upload" button 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 From jira-events at lists.jboss.org Thu Jun 2 23:47:59 2011 From: jira-events at lists.jboss.org (Jesse Bowes (JIRA)) Date: Thu, 2 Jun 2011 23:47:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE Message-ID: <861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 associated with the file that was uploaded is the full path to the file (e.g. c:\path\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 From jira-events at lists.jboss.org Fri Jun 3 04:57:59 2011 From: jira-events at lists.jboss.org (Dmitry Volkov (JIRA)) Date: Fri, 3 Jun 2011 04:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel In-Reply-To: <1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <717962619.2656.1307091479525.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10980?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606231#comment-12606231 ] Dmitry Volkov commented on RF-10980: ------------------------------------ Hi Pavol, sorry, I forgot to mention that popup panel must be modal. I have reproduced 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, therefore 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 From jira-events at lists.jboss.org Fri Jun 3 05:27:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 3 Jun 2011 05:27:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1802702041.2746.1307093279317.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606240#comment-12606240 ] Luk?? Fry? 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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Fri Jun 3 05:29:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 3 Jun 2011 05:29:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <405575051.2748.1307093399354.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606241#comment-12606241 ] Luk?? Fry? 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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Fri Jun 3 05:52:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 3 Jun 2011 05:52:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1863593430.2763.1307094779416.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606244#comment-12606244 ] Luk?? Fry? 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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Fri Jun 3 07:26:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 3 Jun 2011 07:26:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel In-Reply-To: <1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1779446464.2956.1307100419772.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10980?page=com.atlassian.jira.plugin.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, therefore 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 From jira-events at lists.jboss.org Fri Jun 3 07:56:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 3 Jun 2011 07:56:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1890080907.3159.1307102219646.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606287#comment-12606287 ] Luk?? Fry? 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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Fri Jun 3 08:32:59 2011 From: jira-events at lists.jboss.org (Juraj Huska (JIRA)) Date: Fri, 3 Jun 2011 08:32:59 -0400 (EDT) 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 Message-ID: <581255339.3290.1307104379350.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> richfaces-showcase-4.1.0-SNAPSHOT-jee6.war contains org.hibernate.ejb.HibernatePersistence 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?? Fry? Fix For: 4.1.0.Milestone1 richfaces-showcase-4.1.0-SNAPSHOT-jee6.war from https://repository.jboss.org/nexus/content/groups/public/org/richfaces/examples/richfaces-showcase/4.1.0-SNAPSHOT/ does contain org.hibernate.ejb.HibernatePersistence which cause error in deployment -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 3 09:07:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Fri, 3 Jun 2011 09:07:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox Message-ID: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?n Jamrich When validation performed on input of type h:selectManyCheckbox (bound to property 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 validator implementation is called. But submited items from h:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 3 09:08:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Fri, 3 Jun 2011 09:08:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox In-Reply-To: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1434999662.3528.1307106539486.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] J?n 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?n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to property 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 validator implementation is called. But submited items from h:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 3 09:08:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Fri, 3 Jun 2011 09:08:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox In-Reply-To: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <688152367.3535.1307106539710.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606317#comment-12606317 ] J?n Jamrich commented on RF-11035: ---------------------------------- Exception get with MyFaces: javax.faces.FacesException: javax.validation.ValidationException: Unexpected exception during isValid call at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(ExceptionHandlerImpl.java:241) at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(ExceptionHandlerImpl.java:156) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:191) at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.richfaces.webapp.PushFilter.doFilter(PushFilter.java:130) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:164) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:462) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:562) 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:250) 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(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:619) Caused by: javax.validation.ValidationException: Unexpected exception during isValid call at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(ConstraintTree.java:156) at org.hibernate.validator.engine.ConstraintTree.validateConstraints(ConstraintTree.java:140) at org.hibernate.validator.metadata.MetaConstraint.validateConstraint(MetaConstraint.java:121) at org.hibernate.validator.engine.ValidatorImpl.validateValueForGroup(ValidatorImpl.java:648) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImpl.java:584) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImpl.java:146) at javax.faces.validator.BeanValidator.validate(BeanValidator.java:183) at javax.faces.component._ComponentUtils.callValidators(_ComponentUtils.java: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.java: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(ProcessValidationsExecutor.java:34) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java: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.isValid(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?n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to property 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 validator implementation is called. But submited items from h:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 3 09:08:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Fri, 3 Jun 2011 09:08:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox In-Reply-To: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <286056970.3544.1307106539925.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] J?n Jamrich updated RF-11035: ----------------------------- Comment: was deleted (was: Exception get with MyFaces: javax.faces.FacesException: javax.validation.ValidationException: Unexpected exception during isValid call at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.wrap(ExceptionHandlerImpl.java:241) at org.apache.myfaces.shared_impl.context.ExceptionHandlerImpl.handle(ExceptionHandlerImpl.java:156) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:191) at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:189) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.richfaces.webapp.PushFilter.doFilter(PushFilter.java:130) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:164) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:462) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:100) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:562) 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:250) 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(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:619) Caused by: javax.validation.ValidationException: Unexpected exception during isValid call at org.hibernate.validator.engine.ConstraintTree.validateSingleConstraint(ConstraintTree.java:156) at org.hibernate.validator.engine.ConstraintTree.validateConstraints(ConstraintTree.java:140) at org.hibernate.validator.metadata.MetaConstraint.validateConstraint(MetaConstraint.java:121) at org.hibernate.validator.engine.ValidatorImpl.validateValueForGroup(ValidatorImpl.java:648) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImpl.java:584) at org.hibernate.validator.engine.ValidatorImpl.validateValue(ValidatorImpl.java:146) at javax.faces.validator.BeanValidator.validate(BeanValidator.java:183) at javax.faces.component._ComponentUtils.callValidators(_ComponentUtils.java: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.java: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(ProcessValidationsExecutor.java:34) at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java: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.isValid(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?n Jamrich > > When validation performed on input of type h:selectManyCheckbox (bound to property 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 validator implementation is called. But submited items from h:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 3 09:12:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Fri, 3 Jun 2011 09:12:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox In-Reply-To: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1165370327.3589.1307106779587.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] J?n 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?n 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 appear. 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:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 3 10:08:59 2011 From: jira-events at lists.jboss.org (Jesse Bowes (JIRA)) Date: Fri, 3 Jun 2011 10:08:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE In-Reply-To: <861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1965688371.3814.1307110139514.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606363#comment-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 workaround. > 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 associated with the file that was uploaded is the full path to the file (e.g. c:\path\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 From jira-events at lists.jboss.org Fri Jun 3 10:09:00 2011 From: jira-events at lists.jboss.org (Jesse Bowes (JIRA)) Date: Fri, 3 Jun 2011 10:09:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE In-Reply-To: <861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1737385608.3829.1307110140078.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11033?page=com.atlassian.jira.plugin.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 associated with the file that was uploaded is the full path to the file (e.g. c:\path\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 From jira-events at lists.jboss.org Fri Jun 3 10:09:00 2011 From: jira-events at lists.jboss.org (Jesse Bowes (JIRA)) Date: Fri, 3 Jun 2011 10:09:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11033) fileUpload UploadedFile.getName contains full path information on IE In-Reply-To: <861282583.2311.1307072879293.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1999203333.3831.1307110140118.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11033?page=com.atlassian.jira.plugin.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 associated with the file that was uploaded is the full path to the file (e.g. c:\path\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 From jira-events at lists.jboss.org Fri Jun 3 16:33:59 2011 From: jira-events at lists.jboss.org (Gleb Galkin (JIRA)) Date: Fri, 3 Jun 2011 16:33:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7134) provide facets for rich:suggestionBox In-Reply-To: <5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <844520454.4545.1307133239512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7134?page=com.atlassian.jira.plugin.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 to fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbox, which triggers a action to fetch the next 50 rows and update my suggestionbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a footer-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/ComboBoxStartsWith -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 3 16:43:59 2011 From: jira-events at lists.jboss.org (Gleb Galkin (JIRA)) Date: Fri, 3 Jun 2011 16:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7134) provide facets for rich:suggestionBox In-Reply-To: <5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <1668720865.4571.1307133839618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7134?page=com.atlassian.jira.plugin.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 to fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbox, which triggers a action to fetch the next 50 rows and update my suggestionbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a footer-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/ComboBoxStartsWith -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 3 16:43:59 2011 From: jira-events at lists.jboss.org (Gleb Galkin (JIRA)) Date: Fri, 3 Jun 2011 16:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-7134) provide facets for rich:suggestionBox In-Reply-To: <5795369.1242231526394.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <117220031.4574.1307133839682.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7134?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606436#comment-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 to fetch at most 50 rows. > So I need something like a scroller or a paginator within my suggestionbox, which triggers a action to fetch the next 50 rows and update my suggestionbox with these new fetched rows. > I tried to integrate a a4j:commandLink within my suggestionbox as a footer-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/ComboBoxStartsWith -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Sun Jun 5 12:57:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 12:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. Message-ID: <271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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-showcase > >> [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions) @ 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-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 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 From jira-events at lists.jboss.org Sun Jun 5 13:45:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 13:45:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. In-Reply-To: <271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1593421590.5014.1307295959502.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11036?page=com.atlassian.jira.plugin.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 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-showcase > > >> > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions) @ > 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-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 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 From jira-events at lists.jboss.org Sun Jun 5 13:45:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 13:45:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-11036) richfaces-showcase: can't build in trunk checkstyle failed. In-Reply-To: <271645853.5010.1307293079387.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2065374324.5018.1307295959629.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11036?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606487#comment-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 working. 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-showcase > > >> > [INFO] > [INFO] --- maven-enforcer-plugin:1.0-beta-1:enforce (enforce-plugin-versions) @ > 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-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 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 From jira-events at lists.jboss.org Sun Jun 5 13:50:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 13:50:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11037) richfaces-showcase: new demos Message-ID: <1560828782.5020.1307296259290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Sun Jun 5 15:28:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 15:28:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11038) extendedTable: sorting sample Message-ID: <721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Sun Jun 5 15:28:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 15:28:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11039) extendedTable: sorting sample Message-ID: <1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Sun Jun 5 15:30:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 15:30:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11039) extendedTable: filtering sample In-Reply-To: <1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <447074659.5032.1307302259414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11039?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Sun Jun 5 16:57:59 2011 From: jira-events at lists.jboss.org (Karol Bryd (JIRA)) Date: Sun, 5 Jun 2011 16:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome Message-ID: <1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 code 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 From jira-events at lists.jboss.org Sun Jun 5 17:17:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 17:17:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11041) extendedTable: ajax loading sample Message-ID: <1837462659.5046.1307308679305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Sun Jun 5 20:51:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Sun, 5 Jun 2011 20:51:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11042) autocomplete: custom layouts sample Message-ID: <369138524.5078.1307321519313.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Mon Jun 6 07:39:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 07:39:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2135118332.5801.1307360399326.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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/pull/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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Mon Jun 6 07:57:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 07:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11043) Collect requirements on Editor component in community Message-ID: <1033119338.5830.1307361479654.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 07:59:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 07:59:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11044) Look for Editor implementations which suites requirements Message-ID: <1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 08:00:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:00:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11044) Look for Editor implementations which suits requirements In-Reply-To: <1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1108836922.5870.1307361600373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11044?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 08:01:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11045) Showcase: tabs with samples are trimmed Message-ID: <1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 08:01:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11045) Showcase: tabs with samples are trimmed In-Reply-To: <1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2033063827.5882.1307361719569.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11045?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Mon Jun 6 08:01:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:01:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11046) Involve community in choosing right implementation Message-ID: <379244875.5883.1307361719604.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 08:04:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:04:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11047) Mock-up the Editor component Message-ID: <994498981.5891.1307361899374.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 08:04:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:04:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11048) Write QUnit tests for editor component Message-ID: <1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Mon Jun 6 08:06:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:06:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11048) Write QUnit tests for editor component In-Reply-To: <1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <903135293.5904.1307362019413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11048?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Mon Jun 6 08:06:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:06:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11049) Write server side unit tests for Editor Message-ID: <412025226.5915.1307362019967.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 08:07:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:07:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11048) Write QUnit tests for editor component In-Reply-To: <1264988606.5901.1307361899743.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1104764864.5916.1307362020025.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11048?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Mon Jun 6 08:10:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:10:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11050) Editor: add component to QE environment Message-ID: <186438996.5929.1307362259299.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Mon Jun 6 08:12:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 08:12:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11044) Look for Editor implementations which suits requirements In-Reply-To: <1950989088.5841.1307361599451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1303845705.5931.1307362379326.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11044?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11044: ---------------------------- Description: http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-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?? Fry? > Assignee: Luk?? Fry? > 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 From jira-events at lists.jboss.org Mon Jun 6 08:33:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 08:33:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11051) a4j.version does not work Message-ID: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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., version 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 From jira-events at lists.jboss.org Mon Jun 6 09:42:00 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 09:42:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11052) Module components cannot be build with Maven 3 Message-ID: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 shaded 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:10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points 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-SNAPSHOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-components-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-components-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, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Mon Jun 6 10:16:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 6 Jun 2011 10:16:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11029) Merge 4.0.X <--> master/4.1.0 branch to make sure no changes are missing In-Reply-To: <378096052.312.1307018939383.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <299471305.6223.1307369760355.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11029?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606600#comment-12606600 ] Luk?? Fry? 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?? Fry? > 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 was 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 From jira-events at lists.jboss.org Mon Jun 6 11:32:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 11:32:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11053) Showcase: layout broken in data grid sample Message-ID: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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=dataGrid 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 From jira-events at lists.jboss.org Mon Jun 6 11:32:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 6 Jun 2011 11:32:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11053) Showcase: layout broken in data grid sample In-Reply-To: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1143779968.6537.1307374379731.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11053?page=com.atlassian.jira.plugin.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-sample.jsf?demo=dataGrid > 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 From jira-events at lists.jboss.org Mon Jun 6 17:47:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Mon, 6 Jun 2011 17:47:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() Message-ID: <1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?n Jamrich When set switchType on TabPanel to "server" (notice that with "client" everything 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 From jira-events at lists.jboss.org Mon Jun 6 17:49:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?J=C3=A1n_Jamrich_=28JIRA=29?=) Date: Mon, 6 Jun 2011 17:49:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() In-Reply-To: <1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <648858504.7335.1307396999385.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11054?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] J?n Jamrich updated RF-11054: ----------------------------- Attachment: exception-on-tab-switch Attached stack-trace with exception which appears when switch dynamically created tab with switchType="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?n Jamrich > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" everything 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 From jira-events at lists.jboss.org Tue Jun 7 10:57:59 2011 From: jira-events at lists.jboss.org (Balazs Zsoldos (JIRA)) Date: Tue, 7 Jun 2011 10:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11055) Make fileupload portlet enabled Message-ID: <1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 HttpServletRequest and HttpServletResponse and HttpSession that make it impossible 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 From jira-events at lists.jboss.org Wed Jun 8 03:19:59 2011 From: jira-events at lists.jboss.org (Marc-Christian Schroeer (JIRA)) Date: Wed, 8 Jun 2011 03:19:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11056) rich:calendar not working in popupPanel Message-ID: <529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Wed Jun 8 10:04:59 2011 From: jira-events at lists.jboss.org (Karol Bryd (JIRA)) Date: Wed, 8 Jun 2011 10:04:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome In-Reply-To: <1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2097798227.12108.1307541899442.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11040?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karol Bryd updated RF-11040: ---------------------------- Steps to Reproduce: The complete test case (together with precompiled 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 available 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 code 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 From jira-events at lists.jboss.org Wed Jun 8 21:35:59 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Wed, 8 Jun 2011 21:35:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11057) rf-showcase: simplify dataTable styling code Message-ID: <1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 From jira-events at lists.jboss.org Thu Jun 9 04:19:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 9 Jun 2011 04:19:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11058) rich:popupPanel typo in sample Message-ID: <1502640688.14170.1307607599853.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11058?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > 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 From jira-events at lists.jboss.org Thu Jun 9 04:21:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 9 Jun 2011 04:21:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11058) rich:popupPanel typo in sample Message-ID: <1532278544.14174.1307607719404.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11058?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11058: ---------------------------- Description: There is additional space in sample which causes that sample 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?? Fry? > Fix For: 4.1.0.Milestone1 > > > There is additional space in sample which causes that sample will not work for user. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 04:33:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 9 Jun 2011 04:33:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11058) rich:popupPanel typo in sample Message-ID: <2118819134.14199.1307608439337.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11058?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? 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?? Fry? > Priority: Trivial > Fix For: 4.1.0.Milestone1 > > > There is additional space in sample which causes that sample will not work for user. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 09:15:00 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Thu, 9 Jun 2011 09:15:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-8125) Tables: built-in sorting/filtering In-Reply-To: <1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <1716872428.15128.1307625300305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8125?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607469#comment-12607469 ] Jay Balunas commented on RF-8125: --------------------------------- This is a related blog post about table sorting with RichFaces 4.0 for reference - http://www.etahan.com/?p=65 > 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 From jira-events at lists.jboss.org Thu Jun 9 09:16:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Thu, 9 Jun 2011 09:16:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8125) Tables: built-in sorting/filtering In-Reply-To: <1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <482783934.15140.1307625419621.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8125?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Thu Jun 9 11:33:00 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 11:33:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1817764995.15918.1307633580011.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607550#comment-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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 11:40:59 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 11:40:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <272436557.15991.1307634059859.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607558#comment-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 = req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: "+idsSpan); if(idsSpan != null){ // For a portal case, replace content in the current window only. var namespace = options.parameters['org.ajax4jsf.portlet.NAMESPACE']; --- 1041,1047 ---- } // Replace client-side hidden inputs for JSF View state. var idsSpan = req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: ");//+idsSpan); if(idsSpan != null){ // For a portal case, replace content in the current window only. var namespace = options.parameters['org.ajax4jsf.portlet.NAMESPACE']; > 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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 11:44:59 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 11:44:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <758148499.16012.1307634299895.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607560#comment-12607560 ] Paul Reeves commented on RF-9485: --------------------------------- 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, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 12:03:00 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 12:03:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1701997412.16086.1307635380698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 12:07:00 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 12:07:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <133436832.16108.1307635620134.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607558#comment-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 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 = req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: "+idsSpan); if(idsSpan != null){ // For a portal case, replace content in the current window only. var namespace = options.parameters['org.ajax4jsf.portlet.NAMESPACE']; --- 1041,1047 ---- } // Replace client-side hidden inputs for JSF View state. var idsSpan = req.getElementById("ajax-view-state"); ! LOG.debug("Hidden JSF state fields: ");//+idsSpan); if(idsSpan != null){ // For a portal case, replace content in the current window only. var namespace = options.parameters['org.ajax4jsf.portlet.NAMESPACE']; > 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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 12:07:00 2011 From: jira-events at lists.jboss.org (Paul Reeves (JIRA)) Date: Thu, 9 Jun 2011 12:07:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Issue Comment Edited: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1941587772.16110.1307635620363.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607560#comment-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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Thu Jun 9 12:18:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 9 Jun 2011 12:18:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11059) Implement Editor component Message-ID: <1538936113.16165.1307636339437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Assignee: Luk?? Fry? 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 From jira-events at lists.jboss.org Thu Jun 9 14:15:00 2011 From: jira-events at lists.jboss.org (Balazs Zsoldos (JIRA)) Date: Thu, 9 Jun 2011 14:15:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11055) Make fileupload portlet enabled In-Reply-To: <1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <445668297.16397.1307643300223.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11055?page=com.atlassian.jira.plugin.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 playing 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 that I will upload today to the jira of portletbridge) There is only one portlet specific solution here: When the inputStream is asked if the request is not a httpServletRequest the code uses reflection and 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 impossible 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 From jira-events at lists.jboss.org Thu Jun 9 15:11:59 2011 From: jira-events at lists.jboss.org (Karol Bryd (JIRA)) Date: Thu, 9 Jun 2011 15:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11040) rich:extendedDataTable row selection does not work in Firefox and Chrome In-Reply-To: <1374311275.5043.1307307479327.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1162085068.16449.1307646719449.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11040?page=com.atlassian.jira.plugin.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 code 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 From jira-events at lists.jboss.org Thu Jun 9 15:58:59 2011 From: jira-events at lists.jboss.org (Tom Giberius (JIRA)) Date: Thu, 9 Jun 2011 15:58:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page Message-ID: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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 record 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 "thinks" 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 and the onselectionchange of the master should fire so that details of master record 3 can be shown. If you would have go back to record one of the master 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 From jira-events at lists.jboss.org Fri Jun 10 05:14:00 2011 From: jira-events at lists.jboss.org (Marc-Christian Schroeer (JIRA)) Date: Fri, 10 Jun 2011 05:14:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel In-Reply-To: <529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1016087417.17669.1307697240103.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11056?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607763#comment-12607763 ] Marc-Christian Schroeer commented on RF-11056: ---------------------------------------------- I have done some research and it seems to me the table-element rendering the 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 changed. The coordinates are updated correctly though. When using Firebug to show the table, I can select different dates and all other functions work quite 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 From jira-events at lists.jboss.org Fri Jun 10 05:25:59 2011 From: jira-events at lists.jboss.org (Marc-Christian Schroeer (JIRA)) Date: Fri, 10 Jun 2011 05:25:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11056) rich:calendar not working in popupPanel In-Reply-To: <529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1343748153.17707.1307697959329.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11056?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607765#comment-12607765 ] Marc-Christian Schroeer commented on RF-11056: ---------------------------------------------- And yet another observation: the calendar works fine if you do not re-render the dialog before showing it. Nevertheless for our application it is crucial 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 From jira-events at lists.jboss.org Fri Jun 10 06:53:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:53:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11025) OrderingList component for 4.0 In-Reply-To: <1049926353.37852.1306868041513.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1988156755.18003.1307703180064.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11025?page=com.atlassian.jira.plugin.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 ListShuttle/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 From jira-events at lists.jboss.org Fri Jun 10 06:53:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:53:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11024) ListShuttle/PickList combined component for 4.0 In-Reply-To: <1806722734.37823.1306867501015.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1086163783.18005.1307703180151.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11024?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 06:57:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:57:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9485) IE9 Beta - AJAX broken In-Reply-To: <1721857995.28008.1286828079786.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <841687868.18044.1307703420676.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.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.org/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 in 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 2373 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.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = 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 issue or a RichFaces issue. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 06:57:01 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:57:01 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10774) IE9 compatibility issues for 3.3.X In-Reply-To: <918262810.32420.1300368765755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1870290270.18054.1307703421057.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10774?page=com.atlassian.jira.plugin.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 RichFaces 3.3.X versions. We will try to get any changes into the 3.3.4-SNAPSHOT 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 From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:58:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component In-Reply-To: <198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <574374364.18063.1307703539524.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9486?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:58:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component In-Reply-To: <198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <170724142.18066.1307703539595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9486?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 06:58:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 06:58:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component In-Reply-To: <198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1961406069.18070.1307703539696.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] SBS JIRA Integration updated RF-9486: ------------------------------------- JBoss Forum Reference: (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 From jira-events at lists.jboss.org Fri Jun 10 07:00:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:00:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9486) Multiselect tree component In-Reply-To: <198460239.28417.1286861882834.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <428830600.18075.1307703659585.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9486?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 07:02:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:02:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9153) CSV export component of rich:dataTable/rich:extendedDataTable In-Reply-To: <1477632758.26550.1283155391909.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <59385134.18136.1307703779912.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9153?page=com.atlassian.jira.plugin.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.jboss.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:dataTable/rich:extendedDataTable. Especially in business applications there often is the requirement to export any data into excel. A generic way to do it would 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 From jira-events at lists.jboss.org Fri Jun 10 07:03:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:03:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10862) Autocomplete: does not perform decode of the behaviors In-Reply-To: <1369612777.17714.1302511355546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <602986359.18169.1307703780917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10862?page=com.atlassian.jira.plugin.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="false" selectFirst="false" > autocompleteMethod="#{autocompleteBean.autocomplete}" valueChangeListener="#{autocompleteBean.vcl}"> > > > > > > > input calls listener and autocomplete not. Text renderer performs String clientId = 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 From jira-events at lists.jboss.org Fri Jun 10 07:04:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:04:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10961) tabPanel causes NullPointerException if activeItem is not found In-Reply-To: <127938302.16762.1303981458273.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <194208496.18192.1307703899763.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10961?page=com.atlassian.jira.plugin.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 > > > Message-ID: <842763843.18196.1307703899879.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10945?page=com.atlassian.jira.plugin.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.getActiveItem() > ---------------------------------------------------------------------------------- > > 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 NullPointerException is thrown by AbstractTabPanel.getActiveItem() when re-rending the UITabPanel: > getFirstItem().getName() => cannot work since getFirstItem() returns null > There should be no errors when the UITabPanel is empty. > I fixed that in my local 'copy' of AbstractTabPanel by checking if getFirstItem() 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 = super.getActiveItem(); > if (res == null) { > > // L. Ulrich, 21.04.2011 > // original code > //res = getFirstItem().getName(); > // fixed code: > AbstractTogglePanelItemInterface firstItem = getFirstItem(); > if (firstItem != null) > { > res = firstItem.getName(); > } > // end of fixed code > } else { > AbstractTogglePanelTitledItem item = > (AbstractTogglePanelTitledItem) super.getItemByIndex(super.getChildIndex(res)); > if (item.isDisabled()) { > res = getFirstItem().getName(); > } > } > return res; > } -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 07:09:00 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Libor_Krzy=C5=BEanek_=28JIRA=29?=) Date: Fri, 10 Jun 2011 07:09:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Reopened: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE In-Reply-To: <195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1760325246.18264.1307704140789.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Libor Krzy?anek 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?rr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showcase site. It works fine in IE9. > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > The problem occurs when I add other components to the page. In this example I have added an ajax enabled a4j:outputPanel *before* the test form: > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > > > > Now the code stops working in IE9, still works fine in Firefox. After some 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 From jira-events at lists.jboss.org Fri Jun 10 07:09:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:09:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE In-Reply-To: <195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1842571600.18268.1307704140897.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10939?page=com.atlassian.jira.plugin.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?rr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showcase site. It works fine in IE9. > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > The problem occurs when I add other components to the page. In this example I have added an ajax enabled a4j:outputPanel *before* the test form: > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > > > > Now the code stops working in IE9, still works fine in Firefox. After some 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 From jira-events at lists.jboss.org Fri Jun 10 07:10:59 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Libor_Krzy=C5=BEanek_=28JIRA=29?=) Date: Fri, 10 Jun 2011 07:10:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-10939) a4j:ajax example breaks in IE9 based on DOCTYPE In-Reply-To: <195392528.38429.1303216053084.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1700750440.18274.1307704259484.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Libor Krzy?anek 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?rr > Assignee: Nick Belaevski > Labels: tran > > The sample below is more or less a copy of the example on richfaces showcase site. It works fine in IE9. > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > The problem occurs when I add other components to the page. In this example I have added an ajax enabled a4j:outputPanel *before* the test form: > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xml:lang="en" lang="en" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > Test > > > > > > > > > > > > > > > Now the code stops working in IE9, still works fine in Firefox. After some 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 From jira-events at lists.jboss.org Fri Jun 10 07:35:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:35:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10827) dataGrid: add event attributes In-Reply-To: <1518079892.10905.1301476299769.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <263453031.18475.1307705700884.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10827?page=com.atlassian.jira.plugin.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 correctly to hadnle concrete object(http://community.jboss.org/message/596399#596399). -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 07:36:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:36:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8430) AJAX: autocomplete is set for all inputs after update In-Reply-To: <1181785733.1266670090151.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <940271297.18481.1307705819755.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8430?page=com.atlassian.jira.plugin.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=0 (was: http://community.jboss.org/thread/148370?tstart=0) > 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 From jira-events at lists.jboss.org Fri Jun 10 07:36:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:36:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10785) Merge 4.0.X <--> /trunk now that 4.0.0.Final respin is complete In-Reply-To: <1415698019.37042.1300540905627.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2012325486.18489.1307705819990.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10785?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 07:38:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:38:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10802) tree: reRender causes the tree to disappear in Chrome In-Reply-To: <1001534079.51889.1301046945815.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1808129490.18492.1307705939382.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10802?page=com.atlassian.jira.plugin.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 in will be reproduccable at ENT branch. so creating separate issue as https://issues.jboss.org/browse/RF-8347 that one created to reflect "bad rendering" and only partially talks about that main problem. I will link as incorporated 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 From jira-events at lists.jboss.org Fri Jun 10 07:38:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:38:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10791) extendedDataTable: richfaces-showcase selection demo works wrong if dataScroller added In-Reply-To: <52132133.46110.1300879245673.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1315327328.18495.1307705939549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10791?page=com.atlassian.jira.plugin.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 dataScroller 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="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:a4j="http://richfaces.org/a4j" > xmlns:rich="http://richfaces.org/rich"> > > > value="#{extTableSelectionBean.inventoryItems}" var="car" > selection="#{extTableSelectionBean.selection}" id="table" > frozenColumns="2" style="height:300px; width:500px;" rows="10"> > event="selectionchange" > listener="#{extTableSelectionBean.selectionListener}" render=":res" /> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > rendered="#{not empty extTableSelectionBean.selectionItems}"> > value="#{extTableSelectionBean.selectionItems}" var="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 selected record. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 07:40:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:40:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10758) Input fields in popupPanel loose focus In-Reply-To: <285449601.26426.1300194531841.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1949436086.18503.1307706059529.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10758?page=com.atlassian.jira.plugin.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-SNAPSHOT, 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 From jira-events at lists.jboss.org Fri Jun 10 07:40:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:40:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8205) queue: allow to turn requests combining off In-Reply-To: <529323752.1260792451035.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <217534715.18507.1307706059862.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8205?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 07:42:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:42:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10757) DataTable vs ExtendedDataTable: getRowIndex usage inconsistency In-Reply-To: <1005407143.26010.1300186905740.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1331030211.18517.1307706179504.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10757?page=com.atlassian.jira.plugin.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#593105 > I'm not actually sure where the issue lies and if that's actually an issue and not a difference between two tables but the tbody for dataTable endoded calling and adding getRowIndex and for EDT by just using component.getClientId -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 07:42:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:42:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10748) CLONE - Extended dataTable. Header scrolled badly on TAB button. In-Reply-To: <471028503.22683.1300093548183.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2039306480.18520.1307706179618.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10748?page=com.atlassian.jira.plugin.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=0 > 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=2 > 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" (seems good), but after I press TAB on the last input - the focus jumps to non 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 From jira-events at lists.jboss.org Fri Jun 10 07:46:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:46:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9718) Tree: additional features: data types other than javax.swing.tree.TreeNode In-Reply-To: <1365677719.13766.1289228942035.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2054093484.18547.1307706419779.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9718?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 07:52:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:52:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9580) select: implement filterNewValue analog as for 3.3.x combobox In-Reply-To: <1220126558.27961.1288282076378.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1992622761.18628.1307706779688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9580?page=com.atlassian.jira.plugin.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 filterNewValues attribute at 3.3.x combo and we could discuss naming for 4.x mode in select. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 07:52:59 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:52:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-9548) ExtendedDataTable: inputs in headers can't be focued. In-Reply-To: <2038216448.14823.1287996774678.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1988515830.18632.1307706779896.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9548?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 07:53:00 2011 From: jira-events at lists.jboss.org (SBS JIRA Integration (JIRA)) Date: Fri, 10 Jun 2011 07:53:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8227) VDL documentation for components/behaviors In-Reply-To: <608916995.1261229370916.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <676977259.18635.1307706780353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8227?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 09:55:59 2011 From: jira-events at lists.jboss.org (Georg Nozicka (JIRA)) Date: Fri, 10 Jun 2011 09:55:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10953) Rich:autocomplete button does not call the autocompleteMetod when minChars="0" In-Reply-To: <141642626.8765.1303816458353.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1703504275.19113.1307714159453.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10953?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607842#comment-12607842 ] Georg Nozicka commented on RF-10953: ------------------------------------ I would like to extend this issue a little bit because I think it is related to it. In former Richfaces versions the autocompleteMethod was also called, if e.g. cursor down was pressed (with minChars=?0? and no characters entered so far). This was quite handy, especially if you have not too many possible results and someone has no idea what could be entered. As it is now, a workaround is to enter a space and trim the input in the program logic, but just pressing cursor down is far more user friendly. Another user solution is to try all the letters from ?a? to ?z? but this is not such a good way to figure the possible values out. > Rich:autocomplete button does not call the autocompleteMetod when minChars="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 the rich:autocomplete component. We set minChars="0" and showButton="true". If we click on the button without entering any keys the autocompleteMethod is no longer called as it was previously. This must be a bug since it works 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 From jira-events at lists.jboss.org Fri Jun 10 11:23:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:23:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10964) autocomplete delete key behavior creates inconsistent state In-Reply-To: <1902763516.22559.1304100558276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <826864061.19393.1307719439445.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607860#comment-12607860 ] Jay Balunas commented on RF-10964: ---------------------------------- Thanks for more information - I was able to confirm this on windows on firefox. The behavior is very strange. We'll get it in the queue to be looked at further. If you have anymore information 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=autocomplete&skin=blueSky > In the 3rd autocomplete box, enter the letter 'a' and pick the first suggestion. (Alabama) > Click the mouse to the beginning of the autocomplete box and use the Delete 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 From jira-events at lists.jboss.org Fri Jun 10 11:23:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:23:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10964) autocomplete delete key behavior creates inconsistent state In-Reply-To: <1902763516.22559.1304100558276.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <88512478.19396.1307719439512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10964?page=com.atlassian.jira.plugin.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=autocomplete&skin=blueSky > In the 3rd autocomplete box, enter the letter 'a' and pick the first suggestion. (Alabama) > Click the mouse to the beginning of the autocomplete box and use the Delete 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 From jira-events at lists.jboss.org Fri Jun 10 11:25:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:25:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11056) rich:calendar not working in popupPanel In-Reply-To: <529254717.11084.1307517599580.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1147429799.19402.1307719559493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11056?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 11:27:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:27:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page In-Reply-To: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <274342811.19410.1307719679482.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11060?page=com.atlassian.jira.plugin.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 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 > Assignee: Pavol Pitonak > 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 record 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 "thinks" 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 and the onselectionchange of the master should fire so that details of master record 3 can be shown. If you would have go back to record one of the master 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 From jira-events at lists.jboss.org Fri Jun 10 11:29:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:29:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11055) Make fileupload portlet enabled In-Reply-To: <1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1308763354.19415.1307719799389.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11055?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607864#comment-12607864 ] Jay Balunas commented on RF-11055: ---------------------------------- Thanks for the patch - we'll be updating fileupload during the 4.1 cycle, so 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 impossible 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 From jira-events at lists.jboss.org Fri Jun 10 11:29:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:29:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11055) Make fileupload portlet enabled In-Reply-To: <1970905476.9285.1307458679499.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <670520942.19421.1307719799554.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11055?page=com.atlassian.jira.plugin.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 impossible 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 From jira-events at lists.jboss.org Fri Jun 10 11:31:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:31:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11057) rf-showcase: simplify dataTable styling code In-Reply-To: <1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1305912069.19429.1307719919558.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11057?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 11:31:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:31:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11057) rf-showcase: simplify dataTable styling code In-Reply-To: <1605796539.13751.1307583359297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1641887011.19432.1307719919619.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11057?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 11:33:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:33:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() In-Reply-To: <1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <70084285.19439.1307720039344.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11054?page=com.atlassian.jira.plugin.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?n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" everything 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 From jira-events at lists.jboss.org Fri Jun 10 11:37:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:37:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11053) Showcase: layout broken in data grid sample In-Reply-To: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <351429563.19453.1307720279413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11053?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607868#comment-12607868 ] Jay Balunas commented on RF-11053: ---------------------------------- Pavol - what browser are you using? I've tried IE9, chrome, and firefox, but 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-sample.jsf?demo=dataGrid > 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 From jira-events at lists.jboss.org Fri Jun 10 11:41:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:41:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 In-Reply-To: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <778160883.19465.1307720519312.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11052?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607870#comment-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-plugin:1.3.3:shade (default) on project richfaces-components-api: Error creating shaded 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:10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points 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-SNAPSHOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-components-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-components-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, please read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11051) a4j.version does not work In-Reply-To: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <461884805.19469.1307720639479.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11051?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607871#comment-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., version 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 From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11051) a4j.version does not work In-Reply-To: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1139042118.19473.1307720639608.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11051?page=com.atlassian.jira.plugin.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., version 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 From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11052) Module components cannot be build with Maven 3 In-Reply-To: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2040386381.19476.1307720639688.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11052?page=com.atlassian.jira.plugin.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-plugin:1.3.3:shade (default) on project richfaces-components-api: Error creating shaded 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:10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points 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-SNAPSHOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-components-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-components-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, please read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11053) Showcase: layout broken in data grid sample In-Reply-To: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1356944949.19479.1307720639758.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11053?page=com.atlassian.jira.plugin.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-sample.jsf?demo=dataGrid > 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 From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11053) Showcase: layout broken in data grid sample In-Reply-To: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2144921380.19482.1307720639840.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11053?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607873#comment-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-sample.jsf?demo=dataGrid > 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 From jira-events at lists.jboss.org Fri Jun 10 11:43:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:43:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11045) Showcase: tabs with samples are trimmed In-Reply-To: <1208090633.5879.1307361719412.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <411267432.19484.1307720639930.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11045?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 11:47:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:47:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11038) extendedTable: sorting sample In-Reply-To: <721029909.5027.1307302139323.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <704030702.19490.1307720879471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11038?page=com.atlassian.jira.plugin.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: https://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 From jira-events at lists.jboss.org Fri Jun 10 11:47:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:47:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11039) extendedTable: filtering sample In-Reply-To: <1827820444.5030.1307302139414.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <949962685.19492.1307720879520.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11039?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 11:49:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:49:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11037) richfaces-showcase: new demos In-Reply-To: <1560828782.5020.1307296259290.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1384211563.19499.1307720999330.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11037?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607876#comment-12607876 ] Jay Balunas commented on RF-11037: ---------------------------------- Ilya - please add in a little detail on what you would like to add - perhaps 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 From jira-events at lists.jboss.org Fri Jun 10 11:53:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:53:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11035) Unexpected exception during isValid call with Hibernate @Size validation on h:selectManyCheckbox In-Reply-To: <1926882390.3525.1307106420738.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <504548772.19523.1307721239856.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11035?page=com.atlassian.jira.plugin.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 with 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?n 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 appear. 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:selectManyCheckbox 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 From jira-events at lists.jboss.org Fri Jun 10 11:55:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:55:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10980) Impossible to set tabindex of input inside rich:popupPanel In-Reply-To: <1531325728.43182.1305039018373.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1958927408.19533.1307721359725.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10980?page=com.atlassian.jira.plugin.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 tab 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-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 > Fix For: 4.1.0.Milestone1 > > > Tabindex attribute of any element inside rich:popupPanel forced to -1, therefore 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 From jira-events at lists.jboss.org Fri Jun 10 11:57:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:57:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Closed: (RF-11032) fileUpload Upload button not shown in Firefox 2.0 In-Reply-To: <369988934.2247.1307070959595.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2043032717.19536.1307721479333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11032?page=com.atlassian.jira.plugin.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 possible. I am able to add a file to the upload component, but the "upload" button 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 From jira-events at lists.jboss.org Fri Jun 10 11:59:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 11:59:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11031) autosized attribute does not work in IE7 In-Reply-To: <599797221.1325.1307041259297.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <340483583.19548.1307721599751.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11031?page=com.atlassian.jira.plugin.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=false 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='true' height='' width='' for all browsers except IE7 (which works, for some reason the height and width attributes are ignored) For IE7 I set autosized='false' height='670' width='400' which renders 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. was: does not autosize popup window in IE7. I tried a workaround by setting the autosized=false 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='true' height='' width='' for all browsers except IE7 (which works, for some reason the height and width attributes are ignored) For IE7 I set autosized='false' height='670' width='400' which renders 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. 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 IE7. I tried a workaround by setting the autosized=false 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='true' height='' width='' for all browsers except IE7 (which works, for some reason the height and width attributes are ignored) > For IE7 I set autosized='false' height='670' width='400' which renders 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 From jira-events at lists.jboss.org Fri Jun 10 12:01:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:01:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11030) rich:inplaceSelect suggestions disappear when move scroller (in Chrome) In-Reply-To: <15317003.1129.1307032081203.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1390763477.19556.1307721719826.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11030?page=com.atlassian.jira.plugin.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?n Jamrich > Priority: Minor > Fix For: 4.Future > > > When move scroller by mouse in rich:inplaceSelect without confirmation button (immediate selection) in Chrome browser, whole pop-up with selects disappear. > But scroller works corectly in Forefox. > I made some test changes in ShowCase - added more options into first inplaceSelect -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 12:07:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 12:07:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11051) a4j.version does not work In-Reply-To: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <305816957.19578.1307722079446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11051?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607884#comment-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., version 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 From jira-events at lists.jboss.org Fri Jun 10 12:09:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 12:09:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11052) Module components cannot be build with Maven 3 In-Reply-To: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1135964786.19593.1307722199405.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11052?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607885#comment-12607885 ] Pavol Pitonak commented on RF-11052: ------------------------------------ Yes, I tried to build richfaces-bom locally. The bom is deployed to Maven repo 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-plugin:1.3.3:shade (default) on project richfaces-components-api: Error creating shaded 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:10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points 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-SNAPSHOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-components-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-components-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, please read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 12:09:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:09:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11021) rich:select atribute selectFirst doesn't work In-Reply-To: <866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <615804466.19594.1307722199444.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11021?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607886#comment-12607886 ] Jay Balunas commented on RF-11021: ---------------------------------- We did not have time to discuss in team meeting, but I think there is an issue 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 the selectItems should be shown as it is for h:selectOneMenu. So for example in the showcase page http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo=select&skin=emeraldTown - 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 From jira-events at lists.jboss.org Fri Jun 10 12:11:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11021) rich:select should show first item in list if defaultLabel is not set In-Reply-To: <866028638.37072.1306850940966.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2013419779.19601.1307722319532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11021?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-11021: ----------------------------- Summary: rich:select should show first item in list if defaultLabel 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 From jira-events at lists.jboss.org Fri Jun 10 12:11:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11028) Dynamic extendDataTable not support ajax support In-Reply-To: <1695541044.38854.1306901160917.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2089855500.19603.1307722319629.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11028?page=com.atlassian.jira.plugin.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 columns 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 action... this time it firing the corresponding method. > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j" > xmlns:hex="http://hexaware.com/custom"> > > > > > > > > > > > > > > ------------------------------------------------------------------------------------------- > And attached Static xhtml Page > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j" > xmlns:hex="http://hexaware.com/custom"> > > > > > > > > var="category" > sortMode="single" > value="#{upmBranchMaintenanceBean.resultBranchListVO}" > > > > > > > > > > > > > > > > action="#{upmBranchMaintenanceBean.takeSelection}" /> > > > > > > ---------------------------------------------------------------------------------------- > And for your reference i attached Dynamic table creation Source code here > private static HtmlExtendedDataTable createTable(String beanName, TableAttributes tableAttributes) { > System.out.println("-------- createTable -----------"); > HtmlExtendedDataTable extendedDataTable = new HtmlExtendedDataTable(); > extendedDataTable.setId(tableAttributes.getId()); > String binding = "${" + beanName + "." + tableAttributes.getValue() + "}"; > System.out.println("Tabel Value = "+binding); > ValueExpression valExp = getExpressionFactory() > .createValueExpression(getELContext(), binding, List.class); > extendedDataTable.setWidth("100"); > extendedDataTable.setValueExpression("value", valExp); > extendedDataTable.setVar(tableAttributes.getVar()); > extendedDataTable.setSelectionMode(UPMUIConstant.MAINTENANCE_TABLE_SEL_MODE); > extendedDataTable.setSortMode(UPMUIConstant.MAINTENANCE_TABLE_SORT_MODE); > > for(ColumnAttributes columnAttributes : tableAttributes.getColumnAttributesList()) { > System.out.println(" column "+columnAttributes.getHeader()); > if(HtmlOutputText.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { > HtmlOutputText headerComponent = new HtmlOutputText(); > headerComponent.setValue(columnAttributes.getHeader()); > > HtmlColumn htmlColumn = new HtmlColumn(); > htmlColumn.setHeader(headerComponent); > > // Column ID is Must while creating dynamically, To avoid null pointer Exception. > // Based on id value to set the Column Index internally. > htmlColumn.setId(columnAttributes.getValue()); > > binding = "#{" + tableAttributes.getVar()+ "." + columnAttributes.getValue() + "}"; > > System.out.println("Column Value = "+binding); > valExp = getExpressionFactory() > .createValueExpression(getELContext(), binding, String.class); > > HtmlOutputText outputText = new HtmlOutputText(); > outputText.setValueExpression("value", valExp); > htmlColumn.getChildren().add(outputText); > > extendedDataTable.getChildren().add(htmlColumn); > System.out.println(" column added "); > > > } > else if(HtmlAjaxSupport.COMPONENT_TYPE.equalsIgnoreCase(columnAttributes.getComponentType())) { > System.out.println(" Inside : "+ HtmlAjaxSupport.COMPONENT_TYPE ); > HtmlAjaxSupport ajaxSupport = new HtmlAjaxSupport(); > > ajaxSupport.setId("static_ajax_id"); > > binding = "#{" + beanName + "." +columnAttributes.getAction() + "}"; > System.out.println(" Method binding: "+binding); > > MethodExpression methodBind = getExpressionFactory().createMethodExpression(getELContext(), binding, null, new Class[] {}); > ajaxSupport.setActionExpression(methodBind); > > // MethodBinding action = FacesContext.getCurrentInstance().getApplication() > // .createMethodBinding(binding, new Class[0]); > // ajaxSupport.setAction(action); > // > System.out.println("Ajax Action :" +ajaxSupport.getAction().getExpressionString()); > System.out.println("Ajax Action1 :" +ajaxSupport.getActionExpression().getExpressionString()); > ajaxSupport.setEvent(columnAttributes.getEvent()); > System.out.println("Ajax event :" +ajaxSupport.getEvent()); > extendedDataTable.getChildren().add(ajaxSupport); > } > } > 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 From jira-events at lists.jboss.org Fri Jun 10 12:13:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:13:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11026) Component reference: fix file upload description In-Reply-To: <92867260.37884.1306868461138.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <246904749.19609.1307722439441.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11026?page=com.atlassian.jira.plugin.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 statement in file upload section. The attribute maxFilesQuantity has not been implemented yet in RichFaces 4 so it can be removed. > {quote} > To limit the maximum size of the uploaded files, define the byte size with 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 From jira-events at lists.jboss.org Fri Jun 10 12:15:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:15:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10965) In Rich dataTable, [Enter] in h:inputText submits form In-Reply-To: <2052224208.23633.1304192778359.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <241161648.19614.1307722559634.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10965?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10965: ----------------------------- Labels: enter form submit (was: enter form submit waiting_on_user) 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="30"> > > > > filterExpression="#{fn:containsIgnoreCase(dog.name,dogsFilteringBean.nameFilter)}"> > > > > onkeypress="if (event.keyCode == 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 From jira-events at lists.jboss.org Fri Jun 10 12:17:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:17:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10971) The doesn't work in for extendedDataTable In-Reply-To: <280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <44167417.19617.1307722679430.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10971?page=com.atlassian.jira.plugin.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?rlich > 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 From jira-events at lists.jboss.org Fri Jun 10 12:17:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 12:17:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10971) The doesn't work in for extendedDataTable In-Reply-To: <280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <304895644.19620.1307722679516.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10971?page=com.atlassian.jira.plugin.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?rlich > 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 From jira-events at lists.jboss.org Fri Jun 10 12:26:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 12:26:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10971) The doesn't work in for extendedDataTable In-Reply-To: <280699868.29787.1304500758269.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <29601204.19636.1307723219403.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10971?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-10971: ---------------------------------- Assignee: J?n 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?rlich > Assignee: J?n 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 From jira-events at lists.jboss.org Fri Jun 10 12:42:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 12:42:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page In-Reply-To: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <365320178.19660.1307724179470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11060?page=com.atlassian.jira.plugin.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 tables (e.g. select fifth line in both). > 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 > 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 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 record 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 "thinks" 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 and the onselectionchange of the master should fire so that details of master record 3 can be shown. If you would have go back to record one of the master 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 From jira-events at lists.jboss.org Fri Jun 10 12:42:59 2011 From: jira-events at lists.jboss.org (Pavol Pitonak (JIRA)) Date: Fri, 10 Jun 2011 12:42:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page In-Reply-To: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1937062052.19663.1307724179581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11060?page=com.atlassian.jira.plugin.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 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 > 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 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 record 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 "thinks" 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 and the onselectionchange of the master should fire so that details of master record 3 can be shown. If you would have go back to record one of the master 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 From jira-events at lists.jboss.org Fri Jun 10 13:51:59 2011 From: jira-events at lists.jboss.org (Tom Giberius (JIRA)) Date: Fri, 10 Jun 2011 13:51:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11060) onselectionchange working incorrect with two extendedDataTable on same page In-Reply-To: <193033109.16549.1307649539443.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1082636121.19861.1307728319378.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11060?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607903#comment-12607903 ] Tom Giberius commented on RF-11060: ----------------------------------- The bug is indeed when the same record in a table is selected. Table A - record 1 => onselectionchange fires, that's ok. Table B - record 3 => onselectionchange fires, that's ok. Table A - record 3 => now onselectionchange does not fire, that's the bug. > 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 > 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 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 record 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 "thinks" 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 and the onselectionchange of the master should fire so that details of master record 3 can be shown. If you would have go back to record one of the master 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 From jira-events at lists.jboss.org Fri Jun 10 13:58:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 13:58:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles In-Reply-To: <1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <181052999.19868.1307728739413.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10601?page=com.atlassian.jira.plugin.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 JavaDocs 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 JavaDocs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 14:00:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 14:00:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10601) Update build to support VDL doc generation based on profiles In-Reply-To: <1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1820736221.19871.1307728859793.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607904#comment-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 JavaDocs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 14:01:00 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 14:01:00 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11009) VDL-DOC: release a vdl doc resource Message-ID: <1337579705.19875.1307728860039.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11009?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607906#comment-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/vdl-doc/ -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 14:02:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 14:02:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10837) VDL-DOC: update dependency version in the ui/dist pom In-Reply-To: <1781991038.15518.1301616277843.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1114356580.19882.1307728979423.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10837?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607908#comment-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/richfaces-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 From jira-events at lists.jboss.org Fri Jun 10 14:02:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 14:02:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles In-Reply-To: <1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1408943990.19885.1307728979560.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10601?page=com.atlassian.jira.plugin.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 JavaDocs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 14:04:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 14:04:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Moved: (RF-11061) VDL-DOC: release a faces-shade-transformers plugin Message-ID: <231411788.19888.1307729099331.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11061?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 15:05:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:05:59 -0400 (EDT) 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. Message-ID: <309756203.19991.1307732759468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11062?page=com.atlassian.jira.plugin.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 not 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?? Fry? > 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 the build in BV implementation present in JSF 2. This will cause a lot of maintenance 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 From jira-events at lists.jboss.org Fri Jun 10 15:11:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-10925) ELResolver #{bean.property[value]} and graphValidator causes exception In-Reply-To: <744570596.28727.1302796653333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <356294459.20007.1307733119408.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10925?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 15:11:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7840) CDK Documentation generation In-Reply-To: <128993980.1252454483976.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <1296950827.20010.1307733119731.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7840?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:21:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. In-Reply-To: <1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1092755985.20031.1307733719497.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10173?page=com.atlassian.jira.plugin.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 necessary. > 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 From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:21:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10232) CDK: add descriptions of standard facets to UIColumn/UIData In-Reply-To: <732801988.19031.1295307650014.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <183533500.20035.1307733719693.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10232?page=com.atlassian.jira.plugin.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 UIColumn, UIData etc. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 15:21:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 15:21:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10987) Improve GraphValidator performance In-Reply-To: <1374443192.1073.1305318050437.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <126666375.20037.1307733719773.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10987?page=com.atlassian.jira.plugin.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 that on the backend ClonedObjectResolver.resolveCloned gets called a lot and is very slow. Looking at the method (code below) I think the issue is that it 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 situations like a particular component on the page? > > {code} > public static Object resolveCloned(ELContext context, Object base, Object property){ > if(null != base || null != property){ > FacesContext facesContext = FacesContext.getCurrentInstance(); > Map requestMap = facesContext.getExternalContext().getRequestMap(); > for (String key : requestMap.keySet()) { > if(null != key && key.startsWith(UIGraphValidator.STATE_ATTRIBUTE_PREFIX)){ > UIGraphValidator.GraphValidatorState state = (GraphValidatorState) 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 From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 From: jira-events at lists.jboss.org (Ara Minosian (JIRA)) Date: Fri, 10 Jun 2011 17:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11063) rich:select is not at same level with text Message-ID: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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_rJWqCg?feat=directlink Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpURww3ruRBM6uYOQ?feat=directlink {code:xml|title=code|borderStyle=solid}

Some text:

Some text: {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 From: jira-events at lists.jboss.org (Ara Minosian (JIRA)) Date: Fri, 10 Jun 2011 17:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text In-Reply-To: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1463824398.20184.1307740319533.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11063?page=com.atlassian.jira.plugin.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_rJWqCg?feat=directlink > Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpURww3ruRBM6uYOQ?feat=directlink > {code:xml|title=code|borderStyle=solid} >

> Some text: >

> Some text: > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 17:11:59 2011 From: jira-events at lists.jboss.org (Ara Minosian (JIRA)) Date: Fri, 10 Jun 2011 17:11:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text In-Reply-To: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2034261059.20186.1307740319592.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11063?page=com.atlassian.jira.plugin.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_rJWqCg?feat=directlink > Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpURww3ruRBM6uYOQ?feat=directlink > {code:xml|title=code|borderStyle=solid} >

> Some text: >

> Some text: > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 17:13:59 2011 From: jira-events at lists.jboss.org (Ara Minosian (JIRA)) Date: Fri, 10 Jun 2011 17:13:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text In-Reply-To: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <786366426.20189.1307740439325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11063?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ara Minosian updated RF-11063: ------------------------------ Description: Please, see attachment {code:xml|title=code|borderStyle=solid}

Some text:

Some text: {code} was: Picture for IE9: https://picasaweb.google.com/lh/photo/jgZWwIw6fNINz05_rJWqCg?feat=directlink Picture for other browsers: https://picasaweb.google.com/lh/photo/2RjjATpURww3ruRBM6uYOQ?feat=directlink {code:xml|title=code|borderStyle=solid}

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=code|borderStyle=solid} >

> Some text: >

> Some text: > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Fri Jun 10 17:17:59 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Fri, 10 Jun 2011 17:17:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11063) rich:select is not at same level with text In-Reply-To: <446311453.20181.1307740319433.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <99844515.20192.1307740679369.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11063?page=com.atlassian.jira.plugin.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=code|borderStyle=solid} >

> Some text: >

> Some text: > {code} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Sat Jun 11 00:32:59 2011 From: jira-events at lists.jboss.org (Matt Kenney (JIRA)) Date: Sat, 11 Jun 2011 00:32:59 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-5320) inputNumberSlider: incorrect slider position with rich:tabPanel In-Reply-To: <22564537.1228928689431.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <1348560852.20373.1307766779532.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-5320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12607963#comment-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 constant, therfore the inputNumberSlider will only work correctly at a specific 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 From jira-events at lists.jboss.org Sat Jun 11 13:16:23 2011 From: jira-events at lists.jboss.org (Vinay Singh (JIRA)) Date: Sat, 11 Jun 2011 13:16:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-9360) Browse button next to Image URL in rich:editor is missing In-Reply-To: <217652219.7982.1284754528894.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1550285889.87.1307812583674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-9360?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608120#comment-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=editor&tab=usage > In rich editor we are trying to insert an image from local machine. We click in Image URL button and nothing happens. > I looked at tinyMCE example and next to Image URL text box , there is button 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 From jira-events at lists.jboss.org Mon Jun 13 07:56:23 2011 From: jira-events at lists.jboss.org (Justin Wyer (JIRA)) Date: Mon, 13 Jun 2011 07:56:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10887) rich:select setValue(value) javascript api does not allow setting an empty value. In-Reply-To: <1269839099.26100.1302725193034.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1994685136.886.1307966183305.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10887?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608200#comment-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 empty 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 From jira-events at lists.jboss.org Mon Jun 13 09:21:23 2011 From: jira-events at lists.jboss.org (Justin Wyer (JIRA)) Date: Mon, 13 Jun 2011 09:21:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10886) onbuttonclick, onbuttondblclick attribute on rich:select In-Reply-To: <1568716526.26076.1302724773058.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <506072764.1007.1307971283328.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10886?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608211#comment-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 From jira-events at lists.jboss.org Mon Jun 13 10:28:23 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 13 Jun 2011 10:28:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11064) Push: Invalid async context for servlet AutoRegisteredPushServlet Message-ID: <910263183.1102.1307975303998.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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?? Fry? Fix For: 4.1.0.Milestone1 Sample application: https://github.com/lfryc/push-jms/ Reproduced on: https://github.com/lfryc/push-jms/tree/6dd6b623410e30ee4406e13fb6e22866e652e637 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 exception or error occurred in the container during the request processing: java.lang.IllegalStateException: Invalid async context for servlet AutoRegisteredPushServlet at org.apache.catalina.core.StandardWrapperValve.async(StandardWrapperValve.java:643) [:6.0.0.Final] at org.apache.catalina.core.StandardWrapperValve.event(StandardWrapperValve.java:402) [:6.0.0.Final] at org.apache.catalina.core.StandardContextValve.event(StandardContextValve.java:260) [:6.0.0.Final] at org.jboss.web.tomcat.security.SecurityAssociationValve.event(SecurityAssociationValve.java:328) [:6.0.0.Final] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(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.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(CachedConnectionValve.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.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:757) [: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: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.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.java:199) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:61) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:112) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.SessionImpl.connect(SessionImpl.java:85) 16:21:52,077 ERROR [STDERR] at org.richfaces.application.push.impl.RequestImpl.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.RequestImpl.suspend(RequestImpl.java:57) 16:21:52,078 ERROR [STDERR] at org.richfaces.webapp.PushHandlerFilter.doFilter(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.ReflectorServletProcessor$FilterChainServletWrapper.service(ReflectorServletProcessor.java:294) 16:21:52,078 ERROR [STDERR] at org.atmosphere.handler.ReflectorServletProcessor.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.doCometSupport(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(HttpServlet.java:734) 16:21:52,079 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:324) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) 16:21:52,079 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:181) 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.event(CatalinaContext.java:285) 16:21:52,079 ERROR [STDERR] at org.jboss.modcluster.catalina.CatalinaContext$RequestListenerValve.invoke(CatalinaContext.java:261) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:88) 16:21:52,079 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.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.CachedConnectionValve.invoke(CachedConnectionValve.java:158) 16:21:52,080 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) 16:21:52,081 ERROR [STDERR] at org.jboss.web.tomcat.service.request.ActiveRequestResponseCacheValve.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.process(Http11Processor.java:877) 16:21:52,081 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:654) 16:21:52,084 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.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 From jira-events at lists.jboss.org Mon Jun 13 10:32:23 2011 From: jira-events at lists.jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 13 Jun 2011 10:32:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10345) Push: IllegalStateException: Invalid async context for servlet Faces Servlet In-Reply-To: <1282166479.3003.1296207184742.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <858395490.1143.1307975543444.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608223#comment-12608223 ] Luk?? Fry? 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 Servlet > ---------------------------------------------------------------------------- > > 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 From jira-events at lists.jboss.org Mon Jun 13 10:38:23 2011 From: jira-events at lists.jboss.org (Liffey Morgan (JIRA)) Date: Mon, 13 Jun 2011 10:38:23 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-11054) Dynamically created tabs within tabPanel causes NPE in getActiveItem() In-Reply-To: <1623826467.7332.1307396879360.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <69357484.1152.1307975903547.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11054?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608225#comment-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?n Jamrich > Fix For: 4.1.0.Milestone1 > > Attachments: exception-on-tab-switch > > > When set switchType on TabPanel to "server" (notice that with "client" everything 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 From jira-events at lists.jboss.org Mon Jun 13 21:07:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Mon, 13 Jun 2011 21:07:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11052) Module components cannot be build with Maven 3 In-Reply-To: <882135292.6188.1307367720215.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1837195498.1949.1308013649819.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11052?page=com.atlassian.jira.plugin.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-plugin:1.3.3:shade (default) on project richfaces-components-api: Error creating shaded 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:10 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points 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-SNAPSHOT at /data/eclipse-workspace/richfaces/components/dist/richfaces-components-api/dependency-reduced-pom.xml for project org.richfaces.ui:richfaces-components-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, please read the following articles: > [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException > {quote} -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Mon Jun 13 21:07:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Mon, 13 Jun 2011 21:07:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11051) a4j.version does not work In-Reply-To: <1952712639.5972.1307363639822.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1428361006.1952.1308013649924.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11051?page=com.atlassian.jira.plugin.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., version 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 From jira-events at lists.jboss.org Mon Jun 13 21:07:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Mon, 13 Jun 2011 21:07:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11053) Showcase: layout broken in data grid sample In-Reply-To: <1780789027.6535.1307374379639.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1290620953.1955.1308013650032.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11053?page=com.atlassian.jira.plugin.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-sample.jsf?demo=dataGrid > 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 From jira-events at lists.jboss.org Tue Jun 14 15:57:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 15:57:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7281) New component: rich:notify In-Reply-To: <10225796.1243572296530.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <761870968.1141.1308081449632.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7281?page=com.atlassian.jira.plugin.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 if 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 rich:messages) and client side with a javascript base API. This would make it 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 From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:01:31 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Assigned: (RF-7351) Regression: "messages: globalOnly does not work properly" In-Reply-To: <11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <1205743065.1159.1308081691076.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Balunas reassigned RF-7351: ------------------------------- Assignee: Pavol Pitonak Please verify against RichFaces 4 using the provided example, or the your own 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.zip, 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 intended for a single UI component (via the for= ) are appearing in the global messages 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 From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:01:31 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-7351) Regression: "messages: globalOnly does not work properly" In-Reply-To: <11790963.1244614376426.JavaMail.jira@cloud.prod.atl2.jboss.com> Message-ID: <2079551488.1171.1308081691508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-7351?page=com.atlassian.jira.plugin.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.zip, 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 intended for a single UI component (via the for= ) are appearing in the global messages 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 From jira-events at lists.jboss.org Tue Jun 14 16:01:31 2011 From: jira-events at lists.jboss.org (Ilya Shaikovsky (JIRA)) Date: Tue, 14 Jun 2011 16:01:31 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-11065) popupPanel: documentation omits forms requirement and contains wrong sample Message-ID: <216352357.1175.1308081691698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> 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-richpopupPanel 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 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 parent." 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 From jira-events at lists.jboss.org Tue Jun 14 16:09:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:09:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-11065) popupPanel: documentation omits forms requirement and contains wrong sample In-Reply-To: <216352357.1175.1308081691698.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <175367155.1214.1308082169493.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-11065?page=com.atlassian.jira.plugin.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 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 > Priority: Critical > Fix For: 4.1.0.Final > > > http://docs.jboss.org/richfaces/latest_4_0_X/Component_Reference/en-US/html/chap-Component_Reference-Panels.html#sect-Component_Reference-Panels-richpopupPanel > 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 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 parent." > 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 From jira-events at lists.jboss.org Tue Jun 14 16:09:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:09:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-8125) Tables: built-in sorting/filtering In-Reply-To: <1666608860.1257958385689.JavaMail.jboss@jira01.app.mwc.hst.phx2.redhat.com> Message-ID: <1898773349.1219.1308082169825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-8125?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 16:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10154) UIDataAdaptor vs. UIData visitTee small difference In-Reply-To: <719639162.48683.1294430820168.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <815522731.1224.1308082289732.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10154?page=com.atlassian.jira.plugin.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?? > Priority: Minor > Labels: jsf21 > Fix For: 4.1.0.Final > > > > > > > + > org.richfaces.component.UIDataAdaptor.visitTree(VisitContext, VisitCallback) with VisitHint SKIP_UNRENDERED (in render response phase for example) > Problem: org.richfaces.component.UIDataAdaptor.visitDataChildren(VisitContext, VisitCallback, boolean) calls visitComponents(getFacetsAndChildren(), visitContext, callback);-> it will visit h:outputText component and test if is rendered -> #{fasole.method(zeile)} but no row available -> calls fasole.method with null parameter and causes an unexpected NPE > j.f.c.UIData does not visit column chidren for -1 rowIndex (null rowKey in RichFaces), UIData.visitTree JavaDoc says: "Take no action on non-UIColumn children". -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. In-Reply-To: <1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <398548155.1227.1308082289886.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10173?page=com.atlassian.jira.plugin.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 necessary. > 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 From jira-events at lists.jboss.org Tue Jun 14 16:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10173) CDK: Unify Behavior/Converter/Validator attributes generation. In-Reply-To: <1003704477.3594.1294704109882.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1151484606.1230.1308082289958.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10173?page=com.atlassian.jira.plugin.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 necessary. > 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 From jira-events at lists.jboss.org Tue Jun 14 16:13:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:13:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10601) Update build to support VDL doc generation based on profiles In-Reply-To: <1294581556.29444.1298502493812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1274589370.1233.1308082409588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10601?page=com.atlassian.jira.plugin.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 JavaDocs as needed. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:15:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:15:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10620) Remove or externalize maven-javascript-plugin 3rd party software from RichFaces In-Reply-To: <530673528.5157.1298640606296.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1373349931.1237.1308082529950.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10620?page=com.atlassian.jira.plugin.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 RichFaces > ------------------------------------------------------------------------------- > > 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 /build/resources area. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:20:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:20:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10657) Autocomplete - wrongly handles input for options which contain one of tokens In-Reply-To: <720155728.13729.1299074288906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1048526537.1247.1308082829572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10657?page=com.atlassian.jira.plugin.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 tokens > ---------------------------------------------------------------------------- > > 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?? Fry? > 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 From jira-events at lists.jboss.org Tue Jun 14 16:22:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:22:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10694) Inplace Number Spinner/Slider - @readonly does not work In-Reply-To: <105211357.3722.1299225585594.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1170068695.1255.1308082949675.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10694?page=com.atlassian.jira.plugin.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?? Fry? > Fix For: 4.Future > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:24:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:24:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10736) dataScroller: add events and classes handlers In-Reply-To: <546128370.19084.1299831105674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2009693140.1283.1308083070364.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10736?page=com.atlassian.jira.plugin.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 even 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 From jira-events at lists.jboss.org Tue Jun 14 16:28:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:28:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10740) collapsibleSubTableToggler with expandMode="ajax" executes collapsibleSubTable on server In-Reply-To: <1113512856.19797.1299849945718.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <782898504.1312.1308083309645.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10740?page=com.atlassian.jira.plugin.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 done for that issue. Seeing two issues there actually.) > collapsibleSubTableToggler with expandMode="ajax" executes collapsibleSubTable 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?? > Priority: Critical > Fix For: 4.1.0.Final > > Attachments: RF-10740.patch > > > With example below request contains javax.faces.partial.execute=form:dataTable: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 From jira-events at lists.jboss.org Tue Jun 14 16:30:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:30:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10748) CLONE - Extended dataTable. Header scrolled badly on TAB button. In-Reply-To: <471028503.22683.1300093548183.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1294110936.1316.1308083429470.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10748?page=com.atlassian.jira.plugin.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=0 > 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=2 > 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" (seems good), but after I press TAB on the last input - the focus jumps to non 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 From jira-events at lists.jboss.org Tue Jun 14 16:32:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:32:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10755) managed-bean in richfaces-core-impl In-Reply-To: <565575021.24876.1300129666870.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1114927615.1319.1308083549527.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10755?page=com.atlassian.jira.plugin.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 implicit 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?? > 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 caused malfunction of richfaces skinning. > Suggestion: do not provide those beans but implement them as implicit object (similar like JSF implicit object "view" or "sessionScope") > There is SkinPropertiesELResolver already, all what needs to be done is define 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 From jira-events at lists.jboss.org Tue Jun 14 16:36:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:36:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10777) Intermittent server error on initial GAE showcase access to a4j:ajax sample In-Reply-To: <311808401.33782.1300407225769.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1119834970.1324.1308083789649.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10777?page=com.atlassian.jira.plugin.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 since have resolved this issue. If we find it is reproducible we'll reopen. > Intermittent server error on initial GAE showcase access to a4j:ajax sample > --------------------------------------------------------------------------- > > 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 initially 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 error 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 From jira-events at lists.jboss.org Tue Jun 14 16:40:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:40:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10804) Pagination by explicit page number selection (maybe included into dataScroller) In-Reply-To: <378508933.51984.1301048685659.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1052656602.1335.1308084029819.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10804?page=com.atlassian.jira.plugin.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 dataScroller) > ------------------------------------------------------------------------------- > > 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 jump 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 page which seamlessly works together with rich:dataScroller for pagination. Just 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 From jira-events at lists.jboss.org Tue Jun 14 16:40:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:40:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10814) VDL-DOC: add facets info from faces-config.xml In-Reply-To: <2032550693.3137.1301310998110.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1133029497.1338.1308084030005.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10814?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 16:42:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:42:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10835) File upload: progress bar doesn't show progress In-Reply-To: <1381193769.14482.1301582317931.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2037782982.1341.1308084149512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10835?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 16:44:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:44:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10837) VDL-DOC: update dependency version in the ui/dist pom In-Reply-To: <1781991038.15518.1301616277843.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <900955053.1345.1308084269579.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10837?page=com.atlassian.jira.plugin.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/richfaces-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 From jira-events at lists.jboss.org Tue Jun 14 16:48:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:48:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10840) tooltip:JS error when trying to use attached false and JS API In-Reply-To: <291136187.16778.1301660393684.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <313866169.1349.1308084509462.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10840?page=com.atlassian.jira.plugin.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.position.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 From jira-events at lists.jboss.org Tue Jun 14 16:50:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:50:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10844) Panel menu item: onselect doesn't work in server mode In-Reply-To: <520251096.873.1301918913061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <485682988.1353.1308084629603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10844?page=com.atlassian.jira.plugin.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=server > # set onselect=alert('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 From jira-events at lists.jboss.org Tue Jun 14 16:50:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:50:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10848) New component : rich:hotkey for 4.0 In-Reply-To: <886656099.4706.1302008913221.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <457283902.1359.1308084629890.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10848?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Balunas updated RF-10848: ----------------------------- Summary: New component : rich:hotkey for 4.0 (was: rich:hotkey in 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 From jira-events at lists.jboss.org Tue Jun 14 16:52:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:52:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10849) RichFaces client-side validation: i variable is implicitly declared In-Reply-To: <461639932.4962.1302011973128.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <348820243.1361.1308084749472.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10849?page=com.atlassian.jira.plugin.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 people 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 validate(), 174 line, for (i=0;i potentially dangerous in case one more js with such mistake will be included to page. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:56:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:56:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10853) dataScroller: do not works with a4j:status properly In-Reply-To: <852716568.7602.1302083733119.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1687672453.1366.1308084989509.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10853?page=com.atlassian.jira.plugin.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="status". Seems just not implemented. > [1] > > > > > > > > > id="table" rows="#{userBean.age}"> > ................ > > > > > -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 16:58:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 16:58:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10856) rich:autocomplete - does not work in IE9 In-Reply-To: <1226196663.11200.1302172473142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1412911360.1370.1308085109635.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10856?page=com.atlassian.jira.plugin.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: ?RichFaces 4.1.0-SNAPSHOT r.22359 > ?Metamer 4.1.0-SNAPSHOT r.unknown > ?Mojarra 2.0.4-b09 > ?Apache Tomcat 7.0.6 > ?OpenJDK Runtime Environment 1.6.0_20-b20 @ Linux > ?Internet Explorer 9.0 @ Win32 > Reporter: Luk?? Fry? > 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 From jira-events at lists.jboss.org Tue Jun 14 17:02:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:02:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10862) Autocomplete: does not perform decode of the behaviors In-Reply-To: <1369612777.17714.1302511355546.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <546757499.1389.1308085349959.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10862?page=com.atlassian.jira.plugin.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#603134 (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="false" selectFirst="false" > autocompleteMethod="#{autocompleteBean.autocomplete}" valueChangeListener="#{autocompleteBean.vcl}"> > > > > > > > input calls listener and autocomplete not. Text renderer performs String clientId = 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 From jira-events at lists.jboss.org Tue Jun 14 17:02:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:02:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10864) message: has block layout by default In-Reply-To: <363444066.18318.1302526113892.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <661924391.1391.1308085350023.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10864?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 17:04:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:04:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10866) Queue: RF queuing rules applied to any ajax including standard f: one In-Reply-To: <1761401868.19162.1302532173197.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1007793524.1420.1308085469825.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10866?page=com.atlassian.jira.plugin.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 feature 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 probably 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 From jira-events at lists.jboss.org Tue Jun 14 17:08:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:08:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10867) JS API: switchablePanels: rename a few methods In-Reply-To: <318683276.21869.1302603333292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1903847990.1444.1308085709496.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10867?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608659#comment-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 by 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 item, 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 switchToItem(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 From jira-events at lists.jboss.org Tue Jun 14 17:08:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:08:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10867) JS API: switchablePanels: rename a few methods In-Reply-To: <318683276.21869.1302603333292.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1432192733.1448.1308085709581.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10867?page=com.atlassian.jira.plugin.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 item, 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 switchToItem(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 From jira-events at lists.jboss.org Tue Jun 14 17:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10871) rich:message wrong format of error message In-Reply-To: <184491679.22679.1302617853336.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1532557307.1452.1308085889457.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10871?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:13:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:13:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10872) rich:poppupPanel it is not rendered whole and not rendered on the current user focus In-Reply-To: <1244400385.22719.1302618093477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <548540367.1457.1308086009468.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608663#comment-12608663 ] Jay Balunas commented on RF-10872: ---------------------------------- It is possible for mobile version of this component, or example we will need to re-think the best approach for this behavior. At the very least the standard version running on a mobile device should behave 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-jee6.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 focus 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 From jira-events at lists.jboss.org Tue Jun 14 17:13:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:13:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10872) rich:poppupPanel it is not rendered whole and not rendered on the current user focus In-Reply-To: <1244400385.22719.1302618093477.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1991289595.1460.1308086009530.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10872?page=com.atlassian.jira.plugin.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-jee6.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 focus 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 From jira-events at lists.jboss.org Tue Jun 14 17:15:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:15:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10873) rich:poppupPanel shadow which should block the main screen is not rendered whole In-Reply-To: <1227565437.22727.1302618393178.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <900413652.1464.1308086129655.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10873?page=com.atlassian.jira.plugin.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 rendered 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-jee6.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 is 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 From jira-events at lists.jboss.org Tue Jun 14 17:17:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:17:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign In-Reply-To: <1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <215836601.1472.1308086249549.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10874?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608666#comment-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 believe, 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 visibility 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-jee6.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 panel 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 From jira-events at lists.jboss.org Tue Jun 14 17:17:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:17:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10874) rich:poppupPanel not possible to change the size of poppupPanel, bad visibility of cross sign In-Reply-To: <1850583153.22792.1302619115614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1502759960.1476.1308086249642.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10874?page=com.atlassian.jira.plugin.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 visibility 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-jee6.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 panel 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 From jira-events at lists.jboss.org Tue Jun 14 17:19:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:19:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-10875) rich:collapsibleSubTable bad performance when hiding or showing the subtable on client side In-Reply-To: <673345528.22797.1302619233067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <599339079.1482.1308086369614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10875?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12608669#comment-12608669 ] Jay Balunas commented on RF-10875: ---------------------------------- This might be related to some optimizations that were made as part of the tweetstream example. Although how to resolve in the general component will need to be investigated. > rich:collapsibleSubTable bad performance when hiding or showing the subtable 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-jee6.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 about 3 seconds, which is quite long, when considering that it is on client side. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 17:19:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:19:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10875) rich:collapsibleSubTable bad performance when hiding or showing the subtable on client side In-Reply-To: <673345528.22797.1302619233067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1632966653.1490.1308086369907.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10875?page=com.atlassian.jira.plugin.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 subtable 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-jee6.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 about 3 seconds, which is quite long, when considering that it is on client side. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 17:27:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10876) rich:toolBar links are barely visible In-Reply-To: <41751615.22831.1302619473394.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1613703084.1517.1308086849744.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10876?page=com.atlassian.jira.plugin.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-jee6.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 sample 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 general. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 17:27:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:29 -0400 (EDT) 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 In-Reply-To: <420559164.22880.1302620553096.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2096936358.1522.1308086849932.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10880?page=com.atlassian.jira.plugin.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 work 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-jee6.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 when 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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10877) rich:toolTip client side toolTip has problems to show up In-Reply-To: <1777637295.22841.1302619833142.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <592575504.1526.1308086850061.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10877?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10891) rich:dragSource it is not possible to drag an object In-Reply-To: <422574230.27064.1302769714153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1232562284.1528.1308086850123.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10891?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10878) rich:autoComplete highlighting of choises does not work In-Reply-To: <1773419359.22867.1302620313393.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <2086466202.1534.1308086850333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10878?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10892) components listed in the description were quite difficult to hit In-Reply-To: <251544164.27081.1302770613163.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1857459963.1538.1308086850451.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10892?page=com.atlassian.jira.plugin.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-jee6.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 some 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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10881) rich:extendedDataTable there is no visible sign that you can scrool over this component In-Reply-To: <508836447.22922.1302621153195.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1546770930.1542.1308086850614.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10881?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10889) rich:select highlighting of options does not work In-Reply-To: <1257424365.27013.1302768993590.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1385405460.1544.1308086850674.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10889?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10879) rich:inputSlider it is not possible to slide the slider In-Reply-To: <695283934.22879.1302620553067.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1573472648.1552.1308086850883.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10879?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:27:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:27:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10890) rich:fileUpload nothing happen when I touch add button In-Reply-To: <1290203520.27027.1302769113031.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <593463153.1550.1308086850837.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10890?page=com.atlassian.jira.plugin.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-jee6.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 From jira-events at lists.jboss.org Tue Jun 14 17:33:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 17:33:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10882) Upgrade jQuery to 1.5.2 version In-Reply-To: <1860036842.22956.1302621274906.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1683269610.1558.1308087209446.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10882?page=com.atlassian.jira.plugin.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. Consider upgrading jQuery to that version. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 18:01:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:01:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-10884) action doesn't work on rich:panelMenuGroup In-Reply-To: <2028548071.25493.1302707853097.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <613997415.1617.1308088889512.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10884?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 18:05:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:05:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10925) ELResolver #{bean.property[value]} and graphValidator causes exception In-Reply-To: <744570596.28727.1302796653333.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <249055615.1623.1308089129503.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10925?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 18:05:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:05:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10926) Resources: add minimization for JS/CSS resources In-Reply-To: <840267694.30538.1302868113265.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1076322763.1625.1308089129572.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10926?page=com.atlassian.jira.plugin.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 resources 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 From jira-events at lists.jboss.org Tue Jun 14 18:07:32 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:07:32 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10929) Full control over displayed label in InplaceSelect In-Reply-To: <688414769.31873.1302909213041.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <293292675.1631.1308089252937.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10929?page=com.atlassian.jira.plugin.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, FilteredLabelInplaceSelectHandler.java, FilteredLabelInplaceSelectRenderer.java, HtmlFilteredLabelInplaceSelect.java > > > This patch is somewhat related to this one - https://issues.jboss.org/browse/RF-4302, but it takes that improvement a step further. > In the patch above, Greg introduced a new attribute (_showValueInView_) to enable the component to display the value as the label. This is very useful, but I think it doesn't take it far enough. There are situations where it would be useful to have complete control over the label displayed once the 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 extended _InplaceSelect_ to make a _FilteredLabelInplaceSelect_ which takes one extra argument called _filterDisplayLabelMethod_ that takes a _MethodExpression_ that points to a method which takes a _SelectItem_ and returns the desired label string. > Like this: > {code:title=Usage} > value="#{backingBean.targetMeasurementDetailOid}" > filterDisplayLabelMethod="#{backingBean.filterLabelDisplayValue}"> > > > {code} > {code:title=Backing Bean} > public String filterLabelDisplayValue(SelectItem item) { > String label = item.getLabel(); > if ( label != null && label.contains("-") ) { > StringTokenizer t = new StringTokenizer(label); > if ( t.hasMoreTokens() ) { > label = t.nextToken(); > } > } > > return label; > } > {code} > So, this component achieves server side label filtering with just a few changes. 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 way 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 you 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 patch (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 From jira-events at lists.jboss.org Tue Jun 14 18:09:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:09:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10930) calendar: decode of the behavior not occurs for custom events In-Reply-To: <293799868.33581.1303119933220.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <191092444.1638.1308089369574.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10930?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 18:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10932) MyFaces: upgrade to 2.0.5 release In-Reply-To: <541888875.34949.1303140933284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <517045468.1642.1308089489603.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10932?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 18:11:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:11:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10936) dataScroller: Ajax request not customizable In-Reply-To: <2017755012.37818.1303206153711.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1981072576.1650.1308089489858.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10936?page=com.atlassian.jira.plugin.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="@form"(ajaxSingle="false") was required by 3.3.3 customers 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 From jira-events at lists.jboss.org Tue Jun 14 18:13:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:13:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10941) a4j:command* components misses default behavior event In-Reply-To: <1049007299.42458.1303309173106.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1606803558.1653.1308089609465.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10941?page=com.atlassian.jira.plugin.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 From jira-events at lists.jboss.org Tue Jun 14 18:15:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:15:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10942) fileUpload: missing options to define list sizes In-Reply-To: <1706892066.44673.1303371393044.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <128530011.1657.1308089729734.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10942?page=com.atlassian.jira.plugin.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 users 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 have 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 From jira-events at lists.jboss.org Tue Jun 14 18:15:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:15:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10947) rich:dragSource doesn't work after being rerendered via ajax In-Reply-To: <11392280.1312.1303403598427.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <903409633.1660.1308089729812.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10947?page=com.atlassian.jira.plugin.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 dragSource 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 very 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 the 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 From jira-events at lists.jboss.org Tue Jun 14 18:17:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:17:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10952) FileUpload component does not have a "clear" handler. In-Reply-To: <740293922.6818.1303745419153.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <594648109.1674.1308089849508.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10952?page=com.atlassian.jira.plugin.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=0 (was: http://community.jboss.org/thread/165816?tstart=0) > 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 > > > should 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 From jira-events at lists.jboss.org Tue Jun 14 18:21:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:21:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10956) Archetypes: GAE archetype references missing taglib resource In-Reply-To: <1643021387.14846.1303930518576.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1289407896.1681.1308090089471.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10956?page=com.atlassian.jira.plugin.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=0 (was: http://community.jboss.org/thread/165780?tstart=0) > 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 From jira-events at lists.jboss.org Tue Jun 14 18:23:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:23:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10957) message and messages components missing some attributes annotation In-Reply-To: <210217616.15210.1303937538325.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <102949539.1684.1308090209588.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10957?page=com.atlassian.jira.plugin.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?n Jamrich > Priority: Critical > Fix For: 4.1.0.Final > > > Missing some attributes declared by faces-config.xml (and suggested by IDE) in Metamer (missing annotations for them on appropriate fields in UI* implementation): > dir, lang, onclick, ondblclick, onkeydown, onkeypress, onkeyup, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup, style, styleClass, title. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira From jira-events at lists.jboss.org Tue Jun 14 18:23:29 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:23:29 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10958) Unnecessary attributes in faces-config.xml for message component In-Reply-To: <739306479.15213.1303938078284.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1024740612.1690.1308090209791.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10958?page=com.atlassian.jira.plugin.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?n Jamrich > Priority: Minor > Fix For: 4.1.0.Final > > > There are some unnecessary attributes in faces-config.xml for rich:message component, such as: rendererType, rendersChildren. childCount, children, family, facets. > These attributes then are suggested by IDE to fill by some value, which should confuse developers. > Another possible unnecessary attributes are: onkeydown, onkeypress and onkeyup 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 From jira-events at lists.jboss.org Tue Jun 14 18:23:30 2011 From: jira-events at lists.jboss.org (Jay Balunas (JIRA)) Date: Tue, 14 Jun 2011 18:23:30 -0400 (EDT) Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-10961) tabPanel causes NullPointerException if activeItem is not found In-Reply-To: <127938302.16762.1303981458273.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> Message-ID: <1643306225.1703.1308090210139.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> [ https://issues.jboss.org/browse/RF-10961?page=com.atlassian.jira.plugin.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 (was: 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 > > >