1863 Commits

Author SHA1 Message Date
Jessica Wang
2720bd5725 bug 10409: create account - add domain suffix field 2011-12-14 10:24:31 -08:00
Brian Federle
40c7b5b24d Fix refresh button event 2011-12-14 08:21:39 -08:00
Brian Federle
9f4e2d45c5 Fix dashboard error when 0 zones present (i.e., fresh install) 2011-12-14 08:15:31 -08:00
Brian Federle
405fa75b6d Implement system dashboard 2011-12-14 07:56:43 -08:00
Jessica Wang
582d565a4f bug 10409: edit domain - make domain suffix field editable. 2011-12-13 16:59:01 -08:00
Jessica Wang
96e3f7fbf5 bug 10409: create domain - add domain suffix field. 2011-12-13 16:54:04 -08:00
Jessica Wang
82b5ac90c6 bug 11200: configuration - instance page - migrate instance to another host - host dropdown - apply new property suitableformigration in host description. 2011-12-13 15:15:38 -08:00
Jessica Wang
c24bcd09ce bug 11200: configuration - Hypervisor Capabilities page - implement Edit action. 2011-12-13 14:35:10 -08:00
Jessica Wang
2c049e3250 bug 11200: configuration - add new page Hypervisor Capabilities. 2011-12-13 14:26:19 -08:00
Jessica Wang
438769badd cloudStack 3.0 new UI - configuration - change option name in select view. 2011-12-13 13:45:22 -08:00
Brian Federle
6359419f99 Update provider list view titles 2011-12-13 13:23:27 -08:00
Brian Federle
d550b6bb66 bug 12490
-Fix item refresh when adding new provider devices

-Fix missing add actions for all provider devices

status 12490: resolved fixed
2011-12-13 12:47:40 -08:00
Jessica Wang
4ca85a9f6c bug 12473: create guest network - list only network offerings whose state is enabled in dropdown. 2011-12-13 12:02:38 -08:00
Brian Federle
274df8b718 Lower page size to 20 per request
-- better fit for the size of most list views in UI
2011-12-13 11:29:25 -08:00
Brian Federle
1ea5c6466c bug 12419
Fix context not being passed to infinite scrolling load, causing error

status 12419: resolved fixed
2011-12-13 11:21:03 -08:00
Brian Federle
25992be5e4 bug 12277
Provider better flow for configuring providers:

-Convert all 'Configure' views from a list view to a detail view

-Add a view all to provider detail views to show list of individual
 providers

-Cleanup provider action handling for better UI feedback (correctly
 refreshes appearance after action, etc.)

This affects the NetScaler, F5, and SRX provider views on the system
chart

status 12277: resolved fixed
2011-12-13 10:33:13 -08:00
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
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
bc3a4d44d7 Remove unneeded dialog notifications from configuration section 2011-12-08 15:43:05 -08:00