From 87ddd35160b5fb0bf6f1ad0dd6a243b19939c72c Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Mon, 11 Jun 2012 23:36:37 -0700 Subject: adding more missing properties Signed-off-by: Valerio Virgillito --- .../file-input-field.reel/file-input-field.js | 10 +++ .../picker-navigator.reel/picker-navigator.js | 80 ++++++++++++++++++++++ .../new-file-location.reel/new-file-location.js | 10 +++ .../new-file-options-navigator.js | 40 +++++++++++ 4 files changed, 140 insertions(+) (limited to 'js/io/ui') diff --git a/js/io/ui/file-picker/file-input-field.reel/file-input-field.js b/js/io/ui/file-picker/file-input-field.reel/file-input-field.js index a5fab11c..11d7e5b2 100755 --- a/js/io/ui/file-picker/file-input-field.reel/file-input-field.js +++ b/js/io/ui/file-picker/file-input-field.reel/file-input-field.js @@ -9,6 +9,16 @@ var Montage = require("montage/core/core").Montage, var FileInputField = exports.FileInputField = Montage.create(Component, { + findDirectory: { + value: null, + serializable: true + }, + + newFileDirectory: { + value: null, + serializable: true + }, + didDraw: { enumerable: false, value: function() { diff --git a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js index 945b0301..8295c68e 100644 --- a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js +++ b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js @@ -11,6 +11,86 @@ var Montage = require("montage/core/core").Montage, var PickerNavigator = exports.PickerNavigator = Montage.create(Component, { + filterVal: { + value: null, + serializable: true + }, + + error: { + value: null, + serializable: true + }, + + addressBarUri: { + value: null, + serializable: true + }, + + forwardArrow: { + value: null, + serializable: true + }, + + backArrow: { + value: null, + serializable: true + }, + + leftNav: { + value: null, + serializable: true + }, + + iconViewContainer: { + value: null, + serializable: true + }, + + iconView: { + value: null, + serializable: true + }, + + treeView: { + value: null, + serializable: true + }, + + treeViewContainer: { + value: null, + serializable: true + }, + + okButton: { + value: null, + serializable: true + }, + + metadataSection: { + value: null, + serializable: true + }, + + filters: { + value: null, + serializable: true + }, + + refreshButton: { + value: null, + serializable: true + }, + + cancelButton: { + value: null, + serializable: true + }, + + resultsArea: { + value: null, + serializable: true + }, + popup:{ enumerable: false, writable: true, diff --git a/js/io/ui/new-file-dialog/new-file-location.reel/new-file-location.js b/js/io/ui/new-file-dialog/new-file-location.reel/new-file-location.js index e8a699cc..1eecbb9a 100755 --- a/js/io/ui/new-file-dialog/new-file-location.reel/new-file-location.js +++ b/js/io/ui/new-file-dialog/new-file-location.reel/new-file-location.js @@ -10,6 +10,16 @@ var newFileWorkflowControllerModule = require("js/io/ui/new-file-dialog/new-file var NewFileLocation = exports.NewFileLocation = Montage.create(Component, { + fileInputField: { + value: null, + serializable: true + }, + + newFileName: { + value: null, + serializable: true + }, + templateHeight:{ value:"25 px" }, diff --git a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js index 7227d532..e6202b07 100644 --- a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js +++ b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js @@ -12,6 +12,46 @@ var Montage = require("montage/core/core").Montage, var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(Component, { + projectTypeTree: { + value: null, + serializable: true + }, + + cancelButton: { + value: null, + serializable: true + }, + + okButton: { + value: null, + serializable: true + }, + + templateIcons: { + value: null, + serializable: true + }, + + templatesContainer: { + value: null, + serializable: true + }, + + locationSelection: { + value: null, + serializable: true + }, + + newFileLocation: { + value: null, + serializable: true + }, + + error: { + value: null, + serializable: true + }, + newFileModel: { writable: true, enumerable:false, -- cgit v1.2.3