Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0012029
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Openbravo ERP] B. User interfacemajoralways2010-01-21 17:152011-05-20 15:02
ReporterpsarobeView Statuspublic 
Assigned Toiciordia 
PriorityurgentResolutionout of dateFixed in Version
StatusclosedFix in branchpiFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product Version2.50MP11SCM revision 
Review Assigned To
Web browser
ModulesCore
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0012029: IE8: Combo boxes are not refreshed

DescriptionCombo boxes in wad windows don't get refresh
Steps To Reproduce1. Login as Openbravo/openbravo role Openbravo Admin
2. Go to Financial Management || Accounting || Setup || Tax Rate || Tax
3. Click New and fill the mandatory fields
4. Click on Business partner tax category link.
5. In the window Business partner tax category create one record
6. Save and click Back button in the toolbar
7. Now you will be back in the tax rate window.
8. Expand the combo box Business partner tax category and it will be empty

This is wrong
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
related to defect 0006295pi closeddbaz Using IE generated windows are not requested/reloaded always 

-  Notes
(0023794)
dbaz (developer)
2010-01-25 17:04

It seems that the html is cached. This fast-fix solve this particular problem:


--- a/src/org/openbravo/base/secureApp/ServletGoBack.java
+++ b/src/org/openbravo/base/secureApp/ServletGoBack.java
@@ -12,6 +12,7 @@
 package org.openbravo.base.secureApp;
 
 import java.io.IOException;
+import java.util.Random;
 
 import javax.servlet.ServletConfig;
 import javax.servlet.http.HttpServletRequest;
@@ -44,9 +45,11 @@
     if (log4j.isDebugEnabled()) {
       log4j.info("start doPost");
     }
+ Random r1 = new Random();
+ String randomString = Long.toString(Math.abs(r1.nextLong()), 12);
     Variables vars = new Variables(req);
     String strUrl = strDireccion + vars.getCurrentServletPath(strServletPorDefecto) + "?Command="
- + vars.getCurrentServletCommand();
+ + vars.getCurrentServletCommand() + "&cachePrevent=" + randomString;
     res.sendRedirect(res.encodeRedirectURL(strUrl));
   }

- Issue History
Date Modified Username Field Change
2010-01-21 17:15 psarobe New Issue
2010-01-21 17:15 psarobe Assigned To => dbaz
2010-01-21 17:16 psarobe Status new => scheduled
2010-01-21 17:16 psarobe fix_in_branch => pi
2010-01-21 17:19 psarobe Relationship added related to 0006295
2010-01-25 17:04 dbaz Note Added: 0023794
2010-01-25 17:04 dbaz Assigned To dbaz => iciordia
2011-05-20 15:02 psarobe Status scheduled => closed
2011-05-20 15:02 psarobe Resolution open => out of date


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker