Changeset 349 for Dev/branches/rest-dojo-ui/client/rft/ui/ObjectBox.js
- Timestamp:
- 06/29/12 19:56:22 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/branches/rest-dojo-ui/client/rft/ui/ObjectBox.js
r346 r349 60 60 label: "Edit/View", 61 61 modifiers: "trans", 62 icon: " Settings"62 icon: "Edit" 63 63 } 64 64 }; … … 93 93 _setObjectReference: function(identifier) { 94 94 // TODO: Set this ObjectBox to refer to a certain database object 95 96 95 }, 96 _getObjectInfo: function() { 97 97 // TODO: Query the database and retrieve a JSON array of object properties 98 99 98 }, 99 _inspectObject: function() { 100 100 // TODO: Get object information (or retrieve from cache), then display in popup 101 102 101 }, 102 _editObject: function(customFunction) { 103 103 // TODO: Pass an edit call to the page script, along with reference to the object contained in this ObjectBox 104 104 alert("Default edit code"); … … 138 138 * TODO: Check with Hendrik if I should do this or not! 139 139 * */ 140 CreateNew: function(arguments, reference, location) {140 CreateNew: function(arguments, reference, location) { 141 141 var newBox = new rft.ui.ObjectBox(arguments); 142 142 newBox.startup(); … … 144 144 } 145 145 }); 146 146 });
Note: See TracChangeset
for help on using the changeset viewer.