BUG-11977 Popup de pausa de casos se puede desplazar fuera del marco
Descripcion: Cuando se pausa un caso, el popup de pausas se puede desplazar fuera del marco y no se lo puede reestablecer, se tiene que volver a ejecutar el caso. Solucion: Se deahabilito el movimiento de la ventana y corrigio problemas con tamaño del formulario contenedor. Resuelto para la version PM-2.5.2
This commit is contained in:
@@ -976,6 +976,7 @@ Ext.onReady(function(){
|
|||||||
var fieldset = {
|
var fieldset = {
|
||||||
xtype : 'fieldset',
|
xtype : 'fieldset',
|
||||||
labelWidth: 150,
|
labelWidth: 150,
|
||||||
|
width:380,
|
||||||
//autoHeight : true,
|
//autoHeight : true,
|
||||||
defaults : {
|
defaults : {
|
||||||
width : 170,
|
width : 170,
|
||||||
@@ -1045,12 +1046,13 @@ Ext.onReady(function(){
|
|||||||
var win = new Ext.Window({
|
var win = new Ext.Window({
|
||||||
title: _('ID_PAUSE_CASE'),
|
title: _('ID_PAUSE_CASE'),
|
||||||
width: 380,
|
width: 380,
|
||||||
height: 250,
|
height: 260,
|
||||||
layout:'fit',
|
layout:'fit',
|
||||||
autoScroll:true,
|
autoScroll:true,
|
||||||
modal: true,
|
modal: true,
|
||||||
maximizable: false,
|
maximizable: false,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
|
draggable: false,
|
||||||
items: [frm]
|
items: [frm]
|
||||||
});
|
});
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
|
|||||||
Reference in New Issue
Block a user