Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0012221Openbravo ERPB. User interfacepublic2010-02-10 22:032010-03-22 17:50
dbaz 
dbaz 
urgentcriticalalways
closedfixed 
20Kubuntu 8.10
2.40 
 
Core
No
0012221: Popups in FF3.6 get opened minimized
When you open (or when the app opens) any popup it appears minimized.

It is just happen in FF3.6 (in Windows)
Open any window and click on any popup (Linked Items for example)
No tags attached.
related to defect 0012046 closed dbaz Popups in FF3.6 get opened minimized 
Issue History
2010-02-10 22:03dbazNew Issue
2010-02-10 22:03dbazAssigned To => dbaz
2010-02-10 22:03dbazRelationship addedrelated to 0012046
2010-02-10 22:04hgbotCheckin
2010-02-10 22:04hgbotNote Added: 0024142
2010-02-10 22:04hgbotStatusnew => resolved
2010-02-10 22:04hgbotResolutionopen => fixed
2010-02-10 22:04hgbotFixed in SCM revision => http://code.openbravo.com/erp/stable/2.40/rev/133e0cda26f79d45c823b9afa8d2ae0684d97588 [^]
2010-02-10 22:04dbazStatusresolved => closed
2010-03-22 16:34villindNote Added: 0025649
2010-03-22 16:36villindNote Added: 0025650
2010-03-22 16:36villindStatusclosed => new
2010-03-22 16:36villindResolutionfixed => open
2010-03-22 17:46dbazNote Added: 0025652
2010-03-22 17:48dbazNote Edited: 0025652bug_revision_view_page.php?bugnote_id=0025652#r171
2010-03-22 17:48hgbotCheckin
2010-03-22 17:48hgbotNote Added: 0025653
2010-03-22 17:49dbazStatusnew => scheduled
2010-03-22 17:49dbazfix_in_branch => pi
2010-03-22 17:49dbazStatusscheduled => resolved
2010-03-22 17:49dbazResolutionopen => fixed
2010-03-22 17:49dbazStatusresolved => closed
2010-03-22 17:49dbazStatusclosed => new
2010-03-22 17:49dbazResolutionfixed => open
2010-03-22 17:50dbazStatusnew => scheduled
2010-03-22 17:50dbazfix_in_branchpi => 2.40
2010-03-22 17:50dbazStatusscheduled => resolved
2010-03-22 17:50dbazResolutionopen => fixed
2010-03-22 17:50dbazStatusresolved => closed

Notes
(0024142)
hgbot   
2010-02-10 22:04   
Repository: erp/stable/2.40
Changeset: 133e0cda26f79d45c823b9afa8d2ae0684d97588
Author: David Baz Fayos <david.baz <at> openbravo.com>
Date: Wed Feb 10 22:03:08 2010 +0100
URL: http://code.openbravo.com/erp/stable/2.40/rev/133e0cda26f79d45c823b9afa8d2ae0684d97588 [^]

Fixed issue 12221: Now popups open ok in Windows FF3.6

---
M web/js/utils.js
---
(0025649)
villind   
2010-03-22 16:34   
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
(0025650)
villind   
2010-03-22 16:36   
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
---