diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-18 12:17:58 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-18 12:17:58 -0700 |
commit | be84c7be2557dae92426e64ab44170e8999cfc44 (patch) | |
tree | a4fc4a6dfa613407e75ea219c4e68f279ccc03dd /modules/server_add/views | |
parent | 4f4b2995ae4f33d706f11b15da76c1d25cdd1988 (diff) |
* Changed the close functionality so the page is reloaded when the dialog is closed.
* Renamed the ServerAddCloseButton.
* Added Pause and Continue buttons. Now when add is clicked, A Pause button is shown,
once the adding is complete, the add button is reshown andpause button is hidden.
Clicking the pause button will hide it and show a continue button.
Diffstat (limited to 'modules/server_add/views')
-rw-r--r-- | modules/server_add/views/server_add_tree_dialog.html.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/server_add/views/server_add_tree_dialog.html.php b/modules/server_add/views/server_add_tree_dialog.html.php index 354659bc..fdb66d1c 100644 --- a/modules/server_add/views/server_add_tree_dialog.html.php +++ b/modules/server_add/views/server_add_tree_dialog.html.php @@ -33,8 +33,14 @@ disabled="disabled"> <?= t("Add") ?> </button> + <button id="gServerAddPauseButton" class="ui-state-default ui-corner-all" style="display:none"> + <?= t("Pause") ?> + </button> + <button id="gServerAddContinueButton" class="ui-state-default ui-corner-all" style="display:none"> + <?= t("Continue") ?> + </button> - <button id="gServerCloseButton" class="ui-state-default ui-corner-all"> + <button id="gServerAddCloseButton" class="ui-state-default ui-corner-all"> <?= t("Close") ?> </button> </span> |