Adding Calldecorator to AjaxPagingLink?

2007-10-28 Thread Ayodeji Aladejebi
i cant seem to find a way around this, any tip will be appreciated

Re: Clearing Session

2007-10-28 Thread Suad AlShamsi
You are right. I should not have remove the page from the constructor. I place *getPageMap().remove(this);* after the setResponsePage in all the pages. What is happening is From Page 1 to Page 2 when using the back button the page expired From Page 2 to Page 3 when using the back button the

[Newbie][1.3 beta] StackOverflowError on LogFactory.getContextClassLoader

2007-10-28 Thread Piller Sébastien
Hello everybody, I'm a new user of Wicket, and I got to make the HelloWorldApplication works with Wicket 1.2.6 . I tried to do the same with wicket 1.3 beta, but it throw a StackOverflowError: java.lang.StackOverflowError at java.lang.reflect.Method.copy(Unknown Source) at

Re: Load Image from another server

2007-10-28 Thread BatiB80
Thanks for the answer. But is there no already existing class in the framework which is doing it? Do I have to implement this by myselve??? Regards, Sebastian -- View this message in context: http://www.nabble.com/Load-Image-from-another-server-tf4695833.html#a13452769 Sent from the Wicket -

Add String which contains HTML markups

2007-10-28 Thread BatiB80
[EMAIL PROTECTED], I want to add some string to a HTML page which already contains some HTML markups. For example: add(new Label(component_id, some textwhich contains makups)); If I add the HTML Markups will be shown instead of interpreted. Does anybody knows what to do??? Thanks in

Re: Load Image from another server

2007-10-28 Thread BatiB80
Thanks for your help, it works. I added a new class which implements WebResouce. The overridden method getResourceStream() simply returns a new UrlResourceStream(aUrl); Thanks, Sebastian -- View this message in context:

Re: Add String which contains HTML markups

2007-10-28 Thread Thijs
BatiB80 wrote: [EMAIL PROTECTED], I want to add some string to a HTML page which already contains some HTML markups. For example: add(new Label(component_id, some textwhich contains makups)); If I add the HTML Markups will be shown instead of interpreted. Does anybody knows what to do???

Re: Add String which contains HTML markups

2007-10-28 Thread BatiB80
such simple... :-D Thank you very much!!! -- View this message in context: http://www.nabble.com/Add-String-which-contains-HTML-markups-tf4706791.html#a13453417 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: [Newbie][1.3 beta] StackOverflowError on LogFactory.getContextClassLoader

2007-10-28 Thread Pills
I found a way I've just copied all *.jar from /lib in wicket-examples-1.3.0-beta4.war to myapp/WEB-INF/lib, ant that works fine ;) I still don't know exactly which jar are required by Wicket, but now it works ;) -- View this message in context:

offtopic: does anyone works with wicket and db4o

2007-10-28 Thread Fernando Wermus
Does anyone use wicket with db4o? If so, I have some strange behavior working with db4o and I suppose that it is related to wicket maybe. I would like to ask in private how there were configured. -- Fernando Wermus.

Re: recommend a CMS to integrate w/our wicket-based webapp?

2007-10-28 Thread Eelco Hillenius
We're developing our (social networking ;- ) site using wicket talking to our Spring-managed services layer. We're going to need to provide content management features for our internal users (admins, moderators, marketers) and I'm exploring possible solutions. I realize we can build our own

Re: add multiple images

2007-10-28 Thread BatiB80
Thanks, I implemented some DataView with a ListDataProvider and it works. I not really get the information from a database. I make some webservice call and render the response! Thanks! Sebastian -- View this message in context:

Re: Adding Calldecorator to AjaxPagingLink?

2007-10-28 Thread Igor Vaynberg
override getajaxcalldecorator()? -igor On 10/27/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: i cant seem to find a way around this, any tip will be appreciated - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Changing IDEs to eclipse

2007-10-28 Thread Ballist1c
Thanks for the heads up guys, I have made progress, The source files and main project are finally compiling now without any errors :D The project has been loaded as a 'Dynamic Web Project'... embarassing as it is... it took me a while to figure that out ... However, i cant figure out how to

handling static content

2007-10-28 Thread Brill Pappin
I'm attempting to have wicket run from the base directory filter mapping is /*. The trouble is that I have a lot of static content I don't want in the classpath. i.e. I want it in the normal place content is located, in src/main/webapp. I've managed to modify the Path stripper example so that I

conditionally including a div

2007-10-28 Thread Brill Pappin
I'm porting an app written in Ruby on Rails as a spike on how Wicket works. I've run into an issue I'm not sure how to handle. I have the case of a message box near the top of the screen that's in a conditional block... here is the ruby code to demonstrate: % if @flash[:notice] % div

Re: handling static content

2007-10-28 Thread Eelco Hillenius
On 10/28/07, Brill Pappin [EMAIL PROTECTED] wrote: I'm attempting to have wicket run from the base directory filter mapping is /*. The trouble is that I have a lot of static content I don't want in the classpath. i.e. I want it in the normal place content is located, in src/main/webapp. Just

Re: conditionally including a div

2007-10-28 Thread Eelco Hillenius
On 10/28/07, Brill Pappin [EMAIL PROTECTED] wrote: I'm porting an app written in Ruby on Rails as a spike on how Wicket works. I've run into an issue I'm not sure how to handle. I have the case of a message box near the top of the screen that's in a conditional block... here is the ruby code

change the div attributes only, not the content?

2007-10-28 Thread Brill Pappin
How can I change *only* the div attributes (like style class) without changing the contents of the div? in this example: div class=aaa wicket:id=outter div wicket:id=innerthis should remain/div /div I want to change the css class from aaa to bbb, but not replace the inner html. - Brill

Re: change the div attributes only, not the content?

2007-10-28 Thread Igor Vaynberg
override oncomponenttag and use the passed in Tag object to modify attributes map -igor On 10/28/07, Brill Pappin [EMAIL PROTECTED] wrote: How can I change *only* the div attributes (like style class) without changing the contents of the div? in this example: div class=aaa wicket:id=outter

Re: change the div attributes only, not the content?

2007-10-28 Thread Eelco Hillenius
On 10/28/07, Brill Pappin [EMAIL PROTECTED] wrote: How can I change *only* the div attributes (like style class) without changing the contents of the div? in this example: div class=aaa wicket:id=outter div wicket:id=innerthis should remain/div /div I want to change the css class from

Re: Adding Calldecorator to AjaxPagingLink?

2007-10-28 Thread Ayodeji Aladejebi
yeah looking at the source, i know wat to do thanks :) On 10/28/07, Igor Vaynberg [EMAIL PROTECTED] wrote: ajaxpagingnavigator has newPagingNavigationLink() that you can override and return a link with your call decorator. its all there in the source. if we make everything trivially pluggable