RE: Problem: bean:define...

2005-11-22 Thread Fulgencio Comendeiro, Eduardo
Try to put lowercase private int Cmax = 0 ; --- private int cmax = 0 ; -Mensaje original- De: Eider Iturbe [mailto:[EMAIL PROTECTED] Enviado el: martes, 22 de noviembre de 2005 10:33 Para: Struts Users Mailing List Asunto: Problem: bean:define... Hi! I have a problem with

RE: Problem: bean:define...

2005-11-22 Thread Ramaswamy, Palaniappan
Hi Eider Try /bean:define id=cmax name=adminFormBean property=Cmax type=java.lang.Integer/ the property=Cmax should be property=cmax. Struts is case sensitive. If the method in the bean is setCmax then the property should be accessed as cmax in any of the struts tag. Have a Good Day!!! Best

Re: Problem: bean:define...

2005-11-22 Thread Eider Iturbe
Thanks to all! Writing the first letter in lowercase, it works well :-) !! Eider Ramaswamy, Palaniappan wrote: Hi Eider Try /bean:define id=cmax name=adminFormBean property=Cmax type=java.lang.Integer/ the property=Cmax should be property=cmax. Struts is case sensitive. If the method