unfoldadmin / django-unfold

Modern Django admin theme for seamless interface development
https://unfoldadmin.com
MIT License
1.03k stars 96 forks source link

fix: unable to set custom rows length for textarea widget #343

Open jdenisTLM opened 1 month ago

jdenisTLM commented 1 month ago

By default, textarea rows is set to 2 in UnfoldAdminTextareaWidget. But it is not possible to change this value, because it is systematicaly updated by the init function of this widget.

lukasvinclav commented 1 month ago

@jdenisTLM yes, this will allow to set "rows" attribute for textarea BUT it will not change the default height of the textarea because its height is adjusting based on the content.

In general, having this feature is okay but we have to find a way how to set approriate min height to hidden div below the textarea which is responsible for auto resizing.