PITS /
00557: Size of edit textarea is hardcoded
Summary: Size of edit textarea is hardcoded
Created: 2005-10-16 10:40
Status: Closed - already exists
Category: Feature
From: Elsni
Assigned:
Priority: 3
Version: 2.0.10
OS:
Description: I'd like to have the size of the edit textarea bigger, but it is hardcoded. Please make that configurable.
It's not hardcoded. It can be set in the Site.EditForm by changing
(:input e_textarea)
to
(:input e_textarea rows=40 cols=80:)
It can also be changed in local/config.php by using
XLSDV('en', array('e_rows' => 40, 'e_cols' => 80));
Lastly, it can be set on a per-user or per-browser basis, see Cookbook.UserConfigurations for a mechanism to allow each user to set his/her own textarea size.
--Pm