Changeset 568


Ignore:
Timestamp:
Jun 16, 2010, 2:27:55 PM (13 years ago)
Author:
duh
Message:
  • bugfix for issue #98 (person selects are empty and add/modify do not work)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/taglib/dbnp/studycapturing/WizardTagLib.groovy

    r567 r568  
    12191219                selectAttrs.name = attrs.name + '_person';
    12201220
     1221                // add a dummy field
     1222                selectAttrs.from.add(0,'')
     1223
    12211224                out << "Person: " + select(selectAttrs)
    12221225        }
     
    12391242                selectAttrs.name = attrs.name + '_role';
    12401243
     1244                // add a dummy field
     1245                selectAttrs.from.add(0,'')
     1246
    12411247                out << "Role: " + select(selectAttrs)
    12421248        }
Note: See TracChangeset for help on using the changeset viewer.