bfederle
622206bf44
Implement tags for project detail view
2012-07-23 15:05:00 -07:00
bfederle
dc93651547
UI: Add tag API call generator
...
Adds a helper to return an object to pass to the 'tagger' widget,
including all required data and action functions.
Syntax is as follows, just include anywhere were the tags widget is
supported:
tags: cloudStack.api.tags({
resourceType: 'Project',
contextId: 'projects'
})
2012-07-23 15:04:43 -07:00
bfederle
9d3c694601
Tag UI: Make sure data is passed to remove action
2012-07-23 15:03:03 -07:00
bfederle
d23a829c2e
Fix tags widget overlap with long detail views
2012-07-23 13:59:20 -07:00
bfederle
ebabb15105
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'
}
]
});
}
}
...
2012-07-23 13:59:20 -07:00
Jessica Wang
3133f8bf9b
cloudstack 3.0 UI - VPN Customer Gateway - Create VPN Connection action - if selected VPC does not have a VPN gateway, action won't proceed.
2012-07-20 12:59:43 -07:00
Jessica Wang
9dfe6eaf53
cloudstack 3.0 UI - VPN Customer Gateway - detailView - add new action "Create VPN Connection".
2012-07-20 11:05:44 -07:00
Jessica Wang
8f11a882e0
cloudstack 3.0 UI - site to site VPN - VPN Gateway - implement Add VPN Gateway action.
2012-07-19 17:40:58 -07:00
Jessica Wang
1fc67e4990
cloudstack 3.0 UI - site to site VPN - VPN Gateway - implement Delete VPN Gateway action.
2012-07-19 16:55:44 -07:00
Jessica Wang
56bbb6c5ae
cloudstack 3.0 UI - VPN Customer Gateway - implement Delete VPN Customer Gateway action.
2012-07-19 16:45:35 -07:00
Jessica Wang
343a587cfd
cloudstack 3.0 UI - VPN Customer Gateway - implement Add VPN Customer Gateway action.
2012-07-19 16:37:05 -07:00
Jessica Wang
b08e3a0fc4
cloudstack 3.0 UI - site to site VPN - VPN connection - when delete action is clicked, only call deleteVpnConnection API (no calling deleteVpnCustomerGateway any more).
2012-07-19 16:20:58 -07:00
Jessica Wang
4114b1cce7
cloudstack 3.0 UI - network page - add new section "VPN customer gateway".
2012-07-19 16:09:34 -07:00
Jessica Wang
7825e82260
cloudstack 3.0 UI - VPC - site to site VPN - add new section "Customer Gateway".
2012-07-19 15:36:42 -07:00
Brian Federle
ce536daffa
CS-15619: Concatenate long tier names, to prevent overlap
2012-07-19 14:31:23 -07:00
Jessica Wang
bcaa706197
cloudstack 3.0 UI - call getExtaPropertiesForIpObj() to get extra properties for IP Address object when every time it's refreshed by listPublicIpAddresses API call.
2012-07-19 11:21:04 -07:00
Jessica Wang
de4d5cdc94
cloudstack 3.0 UI - multiEdit widget - make headerFields hidden as default.
2012-07-18 11:40:09 -07:00
Jessica Wang
a4f1ecff64
cloudstack 3.0 UI - Guest Network section - detailView - add VPC ID field.
2012-07-18 11:33:41 -07:00
bfederle
81e7c819dc
Detail view edit->cancel button: Don't use BG
2012-07-18 11:33:12 -07:00
bfederle
c69da45217
UI: Implement tagging widget
...
Implement a special form on input text field, for handling tag-based
fields. This will tags as a set of list items, which can be removed
and added to. This is for any comma-delimited field.
Currently, this is only supported on detail view widgets, by adding
'isTag: true' as a new attribute for any tag field. Tags are modified
when clicking the 'edit' action.
2012-07-18 11:33:12 -07:00
Jessica Wang
ba7d0ba4f9
cloudstack 3.0 UI - "listPublicIpAddresses&id=N" API has been fixed to return a record. Here is related UI change.
2012-07-18 11:13:13 -07:00
Jessica Wang
3c58197de2
cloudstack 3.0 UI - VPC - add LB rule - fix a JS error "args.context.networks is undefined" when configure stickiness.
2012-07-18 10:40:40 -07:00
Jessica Wang
86fee33b41
cloudstack 3.0 UI - bypass an error caused by "listPublicIpAddresses&id=N" API until it is fixed to correctly return a record.
2012-07-17 16:40:06 -07:00
Jessica Wang
e1e7780efc
cloudstack 3.0 UI - multiEdit widget - make headerFields shown as default for now until "listPublicIpAddresses&id=N" API is fixed to return an object.
2012-07-17 15:51:51 -07:00
Jessica Wang
140768c82b
cloudstack 3.0 UI - multiEdit widget - make headerFields hidden as default.
2012-07-17 15:42:01 -07:00
Jessica Wang
32fe57aa77
cloudstack 3.0 UI - VPC - IP Address - after a Port Forwarding rule is added, hide tier dropdown.
2012-07-17 15:22:50 -07:00
Jessica Wang
f43a92a2af
cloudstack 3.0 UI - VPC - IP Address - after a LB rule is added, hide tier dropdown.
2012-07-17 15:12:46 -07:00
bfederle
843b3dceaf
CS-15572: Fix page index for list view filters
...
This fixes an issue where the page index is not reset back 1 when
activating the search or filter functionality, causing truncation when
trying to scroll down to later pages.
2012-07-17 11:38:56 -07:00
Jessica Wang
d4f8d3b3a4
cloudstack 3.0 UI - network page - Guest Network section - select a VPC network - IP Address' configuration chart will be the same as the one from VPC section.
2012-07-16 17:05:39 -07:00
Jessica Wang
b3aad47570
cloudstack 3.0 UI - VPC - private gateway - make root-admin able to see private gateways created by other people.
2012-07-16 16:06:57 -07:00
Jessica Wang
13fd9c9774
cloudstack 3.0 UI - VPC - private gateway - only root-admin is allowed to delete a private gateway.
2012-07-16 16:00:53 -07:00
Jessica Wang
845569b121
cloudstack 3.0 UI - VPC - create private gateway action - make it async instead of sync.
2012-07-16 15:17:44 -07:00
Jessica Wang
38e0c4b31a
cloudstack 3.0 UI - VPC - create VPC action - make it async instead of sync.
2012-07-16 14:07:42 -07:00
Jessica Wang
a36fc7a9fa
cloudstack 3.0 UI - IP Address page – if it comes from Guest Network section and it’s a VPC network, remove “Acquire IP” button.
2012-07-16 13:49:28 -07:00
Jessica Wang
dcea0a70f9
cloudstack 3.0 UI - listView widget - pass context from caller function.
2012-07-16 13:49:26 -07:00
Jessica Wang
d623ee3dee
cloudstack 3.0 UI - network page - Guest Network section - create Guest Network - If selected network offering includes forvpc = true, show VPC dropdown. Otherwise, hide VPC dropdown.
2012-07-16 13:25:30 -07:00
Jessica Wang
5a1bca8213
cloudstack 3.0 UI - VPC - create network offering - when service(s) has VPC Virtual Router as provider, remove Firewall service, SecurityGroup service.
2012-07-16 11:03:17 -07:00
Jessica Wang
a8c883ba53
cloudstack 3.0 UI - VPC - IP Address - PF, LB, EnableStaticNAT dialogbox - tier dropdown - list only tiers that support corresponding service.
2012-07-13 13:50:24 -07:00
Brian Federle
9c59082658
Add tier name to ACL and VM list dialogs
2012-07-13 13:39:47 -07:00
Jessica Wang
c73b29b2ee
cloudstack 3.0 UI - VPC - IP Address - Enable static NAT - no VM listing until a tier is selected.
2012-07-13 13:30:12 -07:00
Jessica Wang
32873b3c4e
cloudstack 3.0 UI - VPC - tier - tier detail - hide View IP Addresses until JS error "$browser is undefined" is fixed.
2012-07-13 13:07:31 -07:00
Jessica Wang
f0815df712
cloudstack 3.0 UI - VPC - tier - implement tier detail with edit, delete, restart action.
2012-07-13 11:28:34 -07:00
Jessica Wang
c3a854faf2
cloudstack 3.0 UI - VPC - Gateways - pass listAll=true to listPrivateGateways API.
2012-07-12 16:28:48 -07:00
Jessica Wang
3671d8c490
cloudstack 3.0 UI - VPC - implement restart VPC action.
2012-07-12 16:10:43 -07:00
Jessica Wang
1a48773c50
cloudstack 3.0 UI - VPC - implement update VPC action.
2012-07-12 16:05:05 -07:00
Brian Federle
183beaa8c3
Rename editVpc->configureVpc, for clarity
2012-07-12 15:59:35 -07:00
Brian Federle
3267553af1
Detail view: Fix layout of text actions
2012-07-12 15:26:07 -07:00
Brian Federle
4d6b5e6183
Add edit VPC action to detail view
2012-07-12 15:21:19 -07:00
Brian Federle
5af48ea6cf
Detail view UI: Support for text action buttons
...
Currently, only icons are rendered on detail view actions. This change
adds support for showing a text label next to specified actions, which
has a button appearance. This is to allow certain actions to be more
visible, in the case where an icon isn't clear enough.
To make an action have a text label, add a 'textLabel' attribute to
the action properties:
editVpc: {
label: 'Edit VPC',
// textLabel property
textLabel: 'label.configure',
action: {
...
}
}
2012-07-12 15:18:06 -07:00
Jessica Wang
1753480ff8
cloudstack 3.0 UI - VPC - implement Delete VPC action.
2012-07-12 15:09:30 -07:00