Limit of TextArea

Hi All
I have a richtextArea which is displaying a TEXT databasefield ( around 2’000 characters ).

When i use replace the richtextArea with a textArea, the text gets displayed, but i can only edit it, if the fulltextlength is smaller then 274 characters.

In the jmix.io samples of the textarea, i am able to edit the longer text.

Is this because of the databinding to a TEXT Field from MariaDB ? And why in richTextArea with the same databinding it works fine ?

Regards
Felix

Hi,

How does the field definition in the entity look like?

Is it just

    @Column(name = "LIMITED_FIELD")
    private String limitedField;

or

    @Column(name = "LIMITED_FIELD", length = 2000)
    private String limitedField;

or

    @Column(name = "LONG_FIELD")
    @Lob
    private String longField;
1 Like

Hi Maxim

@Lob
@NotNull
@Column(name = `Description`, nullable = false)
private String description;|

This what i have in the field definition. I did alter the field later. And now it is working !

Thank you