repeated PageExpired error

2011-11-25 Thread nazeem
I am upgrading my application to wicket 1.5 from 1.4, the server starts up well and then when i hit the url my home page, sign in page is called and i can see its getting rendered. But goes back to Page Expired error page. This happens repeatedly. Hence I am not able to proceed with the migration.

Re: WebResource in Wicket 1.5

2011-11-25 Thread vineet semwal
hi use bytearrayresource On Fri, Nov 25, 2011 at 7:49 AM, nazeem md.naz...@gmail.com wrote: I have a open flash chart implementation following the link below. https://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html But when i upgrade to wicket 1.5 im stuck at this.. In class

Re: Forms marked as multipart do not work with ajax and IE9

2011-11-25 Thread Martin Grigorov
On Thu, Nov 24, 2011 at 7:24 PM, Stijn Maller stijn.mal...@gmail.com wrote: Sorry to come back to this old issue, but we are struggling with it too and unfortunately the solutions mentioned do not seem to work for us. Our app already specified the doctype for html 4, and I also tried the html 5

Re: repeated PageExpired error

2011-11-25 Thread Martin Grigorov
Hi, It is not clear what exactly happens. If you can reproduce it with a quickstart application then attach it to a ticket in Jira. On Fri, Nov 25, 2011 at 10:02 AM, nazeem md.naz...@gmail.com wrote: I am upgrading my application to wicket 1.5 from 1.4, the server starts up well and then when

Re: WiQuery vs JQWicket

2011-11-25 Thread Brian Mulholland
I hadn't. I'm a wicket neophyte, so I am often not aware of what is available. I've been poking around on the internet...is there somewhere where this inmethod grid is demoed? I see the inmethod website is not a mobile video streaming site, and I saw a couple static photos of it, but I haven't

Re: WiQuery vs JQWicket

2011-11-25 Thread Brian Mulholland
Nevermind, found it at wicketstuff: (http://wicketstuff.org/grid-examples for future seekers). But the demo doesn't have source nearby like other wicketstuff demos. Does inmethod grid support remote sorting, or is that sorting I see local? In a paged grid, sorting really has to be remote.

Re: WiQuery vs JQWicket

2011-11-25 Thread Brian Mulholland
Another question. It looks to me like this grid doesn't set any ARIA stuff. I don't suppose that it is WCAG2 AA comformant, is it? Brian Mulholland On Fri, Nov 25, 2011 at 9:47 AM, Brian Mulholland blmulholl...@gmail.com wrote: Nevermind, found it at wicketstuff:

Re: WiQuery vs JQWicket

2011-11-25 Thread Martin Grigorov
Inmethod-grid's code is at https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/inmethod-grid-parent AFAIK it doesn't have ARIA support. You can add it and make a Pull Request ;-) On Fri, Nov 25, 2011 at 5:32 PM, Brian Mulholland blmulholl...@gmail.com wrote: Another question.  It

Re: AW: Dynamically choosing component to add

2011-11-25 Thread Fabiosakiyam
Hi Bertrand, I have almost the same problem you do (i think, im still a newbie). I'm trying to create a component that creates one specific container, depending on it's type. So i'd like to add only this container. I'm having problem at the .html, since i don't know if i should declare all

Dynamic component?

2011-11-25 Thread Fabiosakiyam
Hello, Sorry if this is already solved, but i couldn't find it, 'cause i don't really know what is the name of this, that's why the subject is weird. Ok so, im creating a new component (extends panel), and his .java is something like this: class Component { getType().buildContainer(); } It

Re: Dynamic component?

2011-11-25 Thread Jeremy Thomerson
On Fri, Nov 25, 2011 at 8:20 AM, Fabiosakiyam fabiosakiy...@gmail.comwrote: Hello, Sorry if this is already solved, but i couldn't find it, 'cause i don't really know what is the name of this, that's why the subject is weird. Ok so, im creating a new component (extends panel), and his .java

Re: Dynamic component?

2011-11-25 Thread James Carman
Just use one div and always use the same id (container for example). On Nov 25, 2011 5:26 PM, Fabiosakiyam fabiosakiy...@gmail.com wrote: Hello, Sorry if this is already solved, but i couldn't find it, 'cause i don't really know what is the name of this, that's why the subject is weird. Ok

Re: Dynamically choosing component to add

2011-11-25 Thread James Carman
What exactly are you trying to do? Different view elements based on the state of your model or its type. On Oct 31, 2011 9:50 AM, Bertrand Guay-Paquet ber...@step.polymtl.ca wrote: Hi, Was is the proper way to choose which panel to add to a page based on a model's object value? Currently, I

Re: AW: Dynamically choosing component to add

2011-11-25 Thread Jeremy Thomerson
On Fri, Nov 25, 2011 at 1:26 PM, Fabiosakiyam fabiosakiy...@gmail.comwrote: Hi Bertrand, I have almost the same problem you do (i think, im still a newbie). I'm trying to create a component that creates one specific container, depending on it's type. So i'd like to add only this container.