Jessica Wang
4fc953ed34
bug 12229: guest network - network tabs - Restart required field - highlight it in red if value is Yes (to get user's attention).
2011-12-13 09:55:54 -08:00
Brian Federle
b30ae76b67
bug 12492
...
-Fix error handling for list view actions
-Add error handlers for all Configuration section actions/data calls
status 12492: resolved fixed
2011-12-12 17:26:49 -08:00
Brian Federle
254e8394ee
Rename 'Create' to 'OK' to apply more generally to actions
2011-12-12 17:08:55 -08:00
Brian Federle
6a72aab25c
bug 12405: Hitting 'Enter' causes create from to submit
...
status 12405: resolved fixed
2011-12-12 17:08:18 -08:00
Jessica Wang
83b820df85
bug 12229: guest network - network tabs - add Restart required field.
2011-12-12 17:07:50 -08:00
Jessica Wang
ccd3b82214
bug 10067: ISO page - make isExtractable, isPublic, isFeatured field editable.
2011-12-12 16:56:21 -08:00
Brian Federle
05960fde3b
Prevent infinite 'spinning wheel' for PF VM list
2011-12-12 16:25:23 -08:00
Jessica Wang
23c8d4b929
remove debugger keyword
2011-12-12 15:52:12 -08:00
Jessica Wang
3c4d2e32ba
bug 10067: template page - make isExtractable editable.
2011-12-12 15:49:22 -08:00
Brian Federle
f6883d0e2a
Restore error message popup
2011-12-12 15:34:23 -08:00
Brian Federle
68e002294f
Use 'on' (true) or null (false) for edit values of checkbox
2011-12-12 15:34:09 -08:00
Brian Federle
540c7becf1
bug 12250
...
-Display error if assigning VMs to LB fails
-Only call success on add load balancer when VM assignment succeeds
-Add error handling to all network sections
2011-12-12 15:31:01 -08:00
Brian Federle
09b0f4a401
Allow admin-type accounts to delete normal users' projects
2011-12-12 15:29:19 -08:00
Jessica Wang
65fad240ce
bug 12128: volume page - add new action "migrate volume to another primary storage".
2011-12-12 14:57:57 -08:00
Brian Federle
b65a411386
bug 12277
...
-Update example files for system chart, to make provider details a
detailView widget
-Cleanup/refactor zone chart widget to support new changes
2011-12-12 13:04:02 -08:00
Brian Federle
81b011771d
bug 12474
...
Implement isBoolean field support, on detail view edit action. This is
specified like this:
fields: {
...
isPasswordEnabled: {
...
isBoolean: true,
editable: true,
...
}
}
2011-12-12 11:25:24 -08:00
Jessica Wang
19d5436c86
bug 12128: instance page - add new action "migrate instance to another primary storage".
2011-12-12 10:50:04 -08:00
Brian Federle
314a6361a1
bug 12475
...
Implement preAction handler for list view/detail view actions. If the
function returns false, then do not proceed further on the action. It
is specified like this:
actions: {
...
preAction: function(args) {
cloudStack.dialog.notice({ message: "You can't do that!" });
return false;
},
action: function(args) { ... },
...
}
It currently passes in the standard args.context that you would get
with a standard action; note that this currently does not support
async server calls, so try to use current state data as much as
possible.
2011-12-12 10:45:08 -08:00
Brian Federle
bfad199a2e
bug 12457
...
Select first network item as default, if unchecking current default
network.
statis 12457: resolved fixed
2011-12-12 10:21:43 -08:00
Brian Federle
bf67097b21
Less margin around login labels
2011-12-12 10:21:43 -08:00
Brian Federle
56b5c5cf2a
bug 12197
...
Fix enable account action refresh on detail view
status 12197: resolved fixed
2011-12-09 15:34:45 -08:00
Brian Federle
76f79d80ca
Projects UI updates
...
-Add list view for users to accept/decline invitations, found under
Projects->Invitations drop-down
-Allow project admin to remove pending invitations
-If invites are required, show pop-up after adding user, indicating
that user will be added after accpting invitation
-Hide all invitation-related UI elements if
projects.invite.required == false
2011-12-09 15:22:09 -08:00
Jessica Wang
616b478e3a
cloudStack 3.0 new UI - network offering page - add Guest Type and Availability in listView.
2011-12-09 13:46:10 -08:00
Brian Federle
21c2979341
bug 12151
...
Concatenate breadcrumb width & text label if the total size of
breadcrumbs exceeds the width of the container, to avoid wrapping
2011-12-09 12:14:55 -08:00
Jessica Wang
16bb1c2675
cloudStack 3.0 new UI - system VM page - migrate system vm - fix a JS error "args.data.id is undefined"
2011-12-09 12:06:24 -08:00
Jessica Wang
58a1bc71fc
bug 10236: cloudStack 3.0 new UI - instance page - make migrate action available regardless of hypervisor type.
2011-12-09 12:01:17 -08:00
Jessica Wang
21b47541a9
cloudstack 3.0 new UI - template page, ISO page - filter in listView - move featured option to be on top.
2011-12-09 11:40:13 -08:00
Jessica Wang
935a0f6193
bug 12151: cloudStack 3.0 new UI - deployVM - after creating a new VM from a password-enabled template, show password in a dialogbox.
2011-12-09 11:19:58 -08:00
Brian Federle
91bb0cfeea
bug 12081
...
-Always login field labels, until text is present in input field
-Focus username field on load
status 12081: resolved fixed
2011-12-09 11:07:53 -08:00
Jessica Wang
b8b2f786dd
cloudStack 3.0 new UI - template page - detail view - add isBoolean property to editable boolean field.
2011-12-09 10:52:03 -08:00
Brian Federle
334507639d
Update system->security groups provider details
...
-Make security groups a detail view (like virtual router details), as
there is only one security group provider per zone.
-Add a view all security groups button, to provide an alternate way to
view security groups, outside the network section
2011-12-09 10:28:16 -08:00
Brian Federle
314c1f90c4
Clean up handling for UI refresh events
...
-Always unbind event if object isn't visible
-Use widget-specific refresh event for multi-edit actions, to prevent
other widgets from being refreshed unecessarily.
2011-12-09 09:12:48 -08:00
Brian Federle
77ee3cedd5
Clean up UI error handling
...
Restore error messages for widgets -- as the default error handler
will be overridden if an error fn is specified, thus rendering no
message
2011-12-09 08:04:23 -08:00
Jessica Wang
6ac6b95e3c
bug 11814:cloudStack 3.0 new UI - register template - show 3 new dropdowns (root disk controller, NIC adapter type, keyboard type) if selected hypervisor is VMware
2011-12-08 16:29:41 -08:00
Brian Federle
ef02c05c8c
IE7: Fix header bar margin issue
2011-12-08 16:00:30 -08:00
Brian Federle
bc3a4d44d7
Remove unneeded dialog notifications from configuration section
2011-12-08 15:43:05 -08:00
Brian Federle
302541b5fb
Network offering fixes/cleanup
...
-bug 12387: Add delete network offering action
-bug 12450: Properly refresh all network offering actions
-Make all list view actions visible in detail view
status 12387: resolved fixed
status 12450: resolved fixed
2011-12-08 15:42:45 -08:00
Brian Federle
04a2263e5e
Set AJAX defaults to always use JSON and async
2011-12-08 15:38:34 -08:00
Brian Federle
de6844c868
CSS fixes
...
-Fix status indicator icons
-Fix zone chart overflow
2011-12-08 15:37:52 -08:00
Brian Federle
bf0ba26698
Fix zone chart overflow
2011-12-08 15:29:04 -08:00
Brian Federle
1a524de689
bug 12396: Put apply button on bottom of detail view
...
-In order to have the 'Apply' button always visible when editing data,
only put the main fields (i.e., everything except action bar and
apply button) into a scrollable container.
-Move apply button to bottom of detail view pane
2011-12-08 14:33:30 -08:00
Brian Federle
1b3aeae7de
Update index-test.html w/ changes from index.jsp
2011-12-08 14:10:08 -08:00
Brian Federle
275ee35efc
Add IE7-conditional CSS to index.jsp
2011-12-08 14:09:18 -08:00
Brian Federle
c9e7f3a1c0
bug 12334: Don't show destroy action to non-owners of project
...
status 12334: resolved fixed
2011-12-08 13:36:41 -08:00
Brian Federle
b71006367d
IE7: Fix list view scrolling
2011-12-08 12:02:03 -08:00
Jessica Wang
5df5cdcbf3
cloudStack 3.0 new UI - VM wizard - optimize code that forms deployVM API call.
2011-12-08 11:11:32 -08:00
Brian Federle
b07d619377
Fix vertical line sometimes showing up on project switcher icon
2011-12-08 09:31:07 -08:00
Brian Federle
acdf4ed0b0
Fix zone wizard CSS
2011-12-08 08:48:41 -08:00
Brian Federle
5d3108aaf6
bug 12396: CSS fixes
...
-IE8: fix table borders
-IE8: fix login screen
-Fix drop shadow on install wizard
-Better sizing for corner user info -- allow for longer names to be
displayed without wrapping
-Less margin around project switcher
-Create project dialog: more spacing/padding
-System provider forms: add white border around form area; add
scrollbars to account for long forms (i.e., SRX)
-Misc. small fixes for project view, detail view
2011-12-07 19:59:31 -08:00
Brian Federle
ba4f814d90
Fix enable static NAT dialog
...
Require VM selection, or pop-up error message -- prevents server call
from being made without a required VM.
2011-12-07 19:59:31 -08:00
Jessica Wang
16ff38d0fd
bug 12381: fix a bug that opening another window to view console causes a JavaScript error "invalid argument"
2011-12-07 19:01:20 -08:00
Brian Federle
c2bfc51b2b
bug 12396
...
Fix list view columns not aligning with header, in some cases where
there are 2 columns and the data provider returns quickly.
2011-12-07 18:58:21 -08:00
Brian Federle
e171b7c2c7
bug 12396
...
-Fix single action appearance on detail view
2011-12-07 18:49:30 -08:00
Jessica Wang
04c7bb7518
bug 12231: system - guest network - detail tab - split VLAN into 2 fields: start VLAN, end VLAN.
2011-12-07 17:57:53 -08:00
Jessica Wang
2c9e1ff903
VM wizard - fix a label.
2011-12-07 17:23:29 -08:00
Jessica Wang
ef7ee9389f
VM wizard - take care of a use case that no existing network is checked (only new network is checked) when deploying VM.
2011-12-07 17:21:53 -08:00
Jessica Wang
74163af295
VM wizard - if create network fails, show error message and not proceed deploying VM.
2011-12-07 16:30:31 -08:00
Brian Federle
aff0e234b5
bug 12396
...
-Apply fixes for instance wizard CSS
2011-12-07 16:27:32 -08:00
Jessica Wang
2f40e8ab51
bug 12409: VM Wizard - take care of use case that args.data["my-networks"] might be a string instead of an array of string.
2011-12-07 16:19:45 -08:00
Brian Federle
484f579b40
Zero out dashboard; have 'view all' go to events
2011-12-07 16:18:25 -08:00
Brian Federle
b55fb5fa48
bug 12270
...
-Don't show user/invite management tabs for non-project-admin
2011-12-07 16:04:17 -08:00
Brian Federle
5ad44760e1
bug 12400
...
Show notice if no VMs are selected in port forwarding/load balancing
-- prevent server call from being performed and 'infinite list' from
being generated
2011-12-07 15:53:47 -08:00
Brian Federle
b45cfdc21e
bug 12352
...
-Don't refresh detail view after destroy action
2011-12-07 15:46:58 -08:00
Brian Federle
1d087cb3cc
Add indicator for 'Released' state
2011-12-07 15:46:08 -08:00
Brian Federle
103ede0793
bug 12410
...
Bug was caused by a 'cloudStack.fullRefresh' event being triggered on
a non-existent edit widget, for a non-existent project. I changed the
widget to only refresh if the current instance is visible (i.e., most
likely the user still has active data for it)
2011-12-07 15:36:37 -08:00
Brian Federle
2ae4e50a9a
Fixes list view/detail view
...
-Fix list view ID references, which was causing args.context undefined
errors
2011-12-07 15:11:04 -08:00
Brian Federle
5df74b0b46
Bug 12396 -- Fix border radius to 4px
2011-12-07 14:45:12 -08:00
Jessica Wang
26d3cfc974
cloudStack 3.0 new UI - host page - add resource state.
2011-12-07 14:37:42 -08:00
Brian Federle
b1beb2cd89
Use associatedNetworkId, not networkId for IP list view
2011-12-07 14:11:22 -08:00
Brian Federle
9b0373198c
Remove test line from filter
2011-12-07 14:07:34 -08:00
Brian Federle
30ed5fc381
Fix list view
...
-Add label if only one section select option is present
-Fix for broken context variable for accounts, security groups list
view -- broke detail and list views
2011-12-07 14:02:39 -08:00
Jessica Wang
9b4ac5f083
cloudStack 3.0 new UI - VM wizard - step 5 - some bugs have been fixed in widget code. Here is related UI change.
2011-12-07 13:33:43 -08:00
Brian Federle
b3f861bf8f
Network section updates
...
-Only show networks where source NAT is enabled
-If security groups are enabled, show security group section in place
of network section
-Make acquire IP form a confirm box, since no selection is required
anymore -- base network ID on selected network in list view
2011-12-07 13:26:08 -08:00
Brian Federle
4abc367525
Fix list view section switcher
...
-List view switcher now selects the first item from the select list,
not the first in the section object; this prevents a filtered-out
section from being displayed by default
2011-12-07 13:26:08 -08:00
Brian Federle
be1c0d9923
List view widget: update create action
...
-Support adding a new row if there is no createForm, but
addRow == true
2011-12-07 13:26:08 -08:00
Brian Federle
352377e8d7
Update network section list view
...
-Only show networks with type == isolated
-Remove VLAN field from display
-Filter IP addresses by network ID, not associated network ID
2011-12-07 12:22:45 -08:00
Brian Federle
6e61334bdd
Hide section select if only one entry exists
2011-12-07 12:22:45 -08:00
Brian Federle
345607b600
Use correct value/ID for network offering select
2011-12-07 11:36:55 -08:00
Brian Federle
5420554237
Add name field to add network on instance wizard
2011-12-07 11:36:55 -08:00
Jessica Wang
a5772425ff
cloudStack 3.0 new UI - VM wizard - step 5 - create new network - network offering dropdown - populate only isolated networks with sourceNat.
2011-12-07 10:58:03 -08:00
Jessica Wang
a94cd0b579
cloudStack 3.0 new UI - deployVM - select networks step - list all networks in the same container with checkbox and radio button. Provide another container to create new network with network offering dropdodwn.
2011-12-06 19:27:34 -08:00
Brian Federle
e3aa4fb4bb
bug 12351
...
-Add 'create new network' field on select network dropdown, with
network offering select
-Merge direct/shared networks into one list
2011-12-06 16:19:13 -08:00
Jessica Wang
b7b31591e3
cloudStack 3.0 new UI - create network offering - remove Max Connections and VLAN ID.
2011-12-06 14:30:18 -08:00
Jessica Wang
4a45fb2a1f
cloudStack 3.0 new UI - register ISO - shouldn't have "None" option when ISO is bootable.
2011-12-06 14:13:38 -08:00
Brian Federle
994a74210f
bug 12351
...
-Implement default network radio button for all networks
-Make all network items check boxes
-Automatically check a selected default network
NOTE: Updated server calls need still need to be implemented
2011-12-06 13:55:04 -08:00
Brian Federle
89235c6cb9
Network->IP Addresses -- update 'Acquire new IP' action
...
-Replace zone select with network select
-Use network ID to acquire IP, instead of zone ID
2011-12-06 12:53:00 -08:00
Brian Federle
fa4e08aa9c
Add white box around 'no networks' message in instance wizard
2011-12-06 12:35:54 -08:00
Brian Federle
d826bc1b47
bug 12367: Show status field on invites tab
2011-12-06 12:27:46 -08:00
Jessica Wang
3590f2cc3f
bug 12366: cloudStack 3.0 new UI - create network offering - populate system service offerings in service offerings dropdown.
2011-12-06 12:20:14 -08:00
Brian Federle
547972eed5
bug 12288: Add more fields to network list view/detail view
...
-Added Network type field
-Added VLAN ID field (from broadcasturi)
2011-12-06 12:19:26 -08:00
Jessica Wang
69e3f037a5
cloudStack 3.0 new UI - ISO page - ID of xsTools ISO is no longer 200
2011-12-06 11:52:06 -08:00
Jessica Wang
c57fc4390e
cloudStack 3.0 new UI - template page - fix a bug that delete action shouldn't be displayed for system built-in templates.
2011-12-06 11:41:30 -08:00
Brian Federle
776f5d0158
Update status indicator
2011-12-06 11:33:37 -08:00
Brian Federle
a4b8fc6e24
Cleanup accounts section actions/list view
2011-12-06 11:31:51 -08:00
Brian Federle
c55be261d3
Clean up instance wizard 'jumpiness' caused by delay in ajax response
2011-12-06 11:31:27 -08:00
Brian Federle
d43cb5cc8c
bug 12368
...
Ability to select new project, by clicking on 'Project View' again,
after an existing project is active.
2011-12-06 11:06:00 -08:00
Jessica Wang
8030991889
cloudStack 3.0 new UI - virtual router - network tab - remove faking accounts/instances/volumes, add PortForwarding service.
2011-12-06 10:52:52 -08:00
Brian Federle
418b5070bf
Remove actions from storage list view, to prevent wrapping
...
-Remove create template action from list view
-Remove download volume from list view
2011-12-06 10:38:07 -08:00
Brian Federle
b08f581791
Fixes to IP address section
...
-Add network name field to IP address details
-bug 12255: Disable firewall area if firewall is disabled in config
2011-12-06 10:29:41 -08:00
Brian Federle
5ad92aeac2
Fix released IP address action filter
2011-12-06 09:04:12 -08:00
Brian Federle
04908e13cb
Fix cacheing in IE8
2011-12-06 09:03:58 -08:00
Brian Federle
30d2f60267
bug 12311
...
-Fix allowed actions not properly refreshing after attach/detach disk
-Fix allowed actions for snapshot section as well
-Misc. cleanup of storage section
2011-12-06 08:55:05 -08:00
Brian Federle
8086e9abc7
bug 12362: List view error handling
2011-12-05 19:29:13 -08:00
Brian Federle
08bbd79ff9
Fix login error message
2011-12-05 19:28:53 -08:00
Brian Federle
433cd51d89
bug 12260: Hide previous button in step 1 of zone wizard
2011-12-05 19:12:16 -08:00
Brian Federle
9b6d1ba0b2
Properly refresh zone chart after provider action is performed
2011-12-05 19:08:58 -08:00
Brian Federle
6434469496
bug 12341
...
-Show summary page after install wizard creation
-Better icons for progress items
2011-12-05 18:50:52 -08:00
Brian Federle
8de59166a4
bug 12315
...
-Show summary of actions being performed on installation
2011-12-05 16:38:00 -08:00
Jessica Wang
214e81e781
bug 12356: fix typo in add host dialog.
2011-12-05 16:28:32 -08:00
Jessica Wang
696da56e38
bug 12353: fix typo
2011-12-05 16:24:53 -08:00
Jessica Wang
6caefbc6e4
cloudStack 3.0 new UI - system - routers/systemVMs have been moved to zone on UI. Here is related API call change.
2011-12-05 16:08:25 -08:00
Brian Federle
88d438dc2f
bug 12313
...
-Add back button to install wizard steps
-Misc. refactoring
2011-12-05 16:05:17 -08:00
Jessica Wang
8c0be2e34a
bug 12243: cloudStack 3.0 new UI - system - use a different way to get ID for view console of systemVM.
2011-12-05 15:50:57 -08:00
Jessica Wang
ef15652237
bug 12243: cloudStack 3.0 new UI - system - service provider - fix a bug that addNetworkServiceProvider was being called again after the provider has been created.
2011-12-05 15:32:38 -08:00
Brian Federle
e2743c66cd
Remove subtitle on install create phase
2011-12-05 14:23:02 -08:00
Brian Federle
b03a8b5939
bug 12344: Updates to system section
...
-Move System VMs section to relevant are on zone chart
-Make Virtual Router provider a detail view
-Move Virtual Appliances listing to 'virtual routers' detail tab
2011-12-05 14:22:44 -08:00
Brian Federle
93b3aa3efb
Setup cloudStack.fullRefresh for zone chart
2011-12-05 09:40:09 -08:00
Abhinandan Prateek
426b464aab
bug 8313: still encrypt the passwords when setting up account
2011-12-05 13:08:53 +05:30
Abhinandan Prateek
1dee569f0e
bug 8313: LDAP connector tested with ApacheDS
2011-12-05 11:51:21 +05:30
Jessica Wang
1641229c07
bug 12239: cloudStack 3.0 new UI - Navigating to accounts from domain will only show accounts belonging to that domain
2011-12-03 13:15:15 -08:00
Jessica Wang
419a2b1f7d
bug 12233: cloudStack 3.0 new UI - public network - delete IP range - fix a bug that id didn't get passed to API call.
2011-12-02 16:52:38 -08:00
Jessica Wang
84adb6b5bc
bug 12314: cloudStack 3.0 new UI - add cluster action - pass cluster type as ExternalManaged if hypervisor is VMware.
2011-12-02 16:42:21 -08:00
Jessica Wang
6660f367d0
bug 12223: cloudStack 3.0 new UI - Add Physical Network button has been implemented yet. Hide it from UI for now.
2011-12-02 16:25:50 -08:00
Brian Federle
e7c4bc48fd
bug 12266
...
- Show 'delete' instead of 'create' in dialog
- Select domain's parent upon deletion, for UI consistency
2011-12-02 15:39:28 -08:00
Jessica Wang
fdb21b5521
bug 12152: take snapshot action - fix a bug that showed message "snapshot undefined is ready"
2011-12-02 15:33:07 -08:00
Jessica Wang
7b68824efb
cloudStack 3.0 new UI - instance wizard - fix a bug that isolated network didn't show in step 5.
2011-12-02 15:33:06 -08:00
Brian Federle
c067758a34
bug 12309: Implement generic error handling
2011-12-02 14:59:06 -08:00
Jessica Wang
0b54135edc
cloudStack 3.0 new UI - zone chart - public network - add IP range - change notification message.
2011-12-02 14:50:56 -08:00
Jessica Wang
ec0e29f56b
cloudStack 3.0 new UI - vm wizard - fix a bug that isolated sourceNAT network wrongly showed twice in default network section in step 5.
2011-12-02 14:31:38 -08:00
Brian Federle
5fb518662f
bug 12263: Remove 'all zones' select when in project view
2011-12-02 13:26:15 -08:00
Brian Federle
3d3e0afd81
Use 'associated network id' instead of physical
2011-12-02 13:10:13 -08:00
Jessica Wang
f5283e9e61
bug 12248: cloudStack 3.0 new UI - listHosts API return new property resourcestate indicating the same thing state property used to indicate. Here is corresponding UI change.
2011-12-02 13:01:50 -08:00
Brian Federle
f8f1e538f8
bug 12249
...
Correctly filter VM list for port forwarding and load balancing, to
only allow for stopped/running VMs, and only VMs within the specified
network
2011-12-02 12:48:39 -08:00
Brian Federle
a01f6b4981
Fix network test data
2011-12-02 12:19:32 -08:00
Brian Federle
8fd57ef20c
Fix multi-edit refresh
2011-12-02 12:12:03 -08:00
Brian Federle
26b21da09b
bug 12289: Fix command = undefined
2011-12-02 12:05:08 -08:00
Brian Federle
601a073d2c
Fix VM details not appearing immediately after enabling static nat
2011-12-02 11:57:47 -08:00
Brian Federle
c9328e3a95
Fix table header when in dialog box
2011-12-02 11:57:47 -08:00
Jessica Wang
332e41bc7c
cloudStack 3.0 new UI - system - change notification message of actions of network service providers
2011-12-02 11:42:08 -08:00
Brian Federle
bc12d1a1ac
Only show pointer on first <td> in list view
2011-12-02 11:32:28 -08:00
Brian Federle
cf42939508
bug 12089
...
Fix search button click causing list view to be populated twice
2011-12-02 11:27:53 -08:00
Jessica Wang
f8e05954b3
cloudStack 3.0 new UI - system - change label of actions of network service providers.
2011-12-02 11:25:25 -08:00
Brian Federle
d64a988574
IE8 Fixes:
...
-Minor CSS fix for horiz. scrollbar in list view
-Fix breadcrumb click event not triggering
2011-12-02 10:41:58 -08:00
Brian Federle
21cd27a8ed
bug 12271
...
-Show status field for project user management
-Properly refresh multi-edit widget
2011-12-02 08:00:04 -08:00
Brian Federle
10e551e737
bug 12160: Fix attach disk adding row
2011-12-02 08:00:04 -08:00
Brian Federle
24264f7d9d
Move detail view apply button to the top
2011-12-02 08:00:03 -08:00
Jessica Wang
0d564e864c
cloudStack 3.0 new UI - VM Wizard - If a basic zone is selected in step 1, check if its guest network includes security group service. If yes, display security groups in step 5. Otherwise, display nothing in step 5.
2011-12-01 15:13:54 -08:00
Brian Federle
22c1da1372
Fix instance wizard: service offering step
...
-Fix default radio button not always being selected, causing
validation errors on creation
2011-12-01 14:42:52 -08:00
Brian Federle
7f672097f9
Fix for instance wizard, step 5
...
-Don't pass account and domainid if projects are active
2011-12-01 14:18:21 -08:00
Jessica Wang
2f884dd0bc
cloudStack 3.0 new UI - VM Wizard - select network/securityGroup step - having dedicate direct tagged default network or not is no longer a criterion for showing network or security groups.
2011-12-01 13:55:58 -08:00
Brian Federle
6e303c10e3
Various fixes to network section
...
-bug 12141: Show VM details on static NAT chart
-Move VPN actions from list view to detail view, to avoid excessive
server calls from being made (due to needing additional calls to get
VPN/network data)
-Fix network action refresh for list view and detail view
2011-12-01 13:46:31 -08:00
Jessica Wang
626efa585c
bug 12090: cloudStack 3.0 new UI - VM Wizard - select network step - list networks regardless of type.
2011-12-01 13:37:18 -08:00
Jessica Wang
2c9874ae63
cloudStack 3.0 new UI - system - public network - change tab name of IP range.
2011-12-01 11:56:11 -08:00
Brian Federle
c258edb14d
Fix zone select in copy template action
2011-12-01 11:17:50 -08:00
Brian Federle
48501c1dad
Minor UI tweaks:
...
-Fix dialog wrapping, when only 1 field present
-Fix search bar wrapping
2011-12-01 11:17:50 -08:00
Brian Federle
5e428179a9
Fix create template, create volume adding a new row to wrong list view
2011-12-01 11:17:50 -08:00
Brian Federle
e34d044668
Install wizard:
...
-Increase system VM poll to every 5s, to reduce server load
-Fix invalid tooltip errors
2011-12-01 10:25:01 -08:00
Brian Federle
24b92e10c8
Remove storage/host tags fields from install wizard
2011-12-01 09:13:51 -08:00
Brian Federle
79e7369fef
Better 'no-network' styling for instance wizard
2011-12-01 09:06:06 -08:00
Brian Federle
16f5b8ab95
bug 12186: Don't add template to volumes list view
2011-12-01 08:35:40 -08:00
Brian Federle
92c0f30bd3
Fix instance edit
2011-12-01 08:34:58 -08:00
Brian Federle
73f95dacda
Enable install wizard
2011-12-01 08:02:34 -08:00
Brian Federle
dd9aff1bd0
Fix tooltip
2011-12-01 08:02:26 -08:00
Brian Federle
d06b631b96
Complete install wizard server calls
2011-11-30 19:28:11 -08:00
Jessica Wang
18694e09fb
cloudStack 3.0 new UI - router page - implement View console.
2011-11-30 18:46:51 -08:00
Brian Federle
31b61b9002
WIP: Updated install wizard
2011-11-30 18:39:57 -08:00
Brian Federle
db61ed3d5e
Update example system JS
2011-11-30 18:39:57 -08:00
Brian Federle
f74c20b1ed
Projects UI fix for IE
2011-11-30 18:39:57 -08:00
Brian Federle
f3819b3f7e
Store user ID on login
2011-11-30 18:39:57 -08:00
Jessica Wang
133550461b
cloudStack 3.0 new UI - system vm page - implement View console.
2011-11-30 18:34:09 -08:00
Jessica Wang
17f9526730
cloudStack 3.0 new UI - naas - view secondary storages - pass podID, clusterID to listHosts API depending on what the previous page is.
2011-11-30 18:04:41 -08:00
Jessica Wang
d76d9286e9
cloudStack 3.0 new UI - naas - view primary storages - pass podID, clusterID to listStoragePools API depending on what the previous page is.
2011-11-30 18:01:44 -08:00
Jessica Wang
4701458ba3
cloudStack 3.0 new UI - naas - view hosts - pass podID, clusterID to listHosts API upon what the previous page is.
2011-11-30 17:57:03 -08:00
Jessica Wang
5283e5ece3
cloudStack 3.0 new UI - naas - view clusters - pass podID to listClusters API if the previous page is pod detail page.
2011-11-30 17:35:48 -08:00
Jessica Wang
68aba6016e
cloudStack 3.0 new UI - naas - isolated guest network - remove gateway, netmask, IP range from detailView.
2011-11-30 16:47:26 -08:00
Jessica Wang
206786038f
cloudStack 3.0 new UI - naas - display VLAN for isolated network.
2011-11-30 16:40:24 -08:00
Jessica Wang
214f86311f
cloudStack 3.0 new UI - system - fix a JS error "args.context.hosts is undefined" after adding a host and clicking the newly created host in listView.
2011-11-30 14:45:56 -08:00
Jessica Wang
cc2fa56457
cloudStack 3.0 new UI - guest network - add read-only network domain field and show it when network type is not Isolated.
2011-11-30 14:09:34 -08:00
Jessica Wang
d9f70b754d
cloudStack 3.0 new UI - guest network - implement network offering upgrade.
2011-11-30 12:49:12 -08:00
Jessica Wang
12a5b483d5
cloudStack 3.0 new UI - edit guest network - not pass network domain to API call if it's blank.
2011-11-30 12:18:16 -08:00
Jessica Wang
d54e15269b
cloudStack 3.0 new UI - guest network listView - add network offering column in grid.
2011-11-30 12:04:05 -08:00
Brian Federle
a98ffa366b
Fix specify VLan checkbox value
2011-11-30 12:00:38 -08:00
Jessica Wang
aa9324855e
cloudStack 3.0 new UI - edit guest network - populate only network offerings that are available for this guest network.
2011-11-30 11:16:10 -08:00
Jessica Wang
dbb7f940bf
cloudStack 3.0 new UI - zone chart - guest - network tab - guest network detail - edit - split network offerings into 2 fields: one is editable, the other one is not. Show editable now when network type is Isolated. Show the other one otherwise.
2011-11-30 10:30:14 -08:00
Brian Federle
5af364f5c9
Error handling for list view notifications
2011-11-29 19:40:45 -08:00
Brian Federle
f253be7715
Fix to make edit guest network details async
2011-11-29 19:33:03 -08:00
Jessica Wang
ed854ba221
cloudStack 3.0 new UI - system - zone chart - guest - network tab - network detail - edit - network offerings dropdown show only the current network offering in the network if "listNetworkOfferings&networkid=N" returns 0 items.
2011-11-29 18:42:28 -08:00
Jessica Wang
43c1a907df
cloudStack 3.0 new UI - system - zone chart - guest - network tab - network detail - edit - make network offerings editable.
2011-11-29 18:17:01 -08:00
Jessica Wang
7de9c06aee
cloudStack 3.0 new UI - zone chart - public network - change API call for getting public network since server side has changed.
2011-11-29 17:06:41 -08:00
Jessica Wang
cea20f679f
cloudStack 3.0 new UI - zone chart - management - implement detail tab (filled with zone info).
2011-11-29 16:41:15 -08:00
Jessica Wang
535c8669b6
cloudStack 3.0 new UI - zone chart - virtual router provider - implement enable/disable action.
2011-11-29 16:05:52 -08:00
Jessica Wang
8903c2394d
cloudStack 3.0 new UI - basic zone - Guest network - IP ranges - add Pod Name.
2011-11-29 15:53:14 -08:00
Jessica Wang
304348b729
cloudStack 3.0 new UI - basic zone - guest network detail view - remove account, gateway, netmask, start IP, end IP (only for basic zone).
2011-11-29 15:32:54 -08:00
Brian Federle
d8780d7bac
Add networks list view to Networks section
...
- Add basic list view section - 'Networks'
- Add detail view, with view all IP addresses button
2011-11-29 15:18:29 -08:00
Jessica Wang
f524f882bc
cloudStack 3.0 new UI - basic zone - security groups provider - comment out status for now since dataProvider() doesn't get called by widget code after action is done.
2011-11-29 14:57:54 -08:00
Jessica Wang
e872c71917
cloudStack 3.0 new UI - basic zone - create guest network - network offerings dropdown - if security groups provider is disabled, exclude network offerings that has "SecurityGroupProvider" in service.
2011-11-29 14:43:52 -08:00
Brian Federle
54d0248fb1
Add state, action filters to projects list view
2011-11-29 14:33:39 -08:00
Brian Federle
d955564ce1
Fix list view action filter specified in success
2011-11-29 14:32:20 -08:00
Brian Federle
e9b1ff2848
Misc. fixes for error handling:
...
-Add error handling to multi-edit widget
-Add error handling for projects UI actions
2011-11-29 14:02:32 -08:00
Jessica Wang
279fae7d0f
cloudStack 3.0 new UI - instance wizard - step 5 - get networks whose type is Shared instead of Direct.
2011-11-29 13:48:41 -08:00
Jessica Wang
a95ccdf8bd
cloudStack 3.0 new UI - zone chart - security group - implement Enable, Disable button.
2011-11-29 13:40:14 -08:00
Jessica Wang
ffc8f807c9
cloudStack 3.0 new UI - zone chart - security group - implement listView.
2011-11-29 13:33:17 -08:00
Brian Federle
5007bce96a
Fix multi-wizard CSS
2011-11-29 12:52:44 -08:00
Brian Federle
fb729d429c
More CSS fixes
2011-11-29 12:24:44 -08:00
Brian Federle
3061f398bf
Update icons; fix header bar
2011-11-29 12:01:02 -08:00
Jessica Wang
4a54cc4199
cloudStack 3.0 new UI - system - zone chart - Virtual Router, Security Group Provider - display provider status (enabled, disabled, not configured)
2011-11-29 11:42:17 -08:00
Jessica Wang
68c5559c3b
cloudStack 3.0 new UI - basic zone - specify service provider name when trying to get service provider ID of VirtualRouter during zone creation.
2011-11-29 10:57:17 -08:00
Jessica Wang
bee7626253
cloudStack 3.0 new UI - basic zone - guest network - add IP range - add 6 Pod fields, guest gateway field, guest netmask field to dialog (for basic zone only).
2011-11-28 16:52:19 -08:00
Jessica Wang
a5a5ff82e4
cloudStack 3.0 new UI - basic zone - guest network - create network - if create new pod is selected in pod dropdown, show 5 pod fields and create a pod first, than pass podId to create an IP range on pod level (for basic zone only)
2011-11-28 15:43:14 -08:00
Jessica Wang
35845a075c
cloudStack 3.0 new UI - system - basic zone - guest network - create network - after create network succeeds, create IP range on pod level (only for basic zone)
2011-11-28 14:42:09 -08:00
Jessica Wang
db623c8e47
cloudStack 3.0 new UI - basic zone - guest network - create network - add pod dropdown (for basic zone only).
2011-11-28 14:13:42 -08:00
Brian Federle
0042749226
Fix missing ID on host list view, which was breaking detail view
2011-11-28 14:10:27 -08:00
Jessica Wang
bb7ff42c23
cloudStack 3.0 new UI - system - basic zone - create pod - rename labels.
2011-11-28 13:29:35 -08:00
Brian Federle
623a048d13
Fix typo
2011-11-28 12:54:28 -08:00
Jessica Wang
683e5a5b57
cloudStack 3.0 new UI - system - basic zone - create pod - remove 3 guest fields.
2011-11-28 12:27:26 -08:00
Jessica Wang
d853de8187
cloudStack 3.0 new UI - system - basic zone - guest network - create network - populate network offering dropdown with Shared ones (for basic zone).
2011-11-28 12:07:54 -08:00
Jessica Wang
cd957604b3
cloudStack 3.0 new UI - system - basic zone - guest network - remove Edit action.
2011-11-28 11:49:47 -08:00
Jessica Wang
4f7eb448e0
cloudStack 3.0 new UI - system - basic zone - guest network - remove VLAN field and CIDR field.
2011-11-28 11:18:30 -08:00
Jessica Wang
7c37455b8a
cloudStack 3.0 new UI - system - router page, systemVM page - detail view - apply action filter.
2011-11-28 10:10:13 -08:00
Brian Federle
a25728b19d
bug 12177: Fix incorrect user data on auto-login, which was breaking add project
2011-11-28 10:09:40 -08:00
Jessica Wang
d03a2f40bf
cloudStack 3.0 new UI - Router page - detail view - add actions.
2011-11-23 18:10:04 -08:00
Jessica Wang
1565d2c659
cloudStack 3.0 new UI - System VM page - detail view - add actions.
2011-11-23 18:08:01 -08:00
Jessica Wang
cb473b29e9
cloudStack 3.0 new UI - Routers page - add detail view.
2011-11-23 17:21:55 -08:00
Jessica Wang
3b4b9db4e6
cloudStack 3.0 new UI - System VM page - add detail view.
2011-11-23 16:59:02 -08:00
Jessica Wang
a393616659
cloudStack 3.0 new UI - zone chart - public network - add IP range - fix a bug that vlanId didn't get passed to API call.
2011-11-23 16:01:55 -08:00
Brian Federle
a5a2636da7
Implement bypass login check and logout action
2011-11-23 15:46:57 -08:00
Brian Federle
e2a889ed5f
Add example logout action
2011-11-23 15:46:57 -08:00
Jessica Wang
19f297577e
cloudStack 3.0 new UI - zone chart - SRX device - implement Delete action.
2011-11-23 15:23:23 -08:00
Jessica Wang
c962af67bc
cloudStack 3.0 new UI - zone chart - F5 device - implement Delete action.
2011-11-23 14:33:36 -08:00
Jessica Wang
c3588083f6
cloudStack 3.0 new UI - zone chart - NetScaler device - implement Delete action.
2011-11-23 14:23:42 -08:00
Brian Federle
a3d221b842
Add search functionality to global settings
2011-11-23 14:10:02 -08:00
Brian Federle
9237e91344
-bug 12153: Properly refresh list view after performing actions in detail view
...
-Fix clicking too fast to add panel breaking browser
-Add install wizard copy
2011-11-23 14:02:54 -08:00
Jessica Wang
fc7bbc39f3
cloudStack 3.0 new UI - zone chart - add id attribute to network service provider.
2011-11-22 18:52:56 -08:00
Jessica Wang
8672d380a5
bug 12058: cloudStack 3.0 new UI - system - zone listView - add public field.
2011-11-22 18:24:42 -08:00
Brian Federle
a44896f840
Add ID to provider listViews, to pass correct context ID
2011-11-22 18:19:29 -08:00
Jessica Wang
92d548c4dd
cloudStack 3.0 new UI - zone chart - F5, SRX - implement Delet action.
2011-11-22 18:03:38 -08:00
Jessica Wang
5be1a23738
cloudStack 3.0 new UI - zone chart - NetScaler - implement Delet action.
2011-11-22 17:56:39 -08:00
Jessica Wang
7ec54f4e3c
cloudStack 3.0 new UI - zone chart - SRX - add detailView.
2011-11-22 17:37:05 -08:00
Jessica Wang
736744674b
cloudStack 3.0 new UI - zone chart - F5- add detailView.
2011-11-22 17:26:21 -08:00
Jessica Wang
0eafdde965
cloudStack 3.0 new UI - zone chart - NetScaler - add detailView.
2011-11-22 16:35:16 -08:00
Brian Federle
a7c8c618a3
-Add example network section
...
-Move example VPN section to detail view
-Support reordering of list view items
-Example reorder actions for service offerings
2011-11-22 15:40:33 -08:00
Jessica Wang
25fd6701b5
cloudStack 3.0 new UI - zone chart - SRX - implement Enable, Disable action for network service provider SRX.
2011-11-22 15:39:31 -08:00
Jessica Wang
3d22b49434
cloudStack 3.0 new UI - zone chart - F5 - implement Enable, Disable action for network service provider F5.
2011-11-22 15:33:13 -08:00
Jessica Wang
1642afacc6
cloudStack 3.0 new UI - zone chart - NetScaler - implement Enable, Disable action for network service provider NetScaler.
2011-11-22 15:24:51 -08:00
Jessica Wang
7a3e0e405e
cloudStack 3.0 new UI - zone chart - NetScaler - add provider action filter.
2011-11-22 14:32:40 -08:00
Jessica Wang
35fa7a8d4a
cloudStack 3.0 new UI - NaaS - SRX - populate listView.
2011-11-22 13:56:06 -08:00
Jessica Wang
60a70c1c13
cloudStack 3.0 new UI - zone chart - public network - IP range tab - fix a bug that VLAN value didn't show.
2011-11-22 13:32:44 -08:00
Jessica Wang
8fe898e820
cloudStack 3.0 new UI - NaaS - zone chart - show only 1 network (for now)
2011-11-22 13:24:09 -08:00
Jessica Wang
ac973fbf48
cloudStack 3.0 new UI - NaaS - F5 - populate listView.
2011-11-22 12:47:44 -08:00
Jessica Wang
a5e78d01fa
cloudStack 3.0 new UI - NaaS - Guest - create network - correct parameter name passed to API call.
2011-11-22 11:33:04 -08:00
Jessica Wang
2c8c240e10
cloudStack 3.0 new UI - NaaS - Guest - create network - populate network offerings dropdown based on selected scope.
2011-11-22 11:22:28 -08:00
Jessica Wang
88ec85f86a
cloudStack 3.0 new UI - NaaS - ListNetScalerLoadBalancer API has been changed. Here is related UI change.
2011-11-21 18:48:10 -08:00
Jessica Wang
cfc43d0aaf
cloudStack 3.0 new UI - NaaS - check if network service provider has been created before creating another one.
2011-11-21 18:37:02 -08:00
Jessica Wang
8729f75cb1
cloudStack 3.0 new UI - NaaS - NetScaler - add matching fields to listView.
2011-11-21 17:53:02 -08:00
Jessica Wang
6e240ef6db
cloudStack 3.0 new UI - NaaS - populate NetScaler listView.
2011-11-21 17:43:02 -08:00
Jessica Wang
f24a465129
cloudStack 3.0 new UI - NaaS - fix a bug that network service provider status was wrong in zone chart.
2011-11-21 15:57:19 -08:00
Jessica Wang
07e2d15e49
cloudStack 3.0 new UI - NaaS - correct an API parameter.
2011-11-21 15:49:53 -08:00
Jessica Wang
49e837c898
cloudStack 3.0 new UI - NaaS - specify network service provider as "not-configured" if it's disabled without devices.
2011-11-21 15:48:18 -08:00
Brian Federle
5ce9e74c5c
Add status labels for network providers
2011-11-21 15:24:04 -08:00
Brian Federle
fc6c6fb5cb
Better network provider status UI handling
2011-11-21 15:23:47 -08:00
Jessica Wang
20dbde5c82
cloudStack 3.0 new UI - NaaS - fix a bug that dedicated parameter didnt' get to pass into API call.
2011-11-21 14:43:45 -08:00
Jessica Wang
d0b394b39b
cloudStack 3.0 new UI - NaaS - rename capacity to lbdevicecapacity when making API call.
2011-11-21 14:25:39 -08:00
Jessica Wang
8e8ebec325
cloudStack 3.0 new UI - NaaS - parameter name in addNetscalerLoadBalancer, addF5LoadBalancer API has been changed. Here is related UI change.
2011-11-21 14:25:37 -08:00
Brian Federle
cfcda326e5
-Fix args.context for zone host details panel
...
-Fix list view edit action
-Support range input for create form
2011-11-21 14:22:35 -08:00
Jessica Wang
cdaff93419
cloudStack 3.0 new UI - NaaS - Pod page - IP Range tab
2011-11-21 12:00:54 -08:00
Jessica Wang
22619711e7
cloudStack 3.0 new UI - NaaS - zone chart - widget include different parameter in args. Here is related UI change.
2011-11-21 11:11:35 -08:00
Jessica Wang
e61184c3be
cloudStack 3.0 new UI - NaaS - implement Add NetScaler.
2011-11-18 16:37:41 -08:00
Jessica Wang
b181b109b3
cloudStack 3.0 new UI - NaaS - create shared function addExternalFirewall().
2011-11-18 16:22:46 -08:00
Jessica Wang
21f071051a
cloudStack 3.0 new UI - NaaS - create shared function addExternalLoadBalancer().
2011-11-18 16:12:37 -08:00
Jessica Wang
658b5f929b
cloudStack 3.0 new UI - NaaS - implement add SRX firewall on listView.
2011-11-18 15:50:43 -08:00
Jessica Wang
874491d4b1
cloudStack 3.0 new UI - NaaS - implement add SRX firewall.
2011-11-18 15:31:26 -08:00
Brian Federle
85f1e56ce1
-Add provider-wide action support
...
-Support defaultValue for create forms
-Fix formatting on panel create forms (for providers)
2011-11-18 14:59:42 -08:00
Jessica Wang
aae3f4a13f
cloudStack 3.0 new UI - NaaS - implement add F5 load balancer device from listView.
2011-11-18 14:49:50 -08:00
Jessica Wang
e633fbd9b6
cloudStack 3.0 new UI - NaaS - add F5 load balancer device - add capacity, dedicated.
2011-11-18 14:17:03 -08:00
Jessica Wang
e5cdacf3d3
cloudStack 3.0 new UI - NaaS - add F5 load balancer device - add public interface, private interface, number of retries, mode.
2011-11-18 13:39:22 -08:00
Brian Federle
5539dfd783
Forgot some params on add vlan ip range in install wizard
2011-11-18 12:06:04 -08:00
Jessica Wang
994d42920e
cloudStack 3.0 new UI - NaaS - Physical Network - Edit action - hide spinning wheel on detail view when 2 API calls are finished.
2011-11-18 10:40:56 -08:00
Jessica Wang
2474448142
cloudStack 3.0 new UI - NaaS - implement Add NetScaler.
2011-11-17 17:42:03 -08:00
Jessica Wang
b497a2ad10
cloudStack 3.0 new UI - NaaS - Add SRX firewall - add Network Service Provider, SRX, before add SRX firewall rule if SRX provider is disabled.
2011-11-17 17:07:21 -08:00
Jessica Wang
4bb6c48120
cloudStack 3.0 new UI - NaaS - Add F5 - add Network Service Provider, F5, before add F5 Load Balancer rule if F5 is disabled.
2011-11-17 16:50:03 -08:00
Jessica Wang
87f1d36723
cloudStack 3.0 new UI - NaaS - implement Add SRX firewall.
2011-11-17 16:22:59 -08:00
Brian Federle
3ac7fb889b
Add error handling to notifications widget
2011-11-17 16:21:19 -08:00
Brian Federle
a68fba3a8d
Pass _custom correctly to notifications
2011-11-17 16:21:19 -08:00
Brian Federle
bce9e22c97
Fix selects
2011-11-17 16:05:34 -08:00
Jessica Wang
b79aa32e59
cloudStack 3.0 new UI - NaaS - implement Add F5 Load Balancer.
2011-11-17 16:05:05 -08:00
Brian Federle
593803c8d7
Fix service provider map
2011-11-17 15:47:03 -08:00
Brian Federle
b01388d3be
Fix network offering list view
2011-11-17 15:22:34 -08:00
Brian Federle
74d53c8795
AJAX calls for add network offering form
2011-11-17 15:17:00 -08:00
Brian Federle
c6c75c498e
Whitespace cleanup
2011-11-17 15:17:00 -08:00
Jessica Wang
496f591e56
cloudStack 3.0 new UI - NaaS - F5, SRX - when status is disabled, click F5 or SRX will lead to an Add form.
2011-11-17 15:00:41 -08:00
Jessica Wang
64f5681097
cloudStack 3.0 new UI - System - NaaS - populate network service provide status (enabled/disabled) in zone chart.
2011-11-17 14:49:25 -08:00
Brian Federle
ed176cf3c9
-Fix zone chart -- $browser is undefined error
...
-Support dynamic generation of create form fields (for add network offering)
-Add example add network offering form
2011-11-17 14:16:42 -08:00
Brian Federle
b378964e81
Fix system devices UI
2011-11-17 11:39:43 -08:00
Jessica Wang
968bf5cbc6
cloudStack 3.0 new UI - System - Management - details - add "View Pods"
2011-11-17 11:12:57 -08:00
Jessica Wang
45bfedb2c0
cloudStack 3.0 new UI - system - Advanced Zone - guest - create network - domain field and account field's showing/hiding depends on selection in scope field.
2011-11-16 17:15:38 -08:00
Jessica Wang
21a488254b
cloudStack 3.0 new UI - system - Basic Zone - guest - implement create network cor Basic Zone.
2011-11-16 16:52:58 -08:00
Brian Federle
edc2df1d73
-Correctly refresh properties on detail view action
...
-Support async edit action
-Make action notification section optional
-Add save button to apply detail view edit
-Fix indentation, button spacing for multi-edit items
2011-11-16 16:19:17 -08:00
Brian Federle
7832509e78
Fix action filters on domain details
2011-11-16 14:35:12 -08:00
Jessica Wang
7a8a260073
cloudStack 3.0 new UI - system - guest - network tabs - IP ranges - implement Add action and delete action.
2011-11-16 14:26:46 -08:00
Brian Federle
8f9a06fb41
Always show disabled list view actions
2011-11-16 13:22:02 -08:00