Re: Question about Unit Testing with custom Session

2011-02-08 Thread Dmitriy Neretin
Hi, my complete setUp looks like this: @Before public void setUp() { MworldWicketApplication wicketWebApp = new MworldWicketApplication() { ApplicationContext ctx = new XmlWebApplicationContext(); @Override public void init() {

Re: [wicket 1.5] Ajax recovery script

2011-02-08 Thread nino martinez wael
Ahh good idea and also a bit concrete :) 2011/2/7 Pedro Santos pedros...@gmail.com It possible to test if there in an AJAX activity by testing the Wicket.Channel busy property. Those channels can be iterated on Wicket.channelManager.channels If I got it right, than an JavaScript function

Re: Does anyone have example code using wicketstuff-dojo-api?

2011-02-08 Thread Martin Grigorov
Hi Mike, The only example application I know is at http://www.molindo.at/files/wicketstuff-dojo-1.1-test.tar.gz It is linked at http://wicketstuff.org/confluence/display/STUFFWIKI/wicketstuff-dojo-1.1 On Tue, Feb 8, 2011 at 4:37 AM, Michael O'Cleirigh michael.ocleir...@rivulet.ca wrote:

Re: FOSDEM 2011 presentation online

2011-02-08 Thread Ian Marshall
Informative slides, excellent web application development framework, looking forward to Apache Wicket version 1.5. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/FOSDEM-2011-presentation-online-tp3264941p3275633.html Sent from the Users forum mailing list archive at

Re: [1.5 MIGRATION] - Where did StringHeaderContributor / TextTemplateHeaderContributor go?

2011-02-08 Thread Daniel Soneira
I didn't have a problem with converting my existing class (extending TextTemplateHeaderContributor). As I said, that's quite easy. My reasons for posting to the list were to: - a) note, that the Wiki does not mention that those classes are gone / how to substitute them. - b) question why

Re: PageExpiredException since version 1.4.13

2011-02-08 Thread Daniel Soneira
Is it maybe possible to give the developer / user some clues (better / different error message) in such a situation? I'm trying to understand how there can be 5 pageMaps if the application just started and only 1 page is displayed (no other action taken at that point in time). Can someone

Re: Best practices in model classes definitions

2011-02-08 Thread Daniel Soneira
Hey Robson, CompoundPropertyModel: I'm not really using it, but it is definitely the case that you assign such a CompoundPropertyModel to a container (a form, for instance). It is relevant for all the containers child components then. Inner Model classes: I do that all of the time. Most

Re: PageExpiredException since version 1.4.13

2011-02-08 Thread Pedro Santos
Hi Daniel, good idea, we can add some log messages exposing the page map creation and how close it is from its max limit. I think your new problem of have multiple page maps without user click on the popup link is related to WICKET-3109 https://issues.apache.org/jira/browse/WICKET-3109

RE: FOSDEM 2011 presentation online

2011-02-08 Thread Ames, Tim
Thanks for sharing. The audio of the presentation would have been a plus, unless the audio was there and I missed it somehow :) -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Monday, February 07, 2011 2:50 PM To: users@wicket.apache.org Subject:

Re: FOSDEM 2011 presentation online

2011-02-08 Thread Martijn Dashorst
On Tue, Feb 8, 2011 at 2:40 PM, Ames, Tim tim.a...@promedica.org wrote: Thanks for sharing.  The audio of the presentation would have been a plus, unless the audio was there and I missed it somehow :) There's no audio. FOSDEM will however publish a recorded video with audio when they've

partial Updating dataview with ajax

2011-02-08 Thread LePirlouit Benoît
Hi All, I'm currently using an AbstractAjaxTimerBehavior witch refresh onTimer the dataview I want to append some components to my dataview . drax them on the page without refreshing all the others components that are allready on the page. eg in a realtime chat. you have

Re: Best practices in model classes definitions

2011-02-08 Thread Robson Paniago de Miranda
Hi Daniel, Thanks for your responses - I think I did the right things then.. Att, Robson 2011/2/8 Daniel Soneira daniel.sone...@joyn-it.at Hey Robson, CompoundPropertyModel: I'm not really using it, but it is definitely the case that you assign such a CompoundPropertyModel to a

Re: FOSDEM 2011 presentation online

2011-02-08 Thread MZemeck
Can you link the mailing list to it when its posted? I'm very interested in seeing it, especially after the positive remarks on this list... From: Martijn Dashorst martijn.dasho...@gmail.com To: users@wicket.apache.org Date: 02/08/2011 09:15 AM Subject:Re: FOSDEM 2011

Re: Question about Unit Testing with custom Session

2011-02-08 Thread Igor Vaynberg
did you call context.refresh() ? like the error message said? -igor On Tue, Feb 8, 2011 at 1:31 AM, Dmitriy Neretin dmitriy.nere...@googlemail.com wrote: Hi, my complete setUp looks like this: @Before    public void setUp() {        MworldWicketApplication wicketWebApp = new

Re: partial Updating dataview with ajax

2011-02-08 Thread Igor Vaynberg
http://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ -igor 2011/2/8 LePirlouit Benoît lepirlo...@hotmail.com: Hi All, I'm currently using an AbstractAjaxTimerBehavior witch refresh onTimer the dataview I want to append some components to

Issue with error validation and onChange event of a dropdown

2011-02-08 Thread Brown, Berlin [GCG-PFS]
In the example below. StepOne: user enters INVALID DATA StepTwo: user hits the SAVE LINK (see below) StepThree: error is displayed in feedback panel StepFour: user enters to select drop down, onchange StepFiveERROR :: the code below should update the model, see Line12 But when the panel is

Best Wicket security practice

2011-02-08 Thread sakthi vel
Hello All, There are few security things in wicket like SWARM, Spring security with wicket and so on. Could anyone tell the best security practice in wicket and any possible links would be great.

conditional css

2011-02-08 Thread fachhoch
how can I use condtional css something like !-- IE6 fix for the close png image -- !--[if lt IE 7] link type='text/css' href='css/basic_ie.css' rel='stylesheet' media='screen' / ![endif]-- -- View this message in context:

Re: conditional css

2011-02-08 Thread Pedro Santos
I guess conditional tags are fine: !--[if lt IE 7 ]link type='text/css' href='css/basic_ie6.css' rel='stylesheet' media='screen' / ![endif]-- !--[if IE 7 ]link type='text/css' href='css/basic_ie7.css' rel='stylesheet' media='screen' /![endif]-- !--[if IE 8 ] link type='text/css'

Re: conditional css

2011-02-08 Thread mbrictson
You might find this useful http://opensource.55minutes.com/apidocs/fiftyfive-wicket/2.0.3/fiftyfive/wicket/css/InternetExplorerCss.html Source: http://opensource.55minutes.com/svn/java/tags/releases/fiftyfive-wicket-2.0.3/src/main/java/fiftyfive/wicket/css/InternetExplorerCss.java Wicket 1.5

Re: conditional css

2011-02-08 Thread shetc
see http://apache-wicket.1842946.n4.nabble.com/If-IE-comments-td1892057.html#a1892058 http://apache-wicket.1842946.n4.nabble.com/If-IE-comments-td1892057.html#a1892058 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/conditional-css-tp3276786p3287656.html Sent from