Re: [Wicket-user] value not getting set to the model when AjaxFormComponentUpdatingBehavior used.

2006-08-21 Thread Dipu
Hi Matej,   Thanks very much, it did help.   I took the form declaratin out of the table and it worked.   If i wrap the form declaration inside a cell, i get the follwoing parser error. ' (line 41, column 20) has a mismatched close tag at '' (line 41, column 102)   Regards Dipu   - Origin

Re: [Wicket-user] value not getting set to the model when AjaxFormComponentUpdatingBehavior used.

2006-08-21 Thread Frank Bille
Can you paste the entire markup? - FrankOn 8/21/06, Dipu <[EMAIL PROTECTED] > wrote: Hi Matej,   Thanks very much, it did help.   I took the form declaratin out of the table and it worked.   If i wrap the form declaration inside a cell, i get the follwoing parser error. ' (line 41, column 2

Re: [Wicket-user] value not getting set to the model whenAjaxFormComponentUpdatingBehavior used.

2006-08-21 Thread Dipu
 here we go ..   Status All Live Not Live Supplier Supplier 1 Supplier 2 Rank All 1-9 Geo Search Choice location position location/position Panel Search Choice All Name Address Search Text Number of results Per Page 25 50

[Wicket-user] A weird problem with Links

2006-08-21 Thread sathya81
Hi, I have been practising few sample examples on Wicket Framework, well i got a strange problem with links, donttags work in wicket,?? I created an index.html page and a home.html page, the index page on submit is directed to home.html page. now in the home page i provided a normal html ind

[Wicket-user] Wicket way of doing (inter-)component updates?

2006-08-21 Thread Jan Willem Janssen
Hi, I'm, in general, wondering what the "Wicket way" of inter-component communication would be. Or even, if there is such a way of doing this. For example, I've got a Tree, which should update a List according to a clicked tree-node (viz. a simple webmail app). The click event of the tree node

Re: [Wicket-user] creating a javascript "prompt" component

2006-08-21 Thread Martijn Dashorst
Probably the simplest way to go is to create a panel with a hidden field, or a textfield with style='display:none', and a label. the rest is left your javascript guru-ness. text comes here Martijn On 8/20/06, Hugo Visser <[EMAIL PROTECTED]> wrote: > Hi, > > I'm toying around with wicket some

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Martijn Dashorst
However, if you take a closer look at the markup, and the markup that gets generated, you can clearly see the problem for a listview: In the server side markup: some value In the client side markup: foo bar foobar What you typically want to do is to redraw the complete part, because most br

Re: [Wicket-user] dynamic number of columns

2006-08-21 Thread Scott Swank
Excellent, I'll give that go when I get home this evening.  Thanks again.On 8/20/06, Igor Vaynberg <[EMAIL PROTECTED] > wrote:try RepeatingView in extensions. -IgorOn 8/20/06, Scott Swank < [EMAIL PROTECTED]> wrote: Thank you.  Is there any sort of tag that could fill the roll of a tag to define

Re: [Wicket-user] A weird problem with Links

2006-08-21 Thread Igor Vaynberg
i didnt understand any of it - mind pasting some code/makrup?-IgorOn 8/21/06, sathya81 < [EMAIL PROTECTED]> wrote:Hi,I have been practising few sample examples on Wicket Framework, well i got a strange problem with links, donttags work in wicket,?? I created anindex.html page and a home.html pa

Re: [Wicket-user] Wicket way of doing (inter-)component updates?

2006-08-21 Thread Igor Vaynberg
usually what i do is make listeners on the page level/panel level (whatever your encapsulaion unit is) that various components trigger.for examplePage.onUserSelected(User user) {}then whatever is in charge of selecting users raises this event. if it is encapsulated on the level of the panel i somet

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Igor Vaynberg
if you search the list you will see a ton of messages that explain this, thats why i didnt bother doing it here for the hundredth time :)-IgorOn 8/20/06, Roman Mandeleil <[EMAIL PROTECTED]> wrote: Ok, thanks, now it works fine, but do you have some good explanation to thatbehaviourit is not intuit

Re: [Wicket-user] Wicket way of doing (inter-)component updates?

2006-08-21 Thread Eelco Hillenius
Basically you have the choice between either: 1) using observers/ event listeners for notification much like you would probably do with swing; 2) use a hierarchal model that is shared between components so that any change in that model is automatically cascaded. 1) is probably more work and has th

Re: [Wicket-user] how to display login page after logout?

2006-08-21 Thread Johan Compagner
good to know that it is solved. But that is what i already said beforethis should work to public LogoutPage(PageParameters parameters) {        setRedirect(true);        getSession().invalidate();        setResponsePage( LoginPage.class);    }because this should also cause just a redirect to a book

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Gwyn Evans
Now added to the Wiki's ListView page - http://www.wicket-wiki.org.uk/wiki/index.php/ListView#FAQ /Gwyn On 21/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > if you search the list you will see a ton of messages that explain this, > thats why i didnt bother doing it here for the hundredth time

Re: [Wicket-user] How to set the src attribute for a AjaxSubmitButton of type "image" ?

2006-08-21 Thread Eelco Hillenius
As far as I can see, AjaxSubmitButton should work like any other and doesn't do anything particular with the src attribute of the attached tag. What exactly went wrong and what does your code look like? Eelco On 8/19/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > Hello, > > Can someone tel

Re: [Wicket-user] Wicket way of doing (inter-)component updates?

2006-08-21 Thread Andre Matheus
Could you please explain better the option 2? If do you have an example it could be useful. Thanks. ___ André Matheus On 8/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Basically you have the choice between either: > 1) using observers/ event listeners for notification much like you > woul