Hi,

The problem was the way he referenced the field *txCantidad*

It does not work:
Container cnCantidad = new Container(new GridLayout(1, 3)).add(btMenos).add(
*txCantidad.getText()*).add(btMas);

It works:
Container cnCantidad = new Container(new GridLayout(1, 3)).add(btMenos).add(
*txCantidad*).add(btMas);

Thanks for support.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/302c4d60-eea4-445b-a9cc-70b9dd5018ebo%40googlegroups.com.

Reply via email to