Cambiando el Estado de un CheckBox Algunas veces deseamos controlar el estado de un checkbox o cambiarlo segùn determinadas condiciones. Pasos: 1. Creamos un proyecto Web. 2. En el diseñador agregamos un checkbox y dos botones. * Dar click derecho en el checkbox y luego seleccionar Add Binding Attribute, para agregar los atributos al checkbox, de manera que los podamos usar en nuestro código. Generando automáticamente private Checkbox checkbox1 = new Checkbox(); public Checkbox getCheckbox1() { return checkbox1; } public void setCheckbox1(Checkbox c) { this.checkbox1 = c; } 3.Damos click derecho en el botón Habilitar, y seleccionamos Edit Action Event Handler. A continuación, agregamos el código: this.checkbox1.setSelected(true);, el método setSelected con valor true, marca el checkbox como seleccionado, y un valor de false, quita la marca. public String button1_action() { // TODO: Process the action. Return value is a navigation //
Comments
[u]Picture1 [/u]
[URL=http://imageshack.us][IMG]http://img187.imageshack.us/img187/2397/errorinicioew5.jpg[/IMG][/URL]
[URL=http://g.imageshack.us/img187/errorinicioew5.jpg/1/][IMG]http://img187.imageshack.us/img187/errorinicioew5.jpg/1/w1024.png[/IMG][/URL]
[u]Picture2 [/u]
[URL=http://imageshack.us][IMG]http://img366.imageshack.us/img366/4720/error1vu7.jpg[/IMG][/URL]
[URL=http://g.imageshack.us/img366/error1vu7.jpg/1/][IMG]http://img366.imageshack.us/img366/error1vu7.jpg/1/w1024.png[/IMG][/URL]
[u]Picture 3[/u]
[URL=http://imageshack.us][IMG]http://img353.imageshack.us/img353/6935/error2by2.jpg[/IMG][/URL]
[URL=http://g.imageshack.us/img353/error2by2.jpg/1/][IMG]http://img353.imageshack.us/img353/error2by2.jpg/1/w1024.png[/IMG][/URL]