bug 12229: guest network - network tabs - Restart required field - highlight it in red if value is Yes (to get user's attention).

This commit is contained in:
Jessica Wang 2011-12-13 09:55:54 -08:00
parent f3cd93f835
commit 4fc953ed34

View File

@ -896,7 +896,12 @@
},
restartrequired: {
label: 'Restart required',
converter: cloudStack.converters.toBooleanText
converter: function(booleanValue) {
if(booleanValue == true)
return "<font color='red'>Yes</font>";
else if(booleanValue == false)
return "No";
},
},
isdefault: {
label: 'Default',