You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2010/09/08 16:35:05 UTC

svn commit: r995069 - /incubator/vcl/trunk/web/js/blockallocations.js

Author: jfthomps
Date: Wed Sep  8 14:35:05 2010
New Revision: 995069

URL: http://svn.apache.org/viewvc?rev=995069&view=rev
Log:
VCL-254
block request improvements

modified checkOwnerCB - warning state was not getting cleared correctly when input became valid

Modified:
    incubator/vcl/trunk/web/js/blockallocations.js

Modified: incubator/vcl/trunk/web/js/blockallocations.js
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/web/js/blockallocations.js?rev=995069&r1=995068&r2=995069&view=diff
==============================================================================
--- incubator/vcl/trunk/web/js/blockallocations.js (original)
+++ incubator/vcl/trunk/web/js/blockallocations.js Wed Sep  8 14:35:05 2010
@@ -1308,8 +1308,9 @@ function checkOwnerCB(data, ioArgs) {
 		ownervalid = false;
 	}
 	else {
-		dijit.byId('browner').attr('valid', true);
+		obj.attr('state', 'Normal');
 		obj._setStateClass();
+		obj.displayMessage(null);
 		ownervalid = true;
 	}
 }