Last change
on this file since 138 was
107,
checked in by duh, 13 years ago
|
- worked on the wizard inner workings
- added date field element using a jQuery datepicker
- worked on the XMLHttpRequest issue which turned to be an issue with Firefox 3.6 (and not firebug). Filed a bugreport here: http://code.google.com/p/fbug/issues/detail?id=2746
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
1.2 KB
|
Rev | Line | |
---|
[86] | 1 | <% |
---|
| 2 | /** |
---|
[101] | 3 | * Study page |
---|
[86] | 4 | * |
---|
| 5 | * @author Jeroen Wesbeek |
---|
| 6 | * @since 20100113 |
---|
| 7 | * @package wizard |
---|
| 8 | * @see dbnp.studycapturing.WizardTagLib::previousNext |
---|
| 9 | * @see dbnp.studycapturing.WizardController |
---|
| 10 | * |
---|
| 11 | * Revision information: |
---|
| 12 | * $Rev: 107 $ |
---|
| 13 | * $Author: duh $ |
---|
| 14 | * $Date: 2010-01-22 17:37:01 +0000 (vr, 22 jan 2010) $ |
---|
| 15 | */ |
---|
| 16 | %> |
---|
[88] | 17 | <wizard:pageContent> |
---|
[107] | 18 | <wizard:textFieldElement name="title" description="Title" error="title" value="${study?.title}"> |
---|
[101] | 19 | The title of the study you are creating |
---|
| 20 | </wizard:textFieldElement> |
---|
[107] | 21 | <wizard:textFieldElement name="code" description="Code" error="code" value="${study?.code}"> |
---|
[101] | 22 | A code to reference your study by |
---|
| 23 | </wizard:textFieldElement> |
---|
[107] | 24 | <wizard:textFieldElement name="researchQuestion" description="Research Question" error="researchQuestion" value="${study?.researchQuestion}"> |
---|
[101] | 25 | The research question |
---|
| 26 | </wizard:textFieldElement> |
---|
[107] | 27 | <wizard:textFieldElement name="description" description="Description" error="description" value="${study?.description}" /> |
---|
| 28 | <wizard:textFieldElement name="ecCode" description="Ethical Committee Code" error="ecCode" value="${study?.ecCode}" /> |
---|
| 29 | <wizard:dateElement name="startDate" description="Start date" error="startDate" value="${study?.startDate}"> |
---|
| 30 | The start date of the study |
---|
| 31 | </wizard:dateElement> |
---|
[101] | 32 | </wizard:pageContent> |
---|
Note: See
TracBrowser
for help on using the repository browser.