Short, Self Contained, Correct Example. In other words, cut your example down to the bare bones that still shows the problem. (*Chris*)
On Mon, Jul 29, 2013 at 8:06 PM, john lee <[email protected]> wrote: > SSCCE ? what u refer to? > > > ________________________________ > From: Dave Newton <[email protected]> > To: john lee <[email protected]> > Cc: Struts Users Mailing List <[email protected]> > Sent: Monday, July 29, 2013 10:04 PM > Subject: Re: s:property display INTERGER > > > > Please put an SSCCE on github/equivalent; I'm very skeptical. > > > > > On Mon, Jul 29, 2013 at 11:02 PM, john lee <[email protected]> > wrote: > > No, inside the action, before the return, I do > > > > detailpart.getQty().intValue(), return is 1, /* have value inside */ > > > >thanks for reply, any other thoughts? > > > >john > > > > > > From: Dave Newton <[email protected]> > >To: Struts Users Mailing List <[email protected]>; john lee < > [email protected]> > >Sent: Monday, July 29, 2013 9:59 PM > >Subject: Re: s:property display INTERGER > > > > > > > >If it's null, it's null. If there's a value, it will display. > > > > > > > > > >On Mon, Jul 29, 2013 at 10:46 PM, john lee <[email protected]> > wrote: > > > > > >>I have class Part > >> > >> class Part { > >> String pid, > >> Integer qty; > >>} > >> > >>how can I display object/convert inside JSP? > >> > >>/* if define/set (Part detailpart) before return */ > >> > >><s:property value="detailpart.pid"/> /* this is no problem */ > >> > >>how about qty? > >> > >>I tried the following, but show null > >> <s:property value="detailpart.qty"/> > >> > >>I tried the following, but nothing either > >> <s:property value="getText('{0,number,#,##0.00}',{detailpart.qty})"/> > >> > >>so, how to display/convert object inside value ? > >> > >>thanks in advance > >> > >>john > > > > > >-- > > > >e: [email protected] > >m: 908-380-8699 > >s: davelnewton_skype > >t: @dave_newton > >b: Bucky Bits > >g: davelnewton > >so: Dave Newton > > > > > > > > > > > -- > > e: [email protected] > m: 908-380-8699 > s: davelnewton_skype > t: @dave_newton > b: Bucky Bits > g: davelnewton > so: Dave Newton >

