details:   https://code.openbravo.com/erp/devel/pi/rev/d993d583464c
changeset: 16485:d993d583464c
user:      David Baz Fayos <david.baz <at> openbravo.com>
date:      Thu May 10 15:19:17 2012 +0200
summary:   Related to issue 20207: Improved complexes 'action buttons' in IE9 
using HTML5 - part2

diffstat:

 src/org/openbravo/erpCommon/ad_actionButton/CreditPaymentGrid.html |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r e3eca21395e5 -r d993d583464c 
src/org/openbravo/erpCommon/ad_actionButton/CreditPaymentGrid.html
--- a/src/org/openbravo/erpCommon/ad_actionButton/CreditPaymentGrid.html        
Tue May 08 13:21:36 2012 +0200
+++ b/src/org/openbravo/erpCommon/ad_actionButton/CreditPaymentGrid.html        
Thu May 10 15:19:17 2012 +0200
@@ -161,9 +161,12 @@
           var newRows = '<table><tbody id=\"sectionGrid\">'+ aux;
           temp.innerHTML = newRows;
           tableBody.parentNode.replaceChild(temp.firstChild.firstChild, 
tableBody);
-          temp.parentNode.removeChild(temp);
+          if (temp.parentNode) {
+            temp.parentNode.removeChild(temp);
+          }
+        } else {
+          tableBody.innerHTML = aux;
         }
-        tableBody.innerHTML = aux;
         
         reloadOpener();
         updateExpectedAmt();

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to