Stateless Login Form possible?

2010-08-20 Thread bht
Hi, I had a stateless login form that did actually not expire ... until I added an image as submit button. Sorry to raise this topic again, but AFAIK this has not been answered yet: ImageButton - always stateful ?

Re: Stateless Login Form possible?

2010-08-20 Thread Johan Compagner
an image button can be stateless: protected boolean getStatelessHint() { return getImageResource() == null localizedImageResource.isStateless(); } but that must be true. On Fri, Aug 20, 2010 at 13:19, b...@actrix.gen.nz wrote: Hi, I had a stateless

Re: Stateless Login Form possible?

2010-08-20 Thread bht
Hi Johan, Thanks. How is it possible that this is true with any ImageButton constructor: (getImageResource() == null localizedImageResource.isStateless()) On Fri, 20 Aug 2010 13:25:11 +0200, you wrote: an image button can be stateless: protected boolean getStatelessHint() {