Displaying 2 results from an estimated 2 matches for "selection_left".
2010 Sep 21
1
[PATCH] Fixing a loading issue with the Start On form
...ect(selected_rows) {
+ var selected_ids = new Array()
+ for (i=0; i<selected_rows.length; i++) {
+ load_widget_deselect(selected_rows[i]);
+ selected_ids[i] = selected_rows[i].id;
+ }
+ refresh_summary_static('selected_starting_host',
+ '<div class="selection_left"> \
+ <div>No starting host selected.</div> \
+ </div>');
+ $('#vm_action_data').val('');
+ }
+</script>
+
<div class="panel_header"></div>
<form method="POST" id="start_vm_form" act...
2010 Aug 26
1
[PATCH] Adding the ability to select a Host to start a VM
...%>
+ <!--[form:start_vm]-->
+ <%= hidden_field_tag 'id', @vm.id %>
+ <%= hidden_field_tag 'vm_action', VmTask::ACTION_START_VM %>
+ Selected Migration Target:
+ <div id='selected_starting_host'>
+ <div class="selection_left">
+ <div>No starting host selected.</div>
+ </div>
+ </div>
+ <%= hidden_field_tag 'vm_action_data', "" %>
+ <% end %>
+ </div>
+ <%= popup_footer("$('#start_vm_form').submit()",...