Author: jonesde
Date: Fri Jul 20 23:11:12 2007
New Revision: 558253

URL: http://svn.apache.org/viewvc?view=rev&rev=558253
Log:
Changed back the change done a while back in SVN rev 532409; this appears to 
cause double posting in IE6 and IE7, and probably would in other browsers but 
they seem to avoid it somehow, even though it is what the code says to do

Modified:
    ofbiz/trunk/framework/images/webapp/images/selectall.js

Modified: ofbiz/trunk/framework/images/webapp/images/selectall.js
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/selectall.js?view=diff&rev=558253&r1=558252&r2=558253
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/selectall.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/selectall.js Fri Jul 20 23:11:12 
2007
@@ -202,7 +202,8 @@
     if (button.form.action != null && button.form.action.length > 0) {
         button.disabled = true;
     }
-    button.form.submit();
+    button.className = button.className + " disabled";
+    button.value = button.value + "*";
 }
 
 function submitFormEnableButtonByName(formName, buttonName) {


Reply via email to