Campo Status en creacion de grupos es editable.
Causa. En es una ventana POPUP, que muestra 2 elementos, una que recibe el nombre del GRUPO a crearse y el otro es un COMBOBOX, de activo e inactivo sin embargo son editables; es decir cuando seleccionas ACTIVO lo puedes sobre escribir con cualquier texto. Solucion. Editar el archivo que contiene estos controldaores y hacer no EDITABLE el COMBOBOX, mas o menos de la siguiente manera: setEditable(false).
This commit is contained in:
@@ -352,6 +352,8 @@ DoNothing = function(){};
|
|||||||
NewGroupWindow = function(){
|
NewGroupWindow = function(){
|
||||||
newForm.getForm().reset();
|
newForm.getForm().reset();
|
||||||
newForm.getForm().items.items[0].focus('',500);
|
newForm.getForm().items.items[0].focus('',500);
|
||||||
|
newForm.getForm().items.items[1].setEditable(false);
|
||||||
|
|
||||||
w = new Ext.Window({
|
w = new Ext.Window({
|
||||||
autoHeight: true,
|
autoHeight: true,
|
||||||
width: 400,
|
width: 400,
|
||||||
|
|||||||
Reference in New Issue
Block a user