search for: start_vm_form

Displaying 2 results from an estimated 2 matches for "start_vm_form".

2010 Sep 21
1
[PATCH] Fixing a loading issue with the Start On form
...4,6 +4,45 @@ <%- content_for :description do -%> Please choose a Host to start the Virtual Machine. Leave the selection blank to allow oVirt to choose the most appropriate starting host. <%- end -%> + +<script type="text/javascript"> + $(function() { + + $('#start_vm_form').ajaxForm({ + dataType: 'json', + success: afterVm + }); + + }); + + function start_vm_select(selected_rows) { + var selected_ids = new Array(); + for (i=0; i<selected_rows.length; i++) { + load_widget_select(selected_rows[i]); + selected_ids[i] = sele...
2010 Aug 26
1
[PATCH] Adding the ability to select a Host to start a VM
...;%- content_for :description do -%> + Please choose a Host to start the Virtual Machine. Leave the selection blank to allow oVirt to choose the most appropriate starting host. +<%- end -%> +<div class="panel_header"></div> + +<form method="POST" id="start_vm_form" action="<%= url_for :action => 'vm_action' %>"> + <div class="dialog_form"> + <%= error_messages_for 'start_vm' %> + + <%= render :partial => '/host/grid', :locals => { + :table_id => 'star...