Add configuration support for DecisionTableConfiguration
--------------------------------------------------------
Key: SEAMDROOLS-10
URL: https://jira.jboss.org/browse/SEAMDROOLS-10
Project: Seam Drools
Issue Type: Feature Request
Reporter: Tihomir Surdilovic
Add configuration support for DecisionTableConfiguration
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
EntityQuery.getCountEjbql on composite key table within Oracle doesn't work.
----------------------------------------------------------------------------
Key: JBSEAM-4376
URL: https://jira.jboss.org/jira/browse/JBSEAM-4376
Project: Seam
Issue Type: Bug
Components: Framework
Affects Versions: 2.2.0.GA
Reporter: David Thompson
Priority: Minor
EntityQuery on a table with a composite primary key within an Oracle 10g database fails due to the fact that getCountEjbql fails trying to query. Oracle requires the setUseWildcardAsCountQuerySubject set to true. I have <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/> set in my persistence.xml, however, the code does not query with wildcard. This is related to the fix JBSEAM-3032.
--
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
Add support for Channel registration and integration
----------------------------------------------------
Key: SEAMDROOLS-7
URL: https://jira.jboss.org/browse/SEAMDROOLS-7
Project: Seam Drools
Issue Type: Feature Request
Reporter: Tihomir Surdilovic
Add support for Channel registration and integration
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
s:selectItems doesn't work inside rich:inputplaceselect tag
-----------------------------------------------------------
Key: JBSEAM-4707
URL: https://jira.jboss.org/browse/JBSEAM-4707
Project: Seam
Issue Type: Feature Request
Components: JSF Controls
Affects Versions: 2.2.1.CR2
Reporter: Ricardo Martinelli Oliveira
Priority: Minor
The following code generate a blank space in XHTML. Using h:selectOneMenu the code works and generate a combobox with all values returned by produtosList.resultList.
<rich:inplaceSelect
value="#{item.produtos}"
defaultLabel="Insira um produto.">
<s:selectItems
value="#{produtosList.resultList}"
var="produto"
label="#{produto.desProduto}"/>
<s:convertEntity/>
</rich:inplaceSelect>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Change DroolsConfig to use the @Generic bean API
------------------------------------------------
Key: SEAMDROOLS-5
URL: https://jira.jboss.org/browse/SEAMDROOLS-5
Project: Seam Drools
Issue Type: Feature Request
Reporter: Tihomir Surdilovic
Change DroolsConfig to use the @Generic bean API
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Add ability to automatically register custom operators
------------------------------------------------------
Key: SEAMDROOLS-4
URL: https://jira.jboss.org/browse/SEAMDROOLS-4
Project: Seam Drools
Issue Type: Feature Request
Reporter: Tihomir Surdilovic
Add ability to automatically register custom operators to in KnowledgeBuilderConfiguration
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Seam excel exporter doesn't show the footer defined in a dataTable and only works for single UIOutput per cell.
---------------------------------------------------------------------------------------------------------------
Key: JBSEAM-4189
URL: https://jira.jboss.org/jira/browse/JBSEAM-4189
Project: Seam
Issue Type: Feature Request
Affects Versions: 2.1.1.GA
Reporter: Gary Hu
We have found two issues in the current Seam 2.1.1.GA Excel exporter support.
1) It only works for a single UIOutput per cell. That means for each cell you can only define one UIOutput per column in the dataTable.
2) The footer doesn't show in the excel spreadsheet.
The following code could be used to reproduce the issue:
xhtml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
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:s="http://jboss.com/products/seam/taglib"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<ui:composition template="layout/template.xhtml">
<ui:define name="body">
<h:form id="myForm">
<rich:dataTable id="dlist"
value="#{stringList}"
var="myString">
<rich:column>
<f:facet name="header">
<h:outputText value="String value"/>
</f:facet>
<h:outputText value="#{myString}"/>
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="String value2"/>
</f:facet>
<h:outputText value="#{myString}_1"/>
<h:outputText value="#{myString}_2"/>
<f:facet name="footer">
<h:outputText value="my footer3" style="font-weight: bold" >
</h:outputText>
</f:facet>
</rich:column>
</rich:dataTable>
<h:commandLink value="Export" action="#{excelExporter.export('myForm:dlist')}"/>
</h:form>
</ui:define>
</ui:composition>
</html>
java code:
import java.util.ArrayList;
import java.util.List;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Factory;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
@Name("sample")
@Scope(ScopeType.SESSION)
public class Sample {
@Factory("stringList")
public List<String> getStrList(){
List<String> strList = new ArrayList<String>();
for(int i=0;i<20;i++) {
strList.add("StringItem"+i);
}
return strList;
}
}
--
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