BUG 0000 Adjustment views (process list, setup list, translations tool)

This commit is contained in:
Erik Amaru Ortiz
2011-06-14 17:35:54 -04:00
parent 6ff792715f
commit c6a66082c9
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
}
</style>
<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<iframe name="frameMain" id="frameMain" src ="../processes/mainInit" width="99%" height="200" frameborder="0">
<iframe name="frameMain" id="frameMain" src ="../processes/mainInit" width="99%" height="768" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
</body>

View File

@@ -1,5 +1,5 @@
<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<iframe name="adminFrame" id="adminFrame" src ="main_init" width="99%" height="200" frameborder="0">
<iframe name="adminFrame" id="adminFrame" src ="main_init" width="99%" height="768" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
</body>

View File

@@ -116,7 +116,7 @@ Ext.onReady(function(){
' To ',//TRANSLATIONS.ID_TO,
dateTo,
new Ext.Button ({
text: TRANSLATIONS.ID_FILTER_BY_DELEGATED_DATE,
text: 'Filter By',
handler: function(){
store.setBaseParam('dateFrom', dateFrom.getValue());
store.setBaseParam('dateTo', dateTo.getValue());
@@ -362,7 +362,7 @@ function removeLabel()
'Delete the selected translations?',
function(btn, text){
if ( btn == 'yes' ){
Ext.MessageBox.show({ msg: TRANSLATIONS.ID_DELETING_ELEMENTS, wait:true,waitConfig: {interval:200} });
Ext.MessageBox.show({ msg:'Deleting elements...', wait:true,waitConfig: {interval:200} });
Ext.Ajax.request({
url: 'ajaxListener',
success: function(response) {
@@ -380,7 +380,7 @@ function removeLabel()
}
);
} else {
PMExt.error('ERROR', TRANSLATIONS.ID_NO_SELECTION_WARNING);
PMExt.error('ERROR', 'Select a item from list please');
}
}