Displaying 4 results from an estimated 4 matches for "vm_network_config_mac".
Did you mean:
vm_network_config_mac_
2010 Sep 21
1
[PATCH] Introduce ability to select any kind of nic model, not just default or virtio.
...;/div>
<%# this column is only populated if a static ip network is selected: %>
<div id="vm_network_config_header_ip" style="display: none;">IP Address:</div>
@@ -92,14 +93,16 @@
<input name="macs[]" id="vm_network_config_mac_<%= i %>" ></input>
</div>
- <div class="vm_network_config_ip">
-
+ <div class="vm_network_config_model">
+ <select name="models[]" id="vm_...
2009 Jul 30
1
[PATCH server] fixes to the multiple vm/nets component
...<% @nics.each { |nic| %>
+ <option value="<%= nic.network_id %>"><%= nic.network.name %></option>
+ <% } %>
+ </select>
+ </div>
+
+ <div class="vm_network_config_mac">
+ <input name="macs[]" id="vm_network_config_mac_<%= i %>" ></input>
+ </div>
+
+ <div class="vm_network_config_ip">
+
+ </div>
+
+...
2010 Aug 25
2
[PATCH] Virtio support
...ow new row only if last row's select box was
// previously empty, and if all are not shown
displayed_rows = $('.vm_network_config_row:visible').size();
@@ -282,6 +298,7 @@ ${htmlList(pools, id)}
// clear row mac and ip addresses
$('#vm_network_config_mac_'+row).attr('value', '');
$('#vm_network_config_mac_'+row).parent().next().html(' ');
+ $('#vm_network_config_virtio_'+row).attr('checked', '');
// hide row if not the first
if(row...
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...)
+ content += ' <option value="' + nics[i].network_id + '">' + nics[i].name + '</option>';
+ }
+ content += ' </select>';
+ content += ' </div>';
+ content += ' <div id="vm_network_config_mac_'+vm_network_config_rows+'" class="vm_network_config_mac">';
+ content += ' <input style="width: 130px;"></input>';
+ content += ' </div>';
+ content += ' <div id="vm_network_config_ip_...