Changeset 5a79416 in github


Ignore:
Timestamp:
Apr 21, 2012 12:25:20 PM (13 months ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo
Children:
862de1b
Parents:
b1b808d
Message:

Add (missing) support for textarea cols to be added to the contact form

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/js/app.js

    rc31360d r5a79416  
    46214621            input.datepicker(); 
    46224622        } 
     4623        else if (colprop.type == 'textarea') { 
     4624          input = $('<textarea>') 
     4625            .addClass('ff_'+col) 
     4626            .attr({ name: '_'+col+name_suffix, cols:colprop.size, rows:colprop.rows }) 
     4627            .appendTo(cell); 
     4628 
     4629          this.init_edit_field(col, input); 
     4630        } 
    46234631        else if (colprop.type == 'composite') { 
    46244632          var childcol, cp, first, templ, cols = [], suffices = []; 
Note: See TracChangeset for help on using the changeset viewer.