[JBoss JIRA] Created: (RF-3806) suggestionBox: actionListener of a4j:htmlCommandLink doesn't call inside the component.
by Mikhail Vitenkov (JIRA)
suggestionBox: actionListener of a4j:htmlCommandLink doesn't call inside the component.
---------------------------------------------------------------------------------------
Key: RF-3806
URL: http://jira.jboss.com/jira/browse/RF-3806
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: IE6, IE7, FF 3.0, Opera 9.27, Safari 3.1
Reporter: Mikhail Vitenkov
Assigned To: Nick Belaevski
Step 1. Put a4j:htmlCommandLink inside suggestionBox:
h:column>
<a4j:htmlCommandLink actionListener="#{sb.selectValue}" value="Click me!"/>
</h:column>
Step 2. Create selectValue method:
public void selectValue(ActionEvent actionEvent){
System.out.println("----inside selectValue(ActionEvent actionEvent)-----");
}
Step 3. Call suggestionBox by enter a character into it's input.
Step 4. Click on "Click me!" link.
Actual behavior:
ActionListener isn't call.
--
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
15 years, 5 months
[JBoss JIRA] Created: (RF-6280) Seam excel generating problem with rich scrollableDataTable sorting feature.
by Mikhail Vitenkov (JIRA)
Seam excel generating problem with rich scrollableDataTable sorting feature.
----------------------------------------------------------------------------
Key: RF-6280
URL: https://jira.jboss.org/jira/browse/RF-6280
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:scrollableDataTable value="#{excel.dataModel}" var="dat"
id="theDataTable" width="200px" height="100px">
<rich:column sortExpression="#{dat}" sortable="true">
<f:facet name="header">
<h:outputText value="header" />
</f:facet>
<h:outputText value="#{dat}" />
</rich:column>
</rich:scrollableDataTable>
<br />
<h:commandLink value="Export"
action="#{org.jboss.seam.excel.excelExporter.export('theForm:theDataTable')}" />
#5. Navigate to the page and sort scrollableDataTable data descending by click on column header.
#6. Click "Export" and verify excel exported data. - data in initial order present.
Actual behavior: sorting doesn'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
15 years, 5 months
[JBoss JIRA] Created: (RF-5646) Command stops to work if menuItem with submitMode=none contains command component
by Andrei Markavtsov (JIRA)
Command stops to work if menuItem with submitMode=none contains command component
---------------------------------------------------------------------------------
Key: RF-5646
URL: https://jira.jboss.org/jira/browse/RF-5646
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Andrei Markavtsov
Assignee: Nick Belaevski
Fix For: Future
<h:form>
<h:outputLink value="#" id="parentLink">
<h:outputText value="Parent Link"></h:outputText>
</h:outputLink>
<rich:contextMenu id="contextMenu"
attachTo="parentLink"
event="onclick">
<rich:menuItem id="item4" submitMode="none" value="{message4}">
<h:commandLink value="Test">
</h:commandLink>
</rich:menuItem>
</rich:contextMenu>
<h:commandLink value="Load"></h:commandLink>
</h:form>
'Test' command link inside menu Item does not work.
Also 'Load' command link does not work too.
--
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
15 years, 5 months