aboutsummaryrefslogtreecommitdiff
path: root/js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html')
-rwxr-xr-x[-rw-r--r--]js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html45
1 files changed, 43 insertions, 2 deletions
diff --git a/js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html b/js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html
index a022f841..36e937e0 100644..100755
--- a/js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html
+++ b/js/io/workflow/newFileDialog/new-file-options-navigator.reel/new-file-options-navigator.html
@@ -10,6 +10,43 @@
10 <link rel="stylesheet" type="text/css" href="new-file-options-navigator.css"> 10 <link rel="stylesheet" type="text/css" href="new-file-options-navigator.css">
11 <script type="text/montage-serialization"> 11 <script type="text/montage-serialization">
12 { 12 {
13 "okButton": {
14 "module": "montage/ui/button.reel",
15 "name": "Button",
16 "properties": {
17 "element": {"#": "okButton"},
18 "identifier": "okButton"
19 },
20 "listeners": [
21 {
22 "type": "action",
23 "listener": {"@": "owner"}
24 }
25 ]
26 },
27
28 "cancelButton": {
29 "module": "montage/ui/button.reel",
30 "name": "Button",
31 "properties": {
32 "element": {"#": "cancelButton"},
33 "identifier": "cancelButton"
34 },
35 "listeners": [
36 {
37 "type": "action",
38 "listener": {"@": "owner"}
39 }
40 ]
41 },
42
43 "newFileLocation":{
44 "module": "js/io/workflow/newFileDialog/new-file-location.reel",
45 "name": "NewFileLocation",
46 "properties": {
47 "element": {"#": "right-bottom"}
48 }
49 },
13 50
14 "owner":{ 51 "owner":{
15 "module": "js/io/workflow/newFileDialog/new-file-options-navigator.reel", 52 "module": "js/io/workflow/newFileDialog/new-file-options-navigator.reel",
@@ -21,7 +58,9 @@
21 "okButton": {"#": "okButton"}, 58 "okButton": {"#": "okButton"},
22 "templateIcons": {"#": "templateIcons"}, 59 "templateIcons": {"#": "templateIcons"},
23 "templatesContainer": {"#": "right-top"}, 60 "templatesContainer": {"#": "right-top"},
24 "locationSelection": {"#": "right-bottom"} 61 "locationSelection": {"#": "right-bottom"},
62 "newFileLocation": {"@": "newFileLocation"},
63 "error": {"#": "error"}
25 } 64 }
26 } 65 }
27 } 66 }
@@ -29,8 +68,9 @@
29</head> 68</head>
30<body> 69<body>
31<div id="newfile" class="newfile"> 70<div id="newfile" class="newfile">
71 <div class="title">Create New File</div>
32 <div class="container left-nav"> 72 <div class="container left-nav">
33 <div class="projectTypeHeader"><span>Project Type</span></div> 73 <div class="projectTypeHeader"><span>File Type</span></div>
34 <div id="projectTypeTree" class="projectTypeTree"></div> 74 <div id="projectTypeTree" class="projectTypeTree"></div>
35 </div> 75 </div>
36 <div class="container right-nav"> 76 <div class="container right-nav">
@@ -42,6 +82,7 @@
42 <div class="selections">selections</div> 82 <div class="selections">selections</div>
43 </div> 83 </div>
44 </div> 84 </div>
85 <div class="errorMsg"><span id="error" class="error"></span></div>
45 <div class="buttons"> 86 <div class="buttons">
46 <input id="cancelButton" type="button" value="CANCEL" class="cancelButton" /> 87 <input id="cancelButton" type="button" value="CANCEL" class="cancelButton" />
47 <input id="okButton" disabled="true" type="button" value="OK" class="okButton" /> 88 <input id="okButton" disabled="true" type="button" value="OK" class="okButton" />