Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0012221 | Openbravo ERP | B. User interface | public | 2010-02-10 22:03 | 2010-03-22 17:50 |
|
Reporter | dbaz | |
Assigned To | dbaz | |
Priority | urgent | Severity | critical | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 20 | OS Version | Kubuntu 8.10 |
Product Version | 2.40 | |
Target Version | | Fixed in Version | | |
Merge Request Status | |
Review Assigned To | |
OBNetwork customer | |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0012221: Popups in FF3.6 get opened minimized |
Description | When you open (or when the app opens) any popup it appears minimized.
It is just happen in FF3.6 (in Windows) |
Steps To Reproduce | Open any window and click on any popup (Linked Items for example) |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | related to | defect | 0012046 | | closed | dbaz | Popups in FF3.6 get opened minimized |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2010-02-10 22:03 | dbaz | New Issue | |
2010-02-10 22:03 | dbaz | Assigned To | => dbaz |
2010-02-10 22:03 | dbaz | Relationship added | related to 0012046 |
2010-02-10 22:04 | hgbot | Checkin | |
2010-02-10 22:04 | hgbot | Note Added: 0024142 | |
2010-02-10 22:04 | hgbot | Status | new => resolved |
2010-02-10 22:04 | hgbot | Resolution | open => fixed |
2010-02-10 22:04 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/stable/2.40/rev/133e0cda26f79d45c823b9afa8d2ae0684d97588 [^] |
2010-02-10 22:04 | dbaz | Status | resolved => closed |
2010-03-22 16:34 | villind | Note Added: 0025649 | |
2010-03-22 16:36 | villind | Note Added: 0025650 | |
2010-03-22 16:36 | villind | Status | closed => new |
2010-03-22 16:36 | villind | Resolution | fixed => open |
2010-03-22 17:46 | dbaz | Note Added: 0025652 | |
2010-03-22 17:48 | dbaz | Note Edited: 0025652 | bug_revision_view_page.php?bugnote_id=0025652#r171 |
2010-03-22 17:48 | hgbot | Checkin | |
2010-03-22 17:48 | hgbot | Note Added: 0025653 | |
2010-03-22 17:49 | dbaz | Status | new => scheduled |
2010-03-22 17:49 | dbaz | fix_in_branch | => pi |
2010-03-22 17:49 | dbaz | Status | scheduled => resolved |
2010-03-22 17:49 | dbaz | Resolution | open => fixed |
2010-03-22 17:49 | dbaz | Status | resolved => closed |
2010-03-22 17:49 | dbaz | Status | closed => new |
2010-03-22 17:49 | dbaz | Resolution | fixed => open |
2010-03-22 17:50 | dbaz | Status | new => scheduled |
2010-03-22 17:50 | dbaz | fix_in_branch | pi => 2.40 |
2010-03-22 17:50 | dbaz | Status | scheduled => resolved |
2010-03-22 17:50 | dbaz | Resolution | open => fixed |
2010-03-22 17:50 | dbaz | Status | resolved => closed |
Notes |
|
(0024142)
|
hgbot
|
2010-02-10 22:04
|
|
|
|
|
This still happens with fields like business partner selector (only on Windows).
1. Go to: Sales Management || Transactions || Sales Order || Header
2. Select New
3. Type 1234567 in Business Partner input and press ENTER
4. => The popup is opened in backgroung |
|
|
|
This still happens with fields like business partner selector (only on Windows).
1. Go to: Sales Management || Transactions || Sales Order || Header
2. Select New
3. Type 1234567 in Business Partner input and press ENTER
4. => The popup is opened in backgroung
Tested with the latest 2.40 and also with demo.openbravo.com |
|
|
(0025652)
|
dbaz
|
2010-03-22 17:46
(edited on: 2010-03-22 17:48) |
|
Thanks villind for raise it
Here you have the diff (for 2.40) which fix it if you don't want to wait until next MP
--- a/web/js/searchs.js
+++ b/web/js/searchs.js
@@ -99,8 +99,8 @@
var complementos = complementosNS4 + "height=" + strHeight + ", width=" + strWidth + ", left=" + strLeft + ", top=" + strTop + ", screenX=" + strLeft + ", screenY=" + strTop + ", location=0, resizable=0, scrollbars=1, status=0, toolbar=0, titlebar=0";
winSelector = window.open(strPagina + ((camposAccesorios=="")?"":"?" + camposAccesorios), strVentana, complementos);
if (winSelector!=null) {
- if (oculta) window.focus();
- else winSelector.focus();
+ /*if (oculta) window.focus();
+ else*/ winSelector.focus();
//winSelector.onunload = function(){top.opener.closeWindowSearch();};
activarEventos();
}
|
|
|
(0025653)
|
hgbot
|
2010-03-22 17:48
|
|
Repository: erp/stable/2.40
Changeset: 5789f059963cba391222fe6846f0e95a018958bd
Author: David Baz Fayos <david.baz <at> openbravo.com>
Date: Mon Mar 22 17:56:48 2010 +0100
URL: http://code.openbravo.com/erp/stable/2.40/rev/5789f059963cba391222fe6846f0e95a018958bd [^]
Related to issue 12221: Now selectors opened with ENTER key opens properly in FF3.6
---
M src/org/openbravo/erpCommon/security/Login_F1.html
M web/js/searchs.js
M web/js/utils.js
---
|
|