cloudstack/ui/scripts
bfederle 5e94b0d12e Implement tag UI widget
Create UI for handling new tag API. This currently supports the detail view and multi-edit

To enable tags UI, add a 'tags' object to each detailView/multiEdit configuration:

tabs: {
...
details: {
...

tags: {
  actions: {
    add: function(args) {
      setTimeout(function() {
        args.response.success({
          notification: {
            desc: 'Add tags for instance',
            poll: testData.notifications.testPoll
          }
        });
      }, 500);
    },

    remove: function(args) {
      args.response.success({
        notification: {
          desc: 'Remove tags for instance',
          poll: testData.notifications.testPoll
        }
      });
    }
  },
  dataProvider: function(args) {
    args.response.success({
      data: [
        {
          id: '1',
          key: 'user',
          value: 'brian'
        },
        {
          id: '2',
          key: 'region',
          value: 'usa'
        }
      ]
    });
  }
}

...

Conflicts:
	ui/css/cloudstack3.css
	ui/scripts/ui/widgets/tagger.js
2012-07-23 15:18:36 -07:00
..
ui Implement tag UI widget 2012-07-23 15:18:36 -07:00
ui-custom Phase 1 of Nicira integration 2012-07-11 17:16:06 -07:00
accounts.js CS-15392: Add error handling to edit user action 2012-07-09 14:54:15 -07:00
cloud.core.callbacks.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
cloudStack.js cloudstack 3.0 UI - fix space problem from a patch 2012-06-27 14:11:25 -07:00
configuration.js CS-15287 2012-06-26 13:30:36 -07:00
dashboard.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
domains.js CS-13535: Error handling for add domain operation 2012-06-27 16:20:30 -07:00
events.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
globalSettings.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
installWizard.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
instanceWizard.js Add Apache license to new JS files 2012-06-28 13:40:19 -07:00
instances.js Fix missing actionFilter causing instance wizard to never complete 2012-06-28 12:30:11 -07:00
lbStickyPolicy.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
network.js Remove dummy VPC UI from networks section 2012-07-20 14:05:44 -07:00
projects.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
sharedFunctions.js cloudstack 3.0 UI - (1) to distinguish between getUpdatedItem() and getUpdatedData(), rename getUpdatedData() to getUpdatedItemWhenAsyncJobFails() since it's being called only when async job fails. (2) fix the space problem (tab size is not 2) from patch. 2012-06-27 10:57:29 -07:00
storage.js CS-14907: Only allow download volume for uploaded volumes 2012-07-02 10:41:35 -07:00
system.js CS-15290: Fix 'Path' field validation 2012-06-26 13:43:30 -07:00
templates.js CS-15287 2012-06-26 13:30:36 -07:00
vpc.js VPC UI: Add link to site-to-site VPN 2012-06-29 13:36:07 -07:00
zoneWizard.js applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00