[freeside-commits] freeside/httemplate/elements tr-select-cust-part_pkg.html, 1.2, 1.2.4.1

Ivan,,, ivan at wavetail.420.am
Sat Apr 9 15:50:05 PDT 2011


Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail.420.am:/tmp/cvs-serv7206

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	tr-select-cust-part_pkg.html 
Log Message:
fix package selection with classes in IE8, RT#12377

Index: tr-select-cust-part_pkg.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/tr-select-cust-part_pkg.html,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -u -w -d -r1.2 -r1.2.4.1
--- tr-select-cust-part_pkg.html	30 Jan 2010 20:05:16 -0000	1.2
+++ tr-select-cust-part_pkg.html	9 Apr 2011 22:50:03 -0000	1.2.4.1
@@ -18,7 +18,10 @@
     function classnum_changed(what) {
 
       what.form.pkgpart.disabled = 'disabled'; //disable part_pkg dropdown
-      what.form.submit.disabled = true; //disable the submit button
+      var submitButton = what.form.submitButton; // || what.form.submit;
+      if ( submitButton ) {
+        submitButton.disabled = true; //disable the submit button
+      }
       var discountnum = what.form.discountnum;
       if ( discountnum ) {
         discountnum.disabled = true; //disable discount dropdown



More information about the freeside-commits mailing list