diff options
Diffstat (limited to 'js/io/ui/save-as-dialog.reel/save-as-dialog.html')
-rw-r--r-- | js/io/ui/save-as-dialog.reel/save-as-dialog.html | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/js/io/ui/save-as-dialog.reel/save-as-dialog.html b/js/io/ui/save-as-dialog.reel/save-as-dialog.html new file mode 100644 index 00000000..968512f6 --- /dev/null +++ b/js/io/ui/save-as-dialog.reel/save-as-dialog.html | |||
@@ -0,0 +1,86 @@ | |||
1 | <!DOCTYPE HTML> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="save-as-dialog.css"> | ||
11 | <script type="text/montage-serialization"> | ||
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 | "fileInputField":{ | ||
44 | "module": "js/components/ui/FilePicker/file-input-field.reel", | ||
45 | "name": "FileInputField", | ||
46 | "properties": { | ||
47 | "element": {"#": "fileInputField"} | ||
48 | } | ||
49 | }, | ||
50 | |||
51 | "owner":{ | ||
52 | "module": "js/io/ui/new-file-dialog/new-file-location.reel", | ||
53 | "name": "SaveAsDialog", | ||
54 | "properties": { | ||
55 | "element": {"#": "saveAsDialog"}, | ||
56 | "fileInputField": {"@": "fileInputField"}, | ||
57 | "newFileName": {"#": "newFileName"}, | ||
58 | "error":{"#": "error"}, | ||
59 | "okButton":{"#": "okButton"} | ||
60 | } | ||
61 | } | ||
62 | } | ||
63 | </script> | ||
64 | </head> | ||
65 | <body> | ||
66 | <div id="saveAsDialog" class="saveAsDialog"> | ||
67 | <div class="title">Save As</div> | ||
68 | <div class="locationSelection"> | ||
69 | <div class="filename"> | ||
70 | <span class="nameText">Save As :</span> | ||
71 | <input id="newFileName" class="nj-skinned newFileName" type="search" value="" /> | ||
72 | </div> | ||
73 | <div> | ||
74 | <span>Location :</span> | ||
75 | <div id="fileInputField"></div> | ||
76 | </div> | ||
77 | </div> | ||
78 | <div class="errorMsg"><span id="error" class="error"></span></div> | ||
79 | <div class="buttons"> | ||
80 | <input id="cancelButton" type="button" value="CANCEL" class="cancelButton nj-skinned" /> | ||
81 | <input id="okButton" disabled="true" type="button" value="OK" class="okButton nj-skinned" /> | ||
82 | </div> | ||
83 | |||
84 | </div> | ||
85 | </body> | ||
86 | </html> \ No newline at end of file | ||