source: Dev/trunk/surveyEditor.php @ 177

Last change on this file since 177 was 177, checked in by fpvanagthoven, 13 years ago
  • Boel dingen gesloopt, maar wel allemaal terug te draaien.
  • Nieuwe stylesheet begonnen (visualeditors.css), die de meuk uit de andere stylesheets een beetje uitdunt. Bedoeling is dat deze stylesheet generiek genoeg is om voor alle verdere en huidige pagina's te werken.
  • Layout van surveyEditor gemaakt, is nog lang niet klaar, maar het format van de editor en de questions daarin is duidelijk. Vrijdag bevestigen tijdens geprek Julia of dit inderdaad een handig format is.
  • resetstyle.css toegevoegd aan de StyleSheet?.php class, deze zorgt voor meer browser cross-compatibility door de styling van elementen 'op nul te zetten'.
  • Toolbox.php en pipelineSequencer_1.php zijn nu aangepast aan de nieuwe stylesheet. Deze worden later weer hernoemd naar de goede naam.
File size: 2.4 KB
Line 
1<?php
2require "classes/master.php";
3?>
4
5<!--
6To change this template, choose Tools | Templates
7and open the template in the editor.
8-->
9<!DOCTYPE html>
10<html>
11    <head>
12        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
13        <title></title>
14        <?php new StyleSheet("visualeditors"); ?>
15    </head>
16    <body>
17        <div id="wrapper">
18            <div id="content">
19                <div id="surveyEditor" class="largeFrame">
20                    <div class="largeTitle">
21                        Survey name
22                    </div>
23                    <div id="surveyEditorContent" class="innerLargeFrame">
24
25                        <div id="questionUID" class="smallFrame">
26                            <div class="smallTitle"><div class="listNumber">1</div>#QUESTION-IDENT-NO</div>
27                            <div class="content">
28                                <p class="questionBody">
29                                    This is the question body text. This is what the user will read when he is answering the survey.This is the question body text. This is what the user will read when he is answering the survey.This is the question body text. This is what the user will read when he is answering the survey.
30                                </p>
31                                <div class="questionParamsView">
32                                    PARAMETERS GO HERE, probably in one line (Only answer type and identifier?) Tags?
33                                </div>
34                            </div>
35                            <div id="questionDisplayControls" class="controls">
36                                <input type="button" value="Edit" onClick="javascript:alert('editing not yet supported');" class =" smallButton"/>
37                                <input type="button" value="Remove" onClick="javascript:alert('removing not yet supported');" class =" smallButton"/>
38                            </div>
39                        </div>
40                       
41
42                    </div>
43                    <div id="surveyEditorControls" class="controls">
44                        <input type="button" value="Discard survey" onClick="javascript:alert('discard not yet supported');" class="smallButton" />
45                        <input type="button" value="Save survey" onClick="javascript:alert('save not yet supported');" class="smallButton" />
46                    </div>
47
48                </div>
49            </div>
50        </div>
51    </body>
52</html>
Note: See TracBrowser for help on using the repository browser.