Pregunta

He creado radiogrupo usando el código

var radios = new Ext.form.RadioGroup({
     columns    : 2,
       items: [
             {boxLabel: 'E-Mail', name: 'communication', inputValue: 1},
             {boxLabel: 'Nagios', name: 'communication', inputValue: 2}
        ]
   });

Quiero consultar uno del botón de radio en algún evento. ¿Cómo hacerlo? Intenté usar:

radios.setValue(true, false);

Pero no está funcionando.

No hay solución correcta

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top