[JBoss JIRA] Created: (RF-3066) Problem with rerendering combobox in simpleTogglePanel
by Rafal Kowalski (JIRA)
Problem with rerendering combobox in simpleTogglePanel
------------------------------------------------------
Key: RF-3066
URL: http://jira.jboss.com/jira/browse/RF-3066
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0, 3.2.1
Environment: IE 6, Firefox 2.0.0.13
Reporter: Rafal Kowalski
Priority: Critical
I have code like this:
<rich:simpleTogglePanel height="200px" switchType="ajax">
<rich:comboBox directInputSuggestions="true" defaultLabel="Enter some value" valueChangeListener="#{eRegCriteria.sugDocts.onSelectListener}" id="combo">
<f:selectItems value="#{eRegCriteria.sugDocts.doctorsList}"/>
<a4j:support event="onselect" reRender="combo"/>
</rich:comboBox>
</rich:simpleTogglePanel>
and after item's selecting, I can't expand combobox by click on arrow.
By typing it doesn't work too.
Only one (chosen) item is visible in combobox.
Tested on Firefox 2.0.0.13 and IE 6.
FireBug shows that div combolist is ok but it has property display:none every time.
I tested it more and I observed that it occurs only when combobox is located on <rich:simpleTogglePanel>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 10 months
[JBoss JIRA] Created: (RF-2865) Tree: JS error when using keyboard navigation
by Tsikhon Kuprevich (JIRA)
Tree: JS error when using keyboard navigation
---------------------------------------------
Key: RF-2865
URL: http://jira.jboss.com/jira/browse/RF-2865
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: 3.2.0.CR7
FF
Reporter: Tsikhon Kuprevich
Assigned To: Nick Belaevski
1. Click a collapsed node.
2. Click right or down keyboard arrow
=>
handleElt.onclick is not a function
expand()tree-item.js.jsf (line 274)
processKeyDown(keydown charCode=0, keyCode=39)tree-selection.js... (line 130)
bindAsEventListener(keydown charCode=0, keyCode=39)a4j_3_2_0.CR7org.... (line 217)
wrapper(keydown charCode=0, keyCode=39)a4j_3_2_0.CR7org.... (line 3850)
[Break on this error] handleElt.onclick();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 10 months
[JBoss JIRA] Created: (RF-1542) context menu doesn't collapsed while come submenu item overed and further mouseout
by Ilya Shaikovsky (JIRA)
context menu doesn't collapsed while come submenu item overed and further mouseout
----------------------------------------------------------------------------------
Key: RF-1542
URL: http://jira.jboss.com/jira/browse/RF-1542
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.3
Reporter: Ilya Shaikovsky
Assigned To: Maksim Kaszynski
Fix For: 3.1.3, 3.2.0
<h:panelGroup id="test" layout="block" style="width:1px;">
<h:graphicImage value="/richfaces/jQuery/images/pic1.jpg" id="pic">
</h:graphicImage>
<rich:contextMenu event="onmouseover" attached="true">
<rich:menuItem value="Enlarge"></rich:menuItem>
<rich:menuItem value="Open in new window"></rich:menuItem>
<rich:menuGroup value="Save">
<rich:menuItem value="Download image"></rich:menuItem>
<rich:menuItem value="Copy to clipboard"></rich:menuItem>
<rich:menuItem value="Copy image adress"></rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
</h:panelGroup>
Call the menu through mouseover. Then just leave the menu without overing any items. It will not collapse.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 10 months
[JBoss JIRA] Created: (RF-4758) rich:datatable sorting all tables when they are in a a4j:repeat
by Leonardo Bernardelli (JIRA)
rich:datatable sorting all tables when they are in a a4j:repeat
---------------------------------------------------------------
Key: RF-4758
URL: https://jira.jboss.org/jira/browse/RF-4758
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: Jboss 4.2.2 Jboss seam 2.0.2GA firefox 3.0.3 IE 6
Reporter: Leonardo Bernardelli
I have a <rich:datatable> into a <a4j:repeat> tag, when a I sort a column in a table, all tables are being sorted.
Code Example:
<a4j:repeat id="containers" value="#{personContainerController.listPersonContainerByCommunityAndSpaceAcronym(identity.currentCommunity, page)}" var="container" rowKeyVar="rowCount">
<h:form id="yellowPagesList" styleClass="inline">
<s:div id="div-list-id" styleClass="div-list" rendered="#{identity.hasPermission(constantsUtil.getEventKey('LIST_PROFILE_EVENT_KEY'), identity.currentCommunity)}">
<rich:dataTable id="listPerson#{container.id}" value="#{personController.listActivePersonByPersonContainerPrefix(container, param['initialLetter'])}" var="person"
cellspacing="2px"
styleClass="table div-table-list"
rowClasses="table-row-background-gray table-row-background-gray-spacing,table-row-background-white table-row-background-white-spacing">
<rich:column id="col1#{container.id}" headerClass="table-title table-title-spacing" sortBy="#{person.name}" >
<f:facet id="tit1" name="header">
<h:outputText value="#{container.role.name} (#{personController.getPeopleListFromMap(container).size})" />
</f:facet>
<h:graphicImage value="#{person.contractType.imageURL}" />
<rich:spacer width="5" />
<s:link id="viewPersonName" value="#{person.name}" action="viewProfile">
<f:param value="#{person.id}" name="personId" />
</s:link>
</rich:column>
<rich:column id="col2#{container.id}" headerClass="table-title table-title-spacing" sortBy="#{person.key}">
<f:facet id="tit2" name="header">
<h:outputText value="#{messages['person.key']}" />
</f:facet>
<s:link id="viewPersonKey" value="#{person.key}" action="viewProfile">
<f:param value="#{person.id}" name="personId" />
</s:link>
</rich:column>
<rich:column id="col3#{container.id}" headerClass="table-title table-title-spacing" sortBy="#{person.nickname}">
<f:facet name="header">
<h:outputText value="#{messages['person.nickname']}" />
</f:facet>
<s:link id="viewPersonNickName" value="#{person.nickname}" action="viewProfile">
<f:param value="#{person.id}" name="personId" />
</s:link>
</rich:column>
<rich:column id="col4#{container.id}" headerClass="table-title table-title-spacing" sortBy="#{person.operationArea}">
<f:facet name="header">
<h:outputText value="#{messages['person.operationArea']}" />
</f:facet>
<h:outputText value="#{person.operationArea}" />
</rich:column>
</rich:dataTable>
</s:div>
</h:form>
</a4j:repeat>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 10 months
[JBoss JIRA] Created: (RF-6279) Seam excel generating problem with rich dataTable sorting and filtering features.
by Mikhail Vitenkov (JIRA)
Seam excel generating problem with rich dataTable sorting and filtering features.
---------------------------------------------------------------------------------
Key: RF-6279
URL: https://jira.jboss.org/jira/browse/RF-6279
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.0.GA, seam 2.0.2.GA)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Put jboss-seam-excel.jar and jxl.jar in your project lib folder.
#2. Configure web.xml following way:
<servlet>
<servlet-name>Document Store Servlet Excel</servlet-name>
<servlet-class>org.jboss.seam.excel.DocumentStoreServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Document Store Servlet Excel</servlet-name>
<url-pattern>*.xls</url-pattern>
</servlet-mapping>
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>seam-excel</param-value>
</context-param>
#3. Configure components.xml. Add following string:
In taglib: xmlns:excel="http://jboss.com/products/seam/excel"
<excel:document-store use-extensions="true"/>
#4. Add following code on the page:
<h:form id="theForm">
<rich:dataTable value="#{excel.dataModel}" var="dat"
id="theDataTable">
<rich:column sortBy="#{dat}" selfSorted="true"
filterBy="#{dat}" filterEvent="onblur">
<h:outputText value="#{dat}" />
</rich:column>
</rich:dataTable>
<h:commandLink value="Export"
action="#{org.jboss.seam.excel.excelExporter.export('theForm:theDataTable')}" />
</h:form>
#5. Navigate to the page and sort dataTable data descending by click on column header.
#6. Click "Export" and verify excel exported data. - data in initial order present.
#7. Make filtering, click "Export" and verify excel exported data again. - all rows are present regardless of data filtering.
Actual behavior: filtering and sorting don't have an influence on excel exported data.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 10 months