diff options
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 7bf44320d..f3c91b2e5 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4620,6 +4620,14 @@ function rcube_webmail() if (colprop.type == 'date' && $.datepicker) input.datepicker(); } + else if (colprop.type == 'textarea') { + input = $('<textarea>') + .addClass('ff_'+col) + .attr({ name: '_'+col+name_suffix, cols:colprop.size, rows:colprop.rows }) + .appendTo(cell); + + this.init_edit_field(col, input); + } else if (colprop.type == 'composite') { var childcol, cp, first, templ, cols = [], suffices = []; // read template for composite field order |