]
Toni Rikkola updated DROOLS-2373:
---------------------------------
Labels: drools-tools (was: )
BRL "is contained in the (comma separated) list" does not
produce multiselect dropdown
--------------------------------------------------------------------------------------
Key: DROOLS-2373
URL:
https://issues.jboss.org/browse/DROOLS-2373
Project: Drools
Issue Type: Bug
Components: Guided Decision Table Editor, Guided Rule Editor, Guided Template
Editor
Affects Versions: 7.6.0.Final
Environment: Tomcat 8.5 / RHEL 7
Reporter: Yannick Geerts
Assignee: Toni Rikkola
Priority: Major
Labels: drools-tools
Google groups link:
https://groups.google.com/forum/#!topic/drools-usage/VElZ3KAZMIs
*Edited*
The problem is that in the piece of code below the expression {{column.getOperator()}}
returns null.
{{BRLConditionVariableColumnConverter#convertColumn}}
{code:java}
if (OperatorsOracle.operatorRequiresList(column.getOperator())) {
return newMultipleSelectEnumColumn(factType,
factField,
column,
access,
gridWidget);
} else {
return newSingleSelectionEnumColumn(factType,
factField,
dataType,
column,
access,
gridWidget);
}
{code}