Re: Form in a Wizard is not showing state of the Model

2010-07-18 Thread Igor Vaynberg
probably because you had instead of -igor On Sun, Jul 18, 2010 at 9:46 PM, drf wrote: > > Thanks a lot. You are right that I did not need the Form, but it turned out > the problem was something else: > - I was using a TextArea instead of TextField, which did work. > Now I need to understand wh

Re: production quality wicket applications running on GAE

2010-07-18 Thread Ernesto Reinaldo Barreiro
Richard, Thank you very much for your comments! Based on your experiences and on several other post on this list, reporting different issues regarding Wicket and GAE, I'm not sure I'll will use GAE for my project: I have little time to work on it and I do not want to spend the bulk of it solving i

Re: Form in a Wizard is not showing state of the Model

2010-07-18 Thread drf
Thanks a lot. You are right that I did not need the Form, but it turned out the problem was something else: - I was using a TextArea instead of TextField, which did work. Now I need to understand why a TextArea did not display the data. -- View this message in context: http://apache-wicket.1842

Re: Sorting and ListView

2010-07-18 Thread always_rick
lenzenc wrote: > > > This issue isn't about how to sort, this issue is at what point do you > grab > the translated name. > > Did you solve this problem? I am having same problem. I totally agree with, "it isn't about how to sort, ...". I am new in wicket. Any sample code will be appreciat

Re: Maven archetype and tomcat:run

2010-07-18 Thread Martin Grigorov
Remove servlet.jar from yourApplication.war#WEB-INF/lib/ folder 2010/7/18 Mansour Al Akeel > Hello all: > I am trying to run tomcat from maven and including openEJB. The > command I am using to run tomcat: > > mvn tomcat:run > > The error I am getting : > > Jul 18, 2010 6:53:29 AM org.apache.ca

Re: getPage() and getParentPage() returns null

2010-07-18 Thread robert.mcguinness
FYI in version 1.4.10 the API gets more clean: http://apache-wicket.1842946.n4.nabble.com/new-feature-in-trunk-and-branch-Component-onInitialize-td2286924.html#a2286924 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/getPage-and-getParentPage-returns-null-tp2293003p2

Re: getPage() and getParentPage() returns null

2010-07-18 Thread zoran
Robert, This works :) I just removed initialization of the components from the constructor and it works now. Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/getPage-and-getParentPage-returns-null-tp2293003p2293379.html Sent from the Wicket - User mailing li

Re: getPage() and getParentPage() returns null

2010-07-18 Thread zoran
Hi Robert, I tried this, but this doesn't work or I didn't get idea. If I add this then I got exception saying that component with that id already exists. I've attached the whole code, but the hierarchy of pages that makes a problem are like this: PLKMBasePage PLKMBasePanel Pre

Re: action on an old versioned page

2010-07-18 Thread Vlad Oleniuk
Thanks, I saw this reference, but the problem is a bit other. As I said my page (version 1) is up-to-date, it shows correct info (therefore it doesn't need to be refreshed), but wicket doesn't create new version of the page. So, if we abstract from the environment niceties the problem sounds lik

Re: action on an old versioned page

2010-07-18 Thread robert.mcguinness
i think this is what you are experiencing: http://www.richardnichols.net/2010/03/apache-wicket-force-page-reload-to-fix-ajax-back/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/action-on-an-old-versioned-page-tp2293075p2293308.html Sent from the Wicket - User maili

Re: getPage() and getParentPage() returns null

2010-07-18 Thread robert.mcguinness
i need to see more code but try constructing your panels like: @Override protected void onBeforeRender() { if (!hasBeenRendered()) { // call some function that builds/add components here } super.onBeforeRend

Re: action on an old versioned page

2010-07-18 Thread Vlad Oleniuk
Thanks for the answer, yes, I understand it, but in my case it does, it creates new version. Action on the page version 1 after returning to it from version 2 causes to replacing one panel with the other one, and the interesting thing, that debuging shows it works as it should, but, nevertheless

Re: action on an old versioned page

2010-07-18 Thread Igor Vaynberg
not all actions on the page create new versions -igor On Sun, Jul 18, 2010 at 6:35 AM, Vlad Oleniuk wrote: > > Hello all, > > I have the problem with new page version creating from the older version of > the same page. > > So, there is a page with id==x. Versions 0, 1 and 2 are sequentially > cr

Re: I can't subscribe to this list

2010-07-18 Thread zoran
I've subscribed with two different emails in a last two months and never received an email from other users. What I receive is a Nabble email information "Post to mailing list still pending" when I post a new topic to this forum, and I'm receiving this email until I delete the topic. However, till

Re: I can't subscribe to this list

2010-07-18 Thread Martin Makundi
Seems to work fine? ** Martin 2010/7/18 Zoran Jeremic : > I have tried to subscribe to wicket-user list, but after I confirm in > "confirm subscribe to users-al...@wicket.apache.org" email, I don't get any > confirmation. My settings show that I'm not subsribed, and I can't post to > mailing list

I can't subscribe to this list

2010-07-18 Thread Zoran Jeremic
I have tried to subscribe to wicket-user list, but after I confirm in "confirm subscribe to users-al...@wicket.apache.org" email, I don't get any confirmation. My settings show that I'm not subsribed, and I can't post to mailing list neither I receive email from other users. I have tried with two d

action on an old versioned page

2010-07-18 Thread Vlad Oleniuk
Hello all, I have the problem with new page version creating from the older version of the same page. So, there is a page with id==x. Versions 0, 1 and 2 are sequentially created. After (being on the page with version==2) browser back button is pressed (go to the version 1) and is tried to perfo