Displaying 1 result from an estimated 1 matches for "update_vm_pool".
2010 Aug 25
0
[PATCH] Adding the VM Pool migration for vms
...<%= label "vm", "vm_resource_pool_id", "Select the pool to migrate to" %>
+ <%= select "vm", "vm_resource_pool_id", @vm_pools.map { |pool| [pool.name, pool.id] } %>
+ <% end %>
+
+ </div>
+ <%= popup_footer("update_vm_pool()", "Change VM Pool") %>
+</form>
+<script type="text/javascript">
+ function update_vm_pool() {
+ $(document).trigger('close.facebox');
+ var form = $('#change_vmpool_form');
+
+ $.post(form.attr('action'), {
+ 'i...