cloudstack/ui
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
..
css Implement tag UI widget 2012-07-23 15:18:36 -07:00
images Add configure VPC tooltip and links 2012-06-29 13:13:59 -07:00
lib (1) CS-15057: Remove jquery.timer.js from source code. Replace it with native JavaScript functions. 2012-06-21 12:13:41 -07:00
scripts Implement tag UI widget 2012-07-23 15:18:36 -07:00
tests applying Chip Childer's patches for license headers in the ui directory 2012-06-26 10:46:53 -04:00
.classpath cloudStack 3.0 new UI - move project file and classpath from old UI directory to new UI directory. 2011-11-04 11:32:10 -07:00
.project cloudStack 3.0 new UI - move project file and classpath from old UI directory to new UI directory. 2011-11-04 11:32:10 -07:00
index.jsp CS-12739: VM wizard: add asterisk next to network 'name' field 2012-07-09 16:41:14 -07:00