Re: fileuploadinterceptor is called twice

2011-01-06 Thread 楊新波
its my mistake, i have fix it . thanks. 2011/1/7 Maurizio Cucchiara > What makes you think? > > How do you define your input result inside struts.xml? > > Maurizio Cucchiara > > On Jan 7, 2011 2:53 AM, "楊新波" wrote: > Hi everyone, > > Could you explain , why is fileuploadinterceptor called twic

Re: fileuploadinterceptor is called twice

2011-01-06 Thread Maurizio Cucchiara
What makes you think? How do you define your input result inside struts.xml? Maurizio Cucchiara On Jan 7, 2011 2:53 AM, "楊新波" wrote: Hi everyone, Could you explain , why is fileuploadinterceptor called twice ? when i upload a file that size exceeds the configured maximum , fileuploadintercept

fileuploadinterceptor is called twice

2011-01-06 Thread 楊新波
Hi everyone, Could you explain , why is fileuploadinterceptor called twice ? when i upload a file that size exceeds the configured maximum , fileuploadinterceptor is called twice . shinpa.

Re: JSON Property

2011-01-06 Thread Maurizio Cucchiara
Try <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %> 2011/1/6 Jim Talbut : > Ah, sort of. > Actually WW-3554 stopped me working that one out :) > > Now I've moved the JsonPlugin.tld to my own WEB-INF I can make it work, but > not using the syntax you used. > > If I have: > <%...@

Re: Struts 2 - multi select

2011-01-06 Thread Brian Thompson
Stefan, Can you filter the list somehow? Say, if the list entries fall into categories, have the user select a category first. Something like that would probably help. -Brian On Thu, Jan 6, 2011 at 6:36 AM, Dave Newton wrote: > It's all html; if one of the S2 tags doesnt do what you want

Re: Why do we need the set/push tag?

2011-01-06 Thread Aaron Brown
On Thu, Jan 6, 2011 at 9:41 AM, maven apache wrote: > 2011/1/6 Aaron Brown > > Well,is it the action's **responsibility to prepare the data which to be > used in the view/page? > Yes, but in some cases it's desirable to write view code (JSP, for example) which is not tied tightly to the underlyi

Re: Why do we need the set/push tag?

2011-01-06 Thread maven apache
2011/1/6 Aaron Brown > Generally speaking, when you use a struts tag and you do NOT specify > an object, the tag will default to using the object at the top of the > stack. > The push tag lets you force a specific object to be at the top > of the stack, Well,is it the action's **responsibili

Re: Why do we need the set/push tag?

2011-01-06 Thread Aaron Brown
Generally speaking, when you use a struts tag and you do NOT specify an object, the tag will default to using the object at the top of the stack. The push tag lets you force a specific object to be at the top of the stack, so you can write generic, reusable jsp code (like fragments, etc.) that does

RE: JSON Property

2011-01-06 Thread Jim Talbut
Ah, sort of. Actually WW-3554 stopped me working that one out :) Now I've moved the JsonPlugin.tld to my own WEB-INF I can make it work, but not using the syntax you used. If I have: <%...@taglib prefix="json" uri="/struts-json-tags" %> <%...@taglib prefix="c" uri="http://java.sun.com/jstl/core"

Re: Struts 2 - problem updating page

2011-01-06 Thread Alex Rodriguez Lopez
Not completely sure, but doesn't this one: http://struts.apache.org/2.x/docs/token-session-interceptor.html handle this situation? developer researcher, 06-01-2011 01:55: Hello, I have the following problem: after submit a form, if it refresh (F5) the page the form is submitted ag

Re: Struts 2 - problem updating page

2011-01-06 Thread M. Rakowski
Another approach would be to store a request-id in the form and session and compare this values. On Browser navigation, e.g. reload, browser would sent an old request-id. To be sure you have to combine the two techniques (Post/Redirect + Request-id). -

Re: Why do we need the set/push tag?

2011-01-06 Thread Dave Newton
Because you may have code that expects something else on the value stack, like a JSP fragment or something. Dave On Jan 6, 2011 5:55 AM, "maven apache" wrote: > Hi > I am learning the struts tag,however I can't understand why we need the > set/push/bean tag? > In my opinion,the views like jsp ju

Re: Struts 2 - multi select

2011-01-06 Thread Dave Newton
It's all html; if one of the S2 tags doesnt do what you want, your options are the same as any other web app. Dave On Jan 6, 2011 3:42 AM, "Stefaan Somers" wrote: > I want to have a select-list where I can choose multiple values. If I use > checkboxes, the pages becomes too big because the list

Why do we need the set/push tag?

2011-01-06 Thread maven apache
Hi I am learning the struts tag,however I can't understand why we need the set/push/bean tag? In my opinion,the views like jsp just need to pull data from the Actioncontext and render them. What's the advantage of pushing new data to context? I am using my phone to ask this question,so I can't expr

Struts 2 - multi select

2011-01-06 Thread Stefaan Somers
I want to have a select-list where I can choose multiple values. If I use checkboxes, the pages becomes too big because the list contains about 2000 entries. The best thing is something describe like on this web-site : http://www.preeostudios.com/jqueryplugins/listselect What are the core solution