Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-08-08 Thread Andrew Moore
about to do what you have just done with freemarker. Andrew Moore wrote: > > Thanks again igor (you always seem to be able to fix any problems I'm > having getting to grasps with wicket) > I've now got a basic IResponseFilter running that will stick data into > freemarker

Re: [Wicket-user] ERROR org.apache.wicket.RequestCycle - the requested resource was not found

2007-05-18 Thread Andrew Moore
Thanks for the suggestion, but I'm still getting the same error. Johan Karlberg wrote: > > Please use > http://wicketstuff.org/maven/repository/org/apache/wicket/wicket/1.3.0-incubating-SNAPSHOT/ > > Note the extra .0 on the version. > > Johan > > Andrew Mo

[Wicket-user] ERROR org.apache.wicket.RequestCycle - the requested resource was not found

2007-05-17 Thread Andrew Moore
I've just upgraded from one of the older 1.3 versions to the one here: http://wicketstuff.org/maven/repository/org/apache/wicket/wicket/1.3-incubating-SNAPSHOT/ The only real change I seemed to have to make to get the build to work was add the org.apache to the import statements. My application

Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-25 Thread Andrew Moore
All the examples I could find, just use data directly available from the FilterClass (like system time). Thanks again, Andrew igor.vaynberg wrote: > > see IResponseFilter, install your own and you are good to go. > > -igor > > > On 4/24/07, Andrew Moore <[EMAIL P

Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-24 Thread Andrew Moore
I've had a go with the freemarker panel, and can get a simple example going. The thing is, instead of having a panel with a span tag, I'd like to actually parse the whole .html template file that gets generated by wicket. Does anyone know if it's possible to do that? Is there a way of getting at

Re: [Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-24 Thread Andrew Moore
g/WICKET/newuserguide.html, > http://cwiki.apache.org/WICKET/listview-and-other-repeaters.html and > http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html. > > Regards, > Erik > > > Andrew Moore wrote: >> Hi, >> I'm currently writing a CMS

[Wicket-user] Replace non-wicket attributed sections of a html document

2007-04-24 Thread Andrew Moore
Hi, I'm currently writing a CMS in wicket. One of the things I'm wanting to do is make it nice and flexible to be able to design new templates for rendering the page. I'm looking at producing an image gallery at the moment. For the moment I'm using dummy.jpg or something similar in the html fi

Re: [Wicket-user] wicket-contrib-tinymce-examples download

2007-04-17 Thread Andrew Moore
> -igor > > > On 4/16/07, Andrew Moore <[EMAIL PROTECTED]> wrote: >> >> >> I've downloaded wicket tinymce from sourceforge, but cannot find anywhere >> that the download of the examples is available. The wicket stuff wiki >> points >>

[Wicket-user] wicket-contrib-tinymce-examples download

2007-04-16 Thread Andrew Moore
I've downloaded wicket tinymce from sourceforge, but cannot find anywhere that the download of the examples is available. The wicket stuff wiki points at a view of cvs, but it doesn't I just get a page not found error. (I also can't connect using cvs to check it out as described at the page here h

Re: [Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-04-12 Thread Andrew Moore
Just an update, if I change the line in the html to then it works ok. The extra details I think were put in there by dreamweaver by the designed. All I had done it added the wicket:id attribute. Andrew Moore wrote: > > Hi, > I seem to be getting a javascript error whenever I try to

[Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-04-12 Thread Andrew Moore
Hi, I seem to be getting a javascript error whenever I try to click on a submitLink. For example: The html markup I'm using is: add more text label Adding the component to the page is done via: Form form = new Form("homepageForm", new CompoundPropertyModel(homePageVO));

Re: [Wicket-user] ClassCastException when using SignInSession

2007-04-11 Thread Andrew Moore
gt; > at uk.co.rageconsulting.thepencilroom.web.page.Home.(Home.java:47) > > -igor > > On 4/10/07, Andrew Moore <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> Yes, sign in session is just a copy from the example project extending >> WebSession. >> Cheers &

Re: [Wicket-user] ClassCastException when using SignInSession

2007-04-10 Thread Andrew Moore
Hi, Yes, sign in session is just a copy from the example project extending WebSession. Cheers Andrew Andrew Moore wrote: > > I've been using wicket 1.2.5 for a while with a sign in page based upon > the wicket-examples signin (with cookies) example. > > I've now move

[Wicket-user] ClassCastException when using SignInSession

2007-04-10 Thread Andrew Moore
I've been using wicket 1.2.5 for a while with a sign in page based upon the wicket-examples signin (with cookies) example. I've now moved to 1.3 as I didn't want to cache some markup pages. I'm using the latest wicket file from here http://wicketstuff.org/maven/repository/org/apache/wicket/wicke

Re: [Wicket-user] Getting at the http request parameters from inside newMarkupResourceStream

2007-04-05 Thread Andrew Moore
izer on the URL from the request (which does return a value) and get my parameter from there. Andrew Moore wrote: > > Hi, > I'm using wicket 1.2.5. > I'm using newMarkupResourceStream to get dynamic html pages from an > external location. > > In the construct

[Wicket-user] Getting at the http request parameters from inside newMarkupResourceStream

2007-04-05 Thread Andrew Moore
Hi, I'm using wicket 1.2.5. I'm using newMarkupResourceStream to get dynamic html pages from an external location. In the constructor of the page I'm using (final PageParameters parameters) to get at the parameters of the website. >From here I can get a page parameter with parameters.getString("w

[Wicket-user] Adding code to moveUpLink, moveDownLink and removeLink on ListView

2007-04-03 Thread Andrew Moore
Hi, I've got a listView which I'm using moveUpLink, moveDownLink and removeLink on. Is there any way to be able to add my own code to run when these links are clicked. So for example, I'm wanting to store an Order_Id on a database which I would like to get updated when the moveUp / moveDown link

[Wicket-user] Newbie can't get the DropDownChoice right

2007-03-30 Thread Andrew Moore
I've got a simple option class (as i've seen in examples) public class Option { String key; String value; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public St