BUG 9318 Cases se encuentra un nivel abajo en IE9 SOLVED
- Folder Cases appears a row below - The ID problem for uxmodern in styles forced to move the refresh from the right side to the left side, to avoid any conflicts.
This commit is contained in:
@@ -179,22 +179,7 @@ Ext.onReady(function(){
|
|||||||
region: 'center',
|
region: 'center',
|
||||||
margins: '0 0 0 0',
|
margins: '0 0 0 0',
|
||||||
useArrows : true,
|
useArrows : true,
|
||||||
tbar: [
|
|
||||||
{
|
|
||||||
xtype: 'tbfill'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id:'refreshNotifiers',
|
|
||||||
xtype: 'tbbutton',
|
|
||||||
cls: 'x-btn-icon',
|
|
||||||
icon: '/images/refresh.gif',
|
|
||||||
/*text: 'Reload notifiers',*/
|
|
||||||
handler: function(){
|
|
||||||
updateCasesTree();
|
|
||||||
updateCasesView();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
animate:true,
|
animate:true,
|
||||||
autoScroll: true,
|
autoScroll: true,
|
||||||
rootVisible: false,
|
rootVisible: false,
|
||||||
@@ -322,11 +307,13 @@ Ext.onReady(function(){
|
|||||||
collapsible: true,
|
collapsible: true,
|
||||||
collapseMode: 'mini',
|
collapseMode: 'mini',
|
||||||
margins: '0 0 0 2',
|
margins: '0 0 0 2',
|
||||||
|
|
||||||
items: [
|
items: [
|
||||||
treeMenuItems,
|
treeMenuItems,
|
||||||
treeMenuItemDetail
|
treeMenuItemDetail
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
mainMenu.setTitle('<a href="#"><img id="refreshNotifiers" src="/images/refresh.gif" onClick="updateCasesTree(); updateCasesView();" /></a>');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Triggers Panel
|
* Triggers Panel
|
||||||
@@ -556,7 +543,7 @@ function updateCasesView() {
|
|||||||
|
|
||||||
function updateCasesTree() {
|
function updateCasesTree() {
|
||||||
//treeMenuItems.root.reload();
|
//treeMenuItems.root.reload();
|
||||||
Ext.getCmp('refreshNotifiers').setIcon('/images/ext/default/grid/loading.gif');
|
document.getElementById('refreshNotifiers').src = '/images/ext/default/grid/loading.gif';
|
||||||
|
|
||||||
itemsTypes = Array('CASES_INBOX', 'CASES_DRAFT', 'CASES_CANCELLED', 'CASES_SENT', 'CASES_PAUSED', 'CASES_COMPLETED','CASES_SELFSERVICE');
|
itemsTypes = Array('CASES_INBOX', 'CASES_DRAFT', 'CASES_CANCELLED', 'CASES_SENT', 'CASES_PAUSED', 'CASES_COMPLETED','CASES_SELFSERVICE');
|
||||||
if(currentSelectedTreeMenuItem){
|
if(currentSelectedTreeMenuItem){
|
||||||
@@ -586,7 +573,7 @@ function updateCasesTree() {
|
|||||||
}
|
}
|
||||||
else continue;
|
else continue;
|
||||||
}
|
}
|
||||||
Ext.getCmp('refreshNotifiers').setIcon('/images/refresh.gif');
|
document.getElementById('refreshNotifiers').src = '/images/refresh.gif';
|
||||||
|
|
||||||
},
|
},
|
||||||
failure: function(){},
|
failure: function(){},
|
||||||
|
|||||||
Reference in New Issue
Block a user