Problems with Tab View and Text Area

I have the following XML code for a TextArea using JMix 2.6.2 with TAB View

<textArea id="descrizioneField" height="9.5em" property="descrizione"/>

When i press Enter on the TextArea, NewLine is Ignored and i a am not able to get it in the TextArea, every other digited char works fine

Debugging with Browser console i have found this javascript FlowClient-IakaH1D6.js, that blocks keydown event. If i remove it from broswer Enter Key Code is accepted and i got the newline

Somebody can help me

Hi,

Unfortunately, I cannot reproduce the issue. Could you please provide a demo project that reproduces the problem?

Regards,
Gleb

Hi @gorelov ,

We’ve identified and resolved an issue.

The problem occurred when at least two tabs were open, and one of them has a Kanban component.
The following tag was intercepting the “Enter” key due to its shortcutCombination configuration:

<kanban:action id="edit" type="list_edit">
                    <kanban:properties>
                        <kanban:property name="openMode" value="DIALOG"/>
                    </kanban:properties>
                </kanban:action>

Unexpectedly, this interception affected not only the tab with the Kanban component but also other tabs.

Since we didn’t require the shortcut functionality, we resolved the issue by removing the tag entirely.

Cheers,
Max