Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0012029 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] B. User interface | major | always | 2010-01-21 17:15 | 2011-05-20 15:02 | |||
Reporter | psarobe | View Status | public | |||||
Assigned To | iciordia | |||||||
Priority | urgent | Resolution | out of date | Fixed in Version | ||||
Status | closed | Fix in branch | pi | Fixed in SCM revision | ||||
Projection | none | ETA | none | Target Version | ||||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | 2.50MP11 | SCM revision | ||||||
Merge Request Status | ||||||||
Review Assigned To | ||||||||
OBNetwork customer | No | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Support ticket | ||||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0012029: IE8: Combo boxes are not refreshed | |||||||
Description | Combo boxes in wad windows don't get refresh | |||||||
Steps To Reproduce | 1. 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 | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
![]() |
||||||||
|
![]() |
|
(0023794) dbaz (viewer) 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)); } |
![]() |
|||
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:15 | psarobe | OBNetwork customer | => No |
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 |