[JBoss JIRA] (DROOLS-4772) [DMN Designer] Open Properties panel by default
by Jozef Marko (Jira)
[ https://issues.jboss.org/browse/DROOLS-4772?page=com.atlassian.jira.plugi... ]
Jozef Marko updated DROOLS-4772:
--------------------------------
Attachment: switch-dmns.webm
> [DMN Designer] Open Properties panel by default
> -----------------------------------------------
>
> Key: DROOLS-4772
> URL: https://issues.jboss.org/browse/DROOLS-4772
> Project: Drools
> Issue Type: Task
> Components: DMN Editor
> Affects Versions: 7.29.0.Final
> Reporter: Lubomír Terifaj
> Assignee: Michael Anstis
> Priority: Major
> Labels: drools-tools
> Attachments: switch-dmns.webm
>
>
> To improve user experience and let users locate Properties panel more easily, it should be opened by default when opening DMN editor.
> h4. Acceptance criteria
> After DMN editor is opened, Properties panel is opened immediately without any interaction required.
> It is possible to close and open it back using "Properties panel button".
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months
[JBoss JIRA] (DROOLS-4789) newline within the rule cell of spreadsheet is included as a value incorrectly
by Hiroko Miura (Jira)
[ https://issues.jboss.org/browse/DROOLS-4789?page=com.atlassian.jira.plugi... ]
Hiroko Miura updated DROOLS-4789:
---------------------------------
Environment:
+- spreadsheet
- RHDM7.5.0+
was:
- spreadsheet
- 7.26.0.Final and later
> newline within the rule cell of spreadsheet is included as a value incorrectly
> ------------------------------------------------------------------------------
>
> Key: DROOLS-4789
> URL: https://issues.jboss.org/browse/DROOLS-4789
> Project: Drools
> Issue Type: Bug
> Components: decision tables
> Affects Versions: 7.26.0.Final
> Environment: +- spreadsheet
> - RHDM7.5.0+
> Reporter: Hiroko Miura
> Assignee: Mario Fusco
> Priority: Major
> Labels: support
>
> When there is new line in rule cell with specific condition, new line('\n') is included as a value.
> Here is generated problematic DRL.
> {noformat}
> rule "newlineInCell_11"
> when
> m:Message(map["Key1"] == var1,
> map["\nKey2"] == var2) <== HERE
> then
> System.out.println(m.getMessage());
> m.setMessage("Goodbye cruel world");
> m.setStatus(Message.GOODBYE);
> end
> {noformat}
> This does happen with 7.26.0.Final(RHDM7.5.0), but not with 7.23.0.Final(7.4.x).
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months
[JBoss JIRA] (DROOLS-4788) newline within the rule cell of spreadsheet is included as a value incorrectly
by Hiroko Miura (Jira)
[ https://issues.jboss.org/browse/DROOLS-4788?page=com.atlassian.jira.plugi... ]
Hiroko Miura updated DROOLS-4788:
---------------------------------
Workaround Description:
If double quotes is set in rule cell instead of template like the following, this can be avoided.
- template (BAD)
map["$1"] $2,
map["$3"],$4
- rule cell (BAD)
Key1, == var1,
Key2, == var2
- template (GOOD)
map[$1] $2,
map[$3],$4
- rule cell (GOOD)
"Key1", == var1,
"Key2", == var2
was:
If double quotes is set in rule cell instead of template like the following, this can be avoided.
### template (BAD)
map["$1"] $2,
map["$3"],$4
### rule cell (BAD)
Key1, == var1,
Key2, == var2
### template (GOOD)
map[$1] $2,
map[$3],$4
### rule cell (GOOD)
"Key1", == var1,
"Key2", == var2
> newline within the rule cell of spreadsheet is included as a value incorrectly
> ------------------------------------------------------------------------------
>
> Key: DROOLS-4788
> URL: https://issues.jboss.org/browse/DROOLS-4788
> Project: Drools
> Issue Type: Bug
> Components: decision tables
> Affects Versions: 7.26.0.Final
> Environment: - spreadsheet
> - 7.26.0.Final and later
> Reporter: Hiroko Miura
> Assignee: Mario Fusco
> Priority: Major
> Labels: support
> Attachments: newlineInConditionCellTest.zip
>
>
> When there is new line in rule cell with specific condition, new line('\n') is included as a value.
> Here is generated problematic DRL.
> {noformat}
> rule "newlineInCell_11"
> when
> m:Message(map["Key1"] == var1,
> map["\nKey2"] == var2) <== HERE
> then
> System.out.println(m.getMessage());
> m.setMessage("Goodbye cruel world");
> m.setStatus(Message.GOODBYE);
> end
> {noformat}
> This does happen with 7.26.0.Final(RHDM7.5.0), but not with 7.23.0.Final(7.4.x).
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months
[JBoss JIRA] (DROOLS-4789) newline within the rule cell of spreadsheet is included as a value incorrectly
by Hiroko Miura (Jira)
Hiroko Miura created DROOLS-4789:
------------------------------------
Summary: newline within the rule cell of spreadsheet is included as a value incorrectly
Key: DROOLS-4789
URL: https://issues.jboss.org/browse/DROOLS-4789
Project: Drools
Issue Type: Bug
Components: decision tables
Affects Versions: 7.26.0.Final
Environment: - spreadsheet
- 7.26.0.Final and later
Reporter: Hiroko Miura
Assignee: Mario Fusco
When there is new line in rule cell with specific condition, new line('\n') is included as a value.
Here is generated problematic DRL.
{noformat}
rule "newlineInCell_11"
when
m:Message(map["Key1"] == var1,
map["\nKey2"] == var2) <== HERE
then
System.out.println(m.getMessage());
m.setMessage("Goodbye cruel world");
m.setStatus(Message.GOODBYE);
end
{noformat}
This does happen with 7.26.0.Final(RHDM7.5.0), but not with 7.23.0.Final(7.4.x).
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months
[JBoss JIRA] (DROOLS-4788) newline within the rule cell of spreadsheet is included as a value incorrectly
by Hiroko Miura (Jira)
Hiroko Miura created DROOLS-4788:
------------------------------------
Summary: newline within the rule cell of spreadsheet is included as a value incorrectly
Key: DROOLS-4788
URL: https://issues.jboss.org/browse/DROOLS-4788
Project: Drools
Issue Type: Bug
Components: decision tables
Affects Versions: 7.26.0.Final
Environment: - spreadsheet
- 7.26.0.Final and later
Reporter: Hiroko Miura
Assignee: Mario Fusco
Attachments: newlineInConditionCellTest.zip
When there is new line in rule cell with specific condition, new line('\n') is included as a value.
Here is generated problematic DRL.
{noformat}
rule "newlineInCell_11"
when
m:Message(map["Key1"] == var1,
map["\nKey2"] == var2) <== HERE
then
System.out.println(m.getMessage());
m.setMessage("Goodbye cruel world");
m.setStatus(Message.GOODBYE);
end
{noformat}
This does happen with 7.26.0.Final(RHDM7.5.0), but not with 7.23.0.Final(7.4.x).
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years, 6 months