A new showform/objpref/pref/config/settings option... 'textbox'
I think this would be quite good, and you could have a little tickbox for whether or not LotGD should return an 'nl2br'd string.
Maybe it could act like range?
textbox,<NUM OF COLS>,<NUM OF ROWS>
You mean this? (from showform)
case "textarea":
$cols = $info[2];
if (!$cols) $cols = 70;
rawoutput("<textarea class='input' name='$keyout' cols='$cols' rows='5'>".htmlentities(str_replace("`n", "\n", $row[$key]))."</textarea>");
break;
No, it doesn't allow you to specify the rows, but that would be about ... 2 lines of code?
Not something I really see the need for though, 5 lines in a block are generally enough for a quick edit box.