[Wicket-user] reference from deeply nested links

2007-07-01 Thread Pieter Cogghe
Hi, I've got a bunch of links deeply nested in some listViews, panels, ... . These links should set the ModelObject of a form that resides at top level. Something like this: id=SectionPanel > some-listview > some-panel > another-listview -> yet-another -> link to edit some content (these classes

[Wicket-user] suggestion: have Wicket SVN searchable with FishEye

2007-07-01 Thread Peter Thomas
Hi, Refer http://fisheye.cenqua.com/ - can Wicket SVN be made available through FishEye? This would really help in searching through the source code. Thanks, Peter. - This SF.net email is sponsored by DB2 Express Download

Re: [Wicket-user] Page Expired in AjaxLink after backbutton FF2

2007-07-01 Thread Eelco Hillenius
> Hi, I have some ajax link in a page that are used to select items in a > list (the items are stored in an ArrayList on the server). > It works fine with any browser. But from this page if I click on a > BookmarkableLink to another page and after click on the back button > of my browser, when cli

Re: [Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-01 Thread Eelco Hillenius
> Can anyone give me an example of override onNodeLinkClicked(...) for display > the tree. I want to click the menu intree structure. It's fine i can did it > now. But i cant setResponce to another page when i clicked on the link.. > thanks in future So calling setResponsePage (to another page I p

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Gerolf Seitz
thx, igor, for the clarification. although it's been said a lot of times, i have to repeat it: you guys do one hell of a good job teaching us padawans, because at the beginning of one's wicket journey, it's sometimes hard to travel on the right (=wicket) way. and btw, it's been a tremendous journe

[Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-01 Thread kenixwong
Can anyone give me an example of override onNodeLinkClicked(...) for display the tree. I want to click the menu intree structure. It's fine i can did it now. But i cant setResponce to another page when i clicked on the link.. thanks in future -- View this message in context: http://www.nabble.co

Re: [Wicket-user] changing default wicket:link rendering

2007-07-01 Thread Igor Vaynberg
application.init() { getmarkupsettings.setdefaultbefore/afterdisabledlink(...); } -igor On 7/1/07, jonaqua <[EMAIL PROTECTED]> wrote: Hi all, I'm fairly new to wicket - today's the first day I really dove into it. I have a very basic question. The wicket:link tag automatically makes the c

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Igor Vaynberg
On 7/1/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: thx for the corrections, igor. i have one question though: what if the panel get's updated via ajax, wouldn't the whole panel be "redrawn" and thus loosing the javascript-rendered round corners? that was actually the reason for putting the javas

Re: [Wicket-user] How to get HTML source code from a wicket page

2007-07-01 Thread Jeremy Thomerson
I hope someone can give me a hand. I'm trying to do something similar, and seemingly stumped. I have a form that I want to have the user fill out, and then I just want to email the completed form to someone on our team. So, I created subclasses of form components that can be switched from "edit

Re: [Wicket-user] changing default wicket:link rendering

2007-07-01 Thread David Leangen
You can just change the CSS. IIRC, wicket only writes to output a CSS class that you can modify as you please. Otherwise, you can probably just override the default functionality. Wicket is really easy to customize by overriding the behaviours of the parent classes. Cheers, Dave On Sun, 200

[Wicket-user] changing default wicket:link rendering

2007-07-01 Thread jonaqua
Hi all, I'm fairly new to wicket - today's the first day I really dove into it. I have a very basic question. The wicket:link tag automatically makes the current page in italics - like in the navomatic example. How can I customize this functionality? i.e. make the current page bold instead of

Re: [Wicket-user] Seam2 and Wicket

2007-07-01 Thread Eelco Hillenius
Here's my 2c: > I think the BPM feature would be a nice addition. I'm curious to learn what you would think that should look like. I've heard of a couple of projects that used/ integrated Wicket + jBPM (likely the default of SEAM) but everyone might have different ideas on it. How would you want

Re: [Wicket-user] Trying to retrieve the absolute URL

2007-07-01 Thread David Leangen
Thank you! Wow! I can't believe how fast development is... I just updated to 1.2.6, but looking at Jira, it seems that 1.3.0 is about to be closed... Should I still file an issue? If so, for which version? (Unfortunately, I'm not in a position to verify with how things are working in trunk...)

Re: [Wicket-user] Seam2 and Wicket

2007-07-01 Thread Erik Dreyer
I think the BPM feature would be a nice addition. I'm currently also working with a Tapestry 3 project that integrated with Spring WebFlow. The integration is a bit hairy, but having the state machine for flow management was a big win. The cost is that virtually any link that moves from one pag

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Eelco Hillenius
> It seems there is more than one way to skin this cat. I'm really looking > forward to Wicket in Action. Working on it as we speak :) > I'm hoping that besides acting as a great > reference, it will be great at explaining the "intent" of the design of the > APIs so that end users can make corr

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Erik Dreyer
That worked Great! Thx for the help. I also created a simple Border that uses this Behavior since that is the pattern I'll be using the most (provided to help others): It seems there is more than one way to skin this cat. I'm really looking forward to Wicket in Action. I'm hoping that besides

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Gerolf Seitz
thx for the corrections, igor. i have one question though: what if the panel get's updated via ajax, wouldn't the whole panel be "redrawn" and thus loosing the javascript-rendered round corners? that was actually the reason for putting the javascript code after the rendering of the component. ple

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Igor Vaynberg
On 7/1/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: [...] @Override public void renderHead(IHeaderResponse response) { // add the javascript libraries to the header response.renderJavascriptReference(new JavascriptResourceReference( RicoCo

Re: [Wicket-user] dynamic JS question

2007-07-01 Thread Gerolf Seitz
you could try to implement this as a behavior: public class RicoCorner extends AbstractBehavior { private Component component; @Override public void renderHead(IHeaderResponse response) { // add the javascript libraries to the header response.render

[Wicket-user] dynamic JS question

2007-07-01 Thread Erik Dreyer
Hi, Thanks in advance for the help as I wrap my mind around Wicket. I'm trying to create a Border component that, using the openRico js library (www.openrico.org), will output JS that will be called on load to round its own borders. Basically Rico works like this: ... stuff goes here ... Rico

[Wicket-user] No get method defined for expression recorder when using Palette and CompoundPropertyModel

2007-07-01 Thread Robert Novotny
Greetings, I have migrated by application to the wicket beta2 and I have experienced an apparent change in the functionality of CompoundPropertyModels. I have a simple page with constructor code similar to the following code: public TestPage() { setModel(new CompoundPropertyModel(author)); ad

Re: [Wicket-user] Classcastexception and getSession

2007-07-01 Thread Frank Bille
On 6/28/07, Flemming Boller <[EMAIL PROTECTED]> wrote: I hope somebody can use this, because...dammit this has taken time... If you got some spare time, perhaps you could write up something for the Gotchas :) http://cwiki.apache.org/WICKET/best-practices-and-gotchas.html#BestPracticesandGotc