How can I limit the length of the text, e.g., 50, and put three dots in the display?
{% if myentity.text|length > 50 %} {% block td_text %} {{ myentity.text}
why not use twig's truncate or wordwrap filter? It belongs to twig extensions and lib is part of Symfony2.0 as i see.
{{ text|truncate(50) }}