Ignore:
Timestamp:
Mar 5, 2010, 3:21:52 PM (13 years ago)
Author:
duh
Message:

Refectored version of the wizard

  • initial template page has been removed, now is a generic 'start' page where one (in the future) may create a new study, or load and modify an already stored study
  • study page incorporates study template select element, but does not yet incorporate the study template fields
  • subjects page now allows creation of subjects based on a template. This change also implied the study page altogether had to change into a seperate table entity. Now the the page lists as many tables as unique templates have been selected. These tables contain all subjects that were added using that particular template. NOTE: data is not stored yet, due to the fact that templateEntity does not work properly yey (key/value pairs need to be set correctly when calling the setTemplate method)
  • the JavaScript? now handles multiple tables in a page as well, and automatically initializes any underlying slider div if that is required
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/dbnp/studycapturing/TemplateFieldListItem.groovy

    r228 r238  
    11package dbnp.studycapturing
    22
    3 class TemplateFieldListItem {
    4 
     3/**
     4 * TemplateFieldListItem Domain Class
     5 *
     6 * Revision information:
     7 * $Rev$
     8 * $Author$
     9 * $Date$
     10 */
     11class TemplateFieldListItem implements Serializable {
    512        String name
    613
    7         static constraints = {
    8         }
     14        static constraints = {
     15        }
    916
    1017        String toString() {
Note: See TracChangeset for help on using the changeset viewer.