Hi there,
I assume that you are talking about the display of the text in the frontend.
In the list view, which is generated via the "Visforms >> Form data" menu item, Visforms shortens the text to 255 characters and inserts the three dots at the end...
The complete text is then displayed in the detailed view.
We have implemented this so that the list view is not optically distorted by very long texts.
This behavior can be changed by a layout override of the components/com_visforms/layouts/visforms/datas/fields/textarea.php file.
You can find instructions on how to create an override here:
www.vi-solutions.de/en/documentations/vi...layout-with-override
Just comment the code at line 32 - 34 in your override file llike this
Code:
default:
/* if (StringHelper::strlen($text) > 255) {
$text = StringHelper::substr($text, 0, 255) . "...";
} */
break;
If you use the Visforms Data content plugin to display the data, you can use a "maxtextlength" parameter to determine whether the text for the display is shortened or not. And to what length it is shortened. See:
www.vi-solutions.de/en/documentations/vi...taview-parameterlist
Regards,
Aicha