How to build a paging view(first/previous/next/last) within struts?

2003-07-08 Thread leonZ
I use the iterate tag to show the records set. But is there any good way to show the records in several pages and with first,previous,next,last button in each pages? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: readonly - select box

2003-07-08 Thread leonZ
Why don't u use the "readOnly" instead of "disabled"? That's not necessary to use the hidden input in this case. "sriram" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How to make a readonly (not disabled). > > For , I can use 'readonly' but this does not exist for > > Any sugges

Re: How can I set the defualt selection?

2003-07-08 Thread leonZ
example.jsp code segment: ... 1 2 3 ... Don't forget adding the set and get method for submit_flag to the exampleForm.java exampleAction.java code segment: ... public ActionForward perform(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletRes

Re: How can I set the defualt selection?

2003-07-08 Thread leonZ
; GET or a PUT. > > GET and PUT are just HTTP internet transfer protocol formats. I believe > a GET has only got a HTTP header, whereas PUT has a body too, which > means you can send more bytes in your parameters. (GET parameters are on > the query string, PUT params are the form fields).

Re: How can I set the defualt selection?

2003-07-07 Thread leonZ
re the codes > > shown below correct? Will the default selection > > shown? > > > > > > > > > > > > > > > > JPJ > > > > --- leonZ <[EMAIL PROTECTED]> wrote: > > > >>I make it more clear here: > >

Re: How can I set the defualt selection?

2003-07-06 Thread leonZ
I make it more clear here: A normal html: first second third how can I use the 'SELECTED' to set a defualt option with struts tags. ... "leon" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am a beginner of struts. I can't use t