Re: [Wicket-user] Weird problem with AJAX and crypted url...

2006-04-04 Thread Juergen Donnerstag
I think we are doing it already, but haven't checked the code. Juergen On 4/4/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > we might have to base64 the encoded string before putting it into the url. > > -IGor > > > > On 4/4/06, Juergen Donnerstag < [EMAIL

Re: [Wicket-user] Weird problem with AJAX and crypted url...

2006-04-04 Thread Juergen Donnerstag
The error message means that the string to be decrypted does not have the proper/expected length (padding). The problem is the encrypted string must be URL encoded to make sure that only chars are use which are allowed in URLs. The only reason I can think of: The following equation should be true:

Re: [Wicket-user] update from beta2 to beta3 broke in context of

2006-04-04 Thread Juergen Donnerstag
Note that MUST be before , , , and . Unfortunately no error message is thrown yet. Its currently only my laptop. I need to test it further before committing. If that is not the case in your example, please send me a stripped down version of the page and panels etc preferably as junit test case l

Re: [Wicket-user] RAD Components

2006-04-03 Thread Juergen Donnerstag
Igor is right, IComponentResolver does it already. Please see SimpleListView in the displaytag examples. Juergen On 4/3/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > not sure your patch is necessary. you can probably do the same with: > > DynamicMarkupContainer extends MarkupContainer implements

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-04-03 Thread Juergen Donnerstag
ing up when i started using the latest code. > I am using the code from the SVN trunk. > > Cheers > Dipu > > > > > > > > > > > > > - Original Message - > From: "Juergen Donnerstag" <[EMAIL PROTECTED]> > To: > Se

Re: [Wicket-user] VOTE: One refactor to do in 1.2 if possible: String Param or Returntype to its interface CharSequence..

2006-04-01 Thread Juergen Donnerstag
+1 for now. For all new 1.2 interfaces and methods and for internal methods (incl. pre 1.2). Did we add replaceComponentTagBody in 1.2? If not, that should not (yet) be changed. Especially as I can imagine that this function is used by some users. Juergen On 4/1/06, Igor Vaynberg <[EMAIL PROTECTE

Re: [Wicket-user] About links

2006-03-31 Thread Juergen Donnerstag
the APIs "Direct Known Subclasses" > first. I know you would say that you should look in the > wicket.markup.html.link package. But this still don't contain all the > links. > > Ohh this turned out much bigger stand I imagined. > > > On 3/31/06, Juergen Donners

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Juergen Donnerstag
thing to do with the version of the code i am using right > now or am i doing something in the wrong way. > > Thanks > > Dipu > > > > > > - Original Message - > From: "Juergen Donnerstag" <[EMAIL PROTECTED]> > To: > > Sent: Friday, Marc

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Juergen Donnerstag
; To: > Sent: Friday, March 31, 2006 11:11 AM > Subject: Re: [Wicket-user] Problem migrating the application to the new > version of Wicket. > > > Dipu, > Just to flag that the latest code is in SVN, not CVS anymore. > /Gwyn > > On 31/03/06, Juergen Donnerstag <[EMAI

Re: [Wicket-user] About links

2006-03-31 Thread Juergen Donnerstag
Sorry, might questionwas referring to >Because I'm makeing a dynamic menu, where you can put your own links. >Here I have to do more because it's not all using extends Link. On 3/31/06, Jesper Preuss <[EMAIL PROTECTED]> wrote: > On 3/31/06, Juergen Donnerstag <[EMAIL P

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Juergen Donnerstag
essage clearly says that i have multiple wicket id's with the same > name. > But i don't have more than one id there in my mark up with the same name, i > did a search in the mark up and as well as in all the panels that are added > to the page. > > Thanks > Dipu > &

Re: [Wicket-user] About links

2006-03-31 Thread Juergen Donnerstag
w ExternalLink(xxx); > > myLink = new BookmarkablePageLink(xx); > > On 3/31/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > Do you? What exactly are the differences. > > > > On 3/31/06, Jesper Preuss <[EMAIL PROTECTED]> wrote: > > > I would just think it w

Re: [Wicket-user] Using AuthenticatedWebApplication gives wicket.WicketRuntimeException in wicket-1.2-beta2

2006-03-31 Thread Juergen Donnerstag
gt; there are other ways of using them without the > AuthenticatedWebApplication? > > Thanks, > > On 3/31/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > It obviously hasn't been changed yet. The code from > > AuthenticatedWebApplication() must be moved into

Re: [Wicket-user] About links

2006-03-31 Thread Juergen Donnerstag
links. > Here I have to do more because it's not all using extends Link. > > On 3/31/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > Because ExternalLink does not point to a Wicket resource or listener. > > It points to some wicket external address (e.g. g

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Juergen Donnerstag
You probably have multiple wicket:id="flightSearchResultValidation" in the same markup file at the same level in the component hierarchy. That is no longer possible. We are now more strict, enforcing a 1:1 between component hierarchy and markup. Simply rename one of the flightSearchResultValidation

Re: [Wicket-user] About links

2006-03-31 Thread Juergen Donnerstag
Because ExternalLink does not point to a Wicket resource or listener. It points to some wicket external address (e.g. google, ebay, amazon) and hence doesn't need all the features/functionalities (and the overhead) of Link and it derivatives. Juergen On 3/31/06, Jesper Preuss <[EMAIL PROTECTED]>

Re: [Wicket-user] Using AuthenticatedWebApplication gives wicket.WicketRuntimeException in wicket-1.2-beta2

2006-03-31 Thread Juergen Donnerstag
It obviously hasn't been changed yet. The code from AuthenticatedWebApplication() must be moved into its init() method. Juergen On 3/31/06, Andre Matheus <[EMAIL PROTECTED]> wrote: > When I tried to use AuthenticatedWebApplication instead of > WebApplication to create my Application, the system s

Re: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-03-30 Thread Juergen Donnerstag
What about Application.properties as the internal one. It is (should) already be search for. Juergen On 3/30/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > but the problem with wicket.properties is that it is also used by our users! > what we need is a unique property file that our users wont hav

Re: [Wicket-user] Refreshing page contents

2006-03-30 Thread Juergen Donnerstag
Sounds like your browser is using its local cache. Try Juergen On 3/30/06, Anders Peterson <[EMAIL PROTECTED]> wrote: > Hi, > > I have a problem refreshing page contents. > > This did work as intended before I updated the database model. The > page's code has not been c

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Juergen Donnerstag
and please add a junit test (not just describing the problem). src/test contains plenty of junit test you might copy&paste (search for WicketTestCase) Juergen On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > it might be a bug because we handle tags specially ( we dont require > them to be

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
Ok, should be fixed in svn head now. Added junit tests. Juergen On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > sorry, I was mislead. Your code is right. The issue is the Ajax stuff > is not yet supported if the Ajax component is part of a bordered page. > Pl

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Juergen Donnerstag
not that I can think of Juergen On 3/29/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > Is there a performance hit for customizing the location of the html files? > I thought I had read that somewhere in the wiki, once upon a time. > > > On 3/29/06, Juergen Donnerstag <

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Juergen Donnerstag
please see wicket-example customresourceloading Juergen On 3/29/06, Bruno Borges <[EMAIL PROTECTED]> wrote: > I don't like the way wicket put together Java classes with HTML resources > (in the same package structure). > > Even if I move the structure to another path, like WEB-INF/html, I must >

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
sorry, I was mislead. Your code is right. The issue is the Ajax stuff is not yet supported if the Ajax component is part of a bordered page. Please use markup inheritance instead. Juergen On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > Wicket shouldn't get into an infin

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
arentResolver(true); add(myBorder); myBorder.add(ajaxLabel = new Label("ajaxLabel", "AAA" )); ajaxLabel.setOutputMarkupId(true); myBorder.add(new AjaxLink("ajaxLink") { Juergen On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]

Re: [Wicket-user] servlet mapping

2006-03-29 Thread Juergen Donnerstag
That realy looks like a orion bug Juergen On 3/29/06, Theo vN <[EMAIL PROTECTED]> wrote: > Hi > > In the web.xml of the wicket-examples the servlet mapping is shown as.. > > > LinkomaticApplication > /linkomatic/* > > > The above does work in Tomc

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
There is already a bug for this in sourceforge. Juergen On 3/29/06, Andre Matheus <[EMAIL PROTECTED]> wrote: > I am having trouble using Ajax links in pages with a border with > setTransparentResolver(true); > > The message in the Wicket Ajax Debugger is the following: > > INFO: > INFO: initia

Re: [Wicket-user] Caching content

2006-03-29 Thread Juergen Donnerstag
On 3/29/06, John Lee <[EMAIL PROTECTED]> wrote: > I wish I had the time :-) I'm in the process of moving my client's code > from php->Java. Need to move to a typed language. Things were getting > way too messy with PHP. I discovered wicket and think it's the right way > to go. But I wanted to shar

Re: [Wicket-user] yui slider enquiry

2006-03-28 Thread Juergen Donnerstag
May be you can have a look at it and tell us whether you think it is ready or not. And in case you find something to improve, we are more than happy to receive a patch. Juergen On 3/29/06, Joshua Lim <[EMAIL PROTECTED]> wrote: > Hi > > I would like to use the yui slider bar ... is it still exper

Re: [Wicket-user] Importing static HTML

2006-03-28 Thread Juergen Donnerstag
On 3/28/06, Matthias Albert <[EMAIL PROTECTED]> wrote: > My problem is to show the body content of a static HTML file inside a > table cell of a Wicket page. Which file is selected dynamically. > > > I now managed to read the whole HTML file and assign its content to a > label. The problem is that

Re: [Wicket-user] Java Web Framework Sweet Spots

2006-03-26 Thread Juergen Donnerstag
On 3/26/06, Thomas Singer <[EMAIL PROTECTED]> wrote: > > then i just give them that back and they can use it to do all the pages > > (though of course with JSF, JSP mess it's barely even doable to have > > reusable templates IMO) > > Shouldn't the web-application framework provide a mechanism for t

Re: [Wicket-user] ListView containing BookmarkablePageLink items

2006-03-25 Thread Juergen Donnerstag
wicket tries not to apply any magic. try whatever wicket will not automatically convert into body Juergen On 3/24/06, Matthias Albert <[EMAIL PROTECTED]> wrote: > Trying to create a ListView that shows a dynamically created list of > BookmarkablePageLink items, I first tried a list of labels, w

Re: [Wicket-user] Fwd: [ wicket-Bugs-1442757 ] Ajax errors in a Border

2006-03-23 Thread Juergen Donnerstag
When you override you MUST override remove, replace and especially autoAdd as well. Because this is far to error prone, they are all made final in head (I hope they still are). If something doesn't work as expected, please prepare a unit test (see src/test) and I'll look after it. Juergen On 3/24

Re: [Wicket-user] Switching to https

2006-03-22 Thread Juergen Donnerstag
I think the last time we discussed that topic the conclusion was that no immediate action is required as most applications which require https tend to have only a very limited number of http pages. Juergen On 3/22/06, John Patterson <[EMAIL PROTECTED]> wrote: > OK Thanks. It would get a bit mess

Re: [Wicket-user] Some wicket tag questions

2006-03-21 Thread Juergen Donnerstag
see all the classes in wicket.markup.resolver.*. Just create your own resolver and register it with the application and you are done. Juergen On 3/21/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > On 3/21/06, Tom van Zummeren <[EMAIL PROTECTED]> wrote: > > Thank you fo

Re: [Wicket-user] Some wicket tag questions

2006-03-21 Thread Juergen Donnerstag
thing). > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Juergen > Donnerstag > Sent: dinsdag 21 maart 2006 22:42 > To: wicket-user@lists.sourceforge.net > Subject: Re: [Wicket-user] Some wicket tag questions > > It is exper

Re: [Wicket-user] Header Contribution on inherited panels

2006-03-21 Thread Juergen Donnerstag
The lasted svn head should finally fix it. I've added your test case to verify it. Juergen On 3/3/06, Andre Matheus <[EMAIL PROTECTED]> wrote: > Don't worry. > Just tell me if I can help. > > Regards, > > ___ > André Matheus > > > On 3/3/06, Juergen

Re: [Wicket-user] Some wicket tag questions

2006-03-21 Thread Juergen Donnerstag
It is experimental only. We did have to many issues implementing it properly. Though there a view unit test cases for it (just search for which kind of belongs into the same category. Do not use them. Once we migrated to "parent container must be provided with the components constructor", it'll be

Re: [Wicket-user] error message in the absence of wicket:extend, wicket:panel tags.

2006-03-20 Thread Juergen Donnerstag
This is the error message I get, which I think is perfectly fine (and it is latest svn head). There is some other mistake in your markup which causes the error. wicket.markup.MarkupException: Markup for a panel component has to contain part '' [markup = file:/D:/Programme/eclipse-3.1M3/eclipse/wo

Re: [Wicket-user] DWR AJAX Integration

2006-03-17 Thread Juergen Donnerstag
Please take at wicket-examples, it contains quite some ajax examples. Additional ones are available in various wicket-stuff project. You'll recognize from the name of the modul which ajax lib they support. Juergen On 3/17/06, Bruno Borges <[EMAIL PROTECTED]> wrote: > How Wicket handle AJAX? > > A

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Juergen Donnerstag
I just committed your example to wicket-example Juergen --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer gr

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Juergen Donnerstag
e: > > * wicket-preview.js is the bootstrapping javascript that dynamically > > includes the other files > > * wicket-preview-behaviour.js does the actual work of parsing > > wicet:preview attributes > > * dojo.js is the "lightweight" dojo.io.* javascript. I

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Juergen Donnerstag
vascript that dynamically > includes the other files > * wicket-preview-behaviour.js does the actual work of parsing > wicet:preview attributes > * dojo.js is the "lightweight" dojo.io.* javascript. It's not the > complete dojo toolkit > > On 3/15/06, Juer

Re: [Wicket-user] wicket:preview feature

2006-03-15 Thread Juergen Donnerstag
o support out of the box. Laughing Panda dudes, > > > Geert, you reading with us? > > > > > > Eelco > > > > > > > > > On 3/14/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > > > On 3/14/06, Ryan Sonnek <[EMAIL PROTECTED]&g

Re: [Wicket-user] wicket:preview feature

2006-03-14 Thread Juergen Donnerstag
ure in a seperate folder so that users could upgrade the whole > suite of javascript when updates are released... > > On 3/14/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > I am interested to do it, but got only very little time currently. > > What do you want me to d

Re: [Wicket-user] wicket:preview feature

2006-03-14 Thread Juergen Donnerstag
I am interested to do it, but got only very little time currently. What do you want me to do? Juergen On 3/14/06, Ryan Sonnek <[EMAIL PROTECTED]> wrote: > I've updated the wicket:preview feature with new functionality. I > think it pretty much covers the use cases people have provided, and I > w

Re: [Wicket-user] Browser detector available?

2006-03-14 Thread Juergen Donnerstag
please see wicket-examples. Juergen On 3/14/06, David Leangen <[EMAIL PROTECTED]> wrote: > > Are there any browser detectors available in Wicket? > > IIRC, I remember one of the core devz mentioning this a while back... > > > > > --- > This SF.N

Re: [Wicket-user] Ajax tree view

2006-03-13 Thread Juergen Donnerstag
Not as far as I know, unfortunately. Juergen On 3/13/06, Christophe Lombart <[EMAIL PROTECTED]> wrote: > Hi all, > > First of all, you are making a very nice job - just a couple of > minutes to build a ajax tab pane with a very limited wicket knowledge. > > Is there already an ajax treeview comp

Re: [Wicket-user] query strings...

2006-03-11 Thread Juergen Donnerstag
Did find the examples already? They implement kind of best practices for many beginner questions. Create a Page constructor which take a PageParameters parameters. Juergen On 3/11/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > I'm still getting used to the way wicket utilizes querystring values

Re: [Wicket-user] Wicket community...

2006-03-11 Thread Juergen Donnerstag
We are definitely active. Scanning the mail archiv will proof that point. We recently provided 1.2B1 to the community and the sourceforge download page will provide you with many more early 1.2 releases (which also proofs that we are active). Lots of work went into 1.2 and many many improvement dri

Re: Re: Re: [Wicket-user] Optional components

2006-03-08 Thread Juergen Donnerstag
gt; > > > >> a strategy for a /debug/ check. dont you think this is a little > > overkill? > > > > >:) > > > > >> > > > > >> -Igor > > > > >> > > > > >> > > > > >> > > &g

Re: [Wicket-user] Customizing PrependContextPathHandler

2006-03-08 Thread Juergen Donnerstag
Might be that I'm mistaken but I thought Application.getContextPath() were meant for proxied environments. I don't think it is equal to the servlets context path. I would assume you'll find information in the mail archive on that. And obviously the javadoc is not clear on that. Juergen On 3/8/06,

Re: [Wicket-user] Customizing PrependContextPathHandler

2006-03-07 Thread Juergen Donnerstag
PrependContextPathHandler is fairly simple. I guess I would copy the code, make the modifications you want and register your handler with the application. Please see MarkupParserFactory on how to register the IMarkupFilter with the application. Juergen On 3/8/06, David Leangen <[EMAIL PROTECTED]>

Re: [Wicket-user] Fwd: [ wicket-Bugs-1442757 ] Ajax errors in a Border

2006-03-07 Thread Juergen Donnerstag
ROTECTED]> wrote: > Ah, that explains it. In my incorrect case, shouldn't wicket throw an > error since the hierarchy is incorrect? > > On 3/7/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > Joseph, > > > > you change is wrong. You did > >

[Wicket-user] Fwd: [ wicket-Bugs-1442757 ] Ajax errors in a Border

2006-03-07 Thread Juergen Donnerstag
up: 1.2 Status: Closed Resolution: Fixed Priority: 5 Submitted By: Joseph Toth (weazelb0y) Assigned to: Juergen Donnerstag (jdonnerstag) Summary: Ajax errors in a Border Initial Comment: If you wrap the Clock example in a Border you get the following error. SEVERE: wicket.ajax.AjaxRequest

Re: Re: [Wicket-user] Optional components

2006-03-07 Thread Juergen Donnerstag
I haven't understood the use case yet. I can read the request but haven't understood why it is necessary. Why should the markup vary from the java code? Juergen On 3/7/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > yeah, we could have a method isOptional() {return false;} that can be > overridd

Re: Re: [Wicket-user] Optional components

2006-03-07 Thread Juergen Donnerstag
May be a stupid question, but isVisible is not suitable? Juergen On 3/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm aware of IDebugSettings#componentUseCheck. > > But with this setting I would loose the rendering check globally :(. > I'd rather keep the check for most of my components.

Re: [Wicket-user] Request regarding Anchor by Link

2006-03-07 Thread Juergen Donnerstag
may be you make it a RFE. This way it will not be lost. Juergen On 3/7/06, Ali Zaid <[EMAIL PROTECTED]> wrote: > Hi; > > second time I post this email, for some reason it didn't make it way > to the group. > > I wanted to do something easy, which is I wanted to have a link that > do some action b

Re: [Wicket-user] Get version of Wicket from program

2006-03-07 Thread Juergen Donnerstag
Do you know how to access that information? How do you get the jar file name a specific class has been loaded from? Juergen On 3/7/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > The Wicket version is available in the manifest file (it is put there > automatically by maven). > > more MANIFEST.

Re: [Wicket-user] Re: Re: Wicket 1.2 and wicket:header

2006-03-06 Thread Juergen Donnerstag
Yes, it is about having an extra markup file with Form (or any other Component) but ONLY would be taken from that file. That used to work and it still does if you derive your component from WebMarkupWithAssociatedMarkup, but of course you can not use it with Form. I tried Jan's suggestion already

Re: [Wicket-user] Wicket 1.2 and wicket:header

2006-03-05 Thread Juergen Donnerstag
tends). Juergen On 3/6/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > I assumed the example given by Jan was a Page (Page => derived from > Page.java) because of the html structure (body tag etc and no > wicket:extend, wicket:panel etc.). A standard normal Page does not >

Re: [Wicket-user] Wicket 1.2 and wicket:header

2006-03-05 Thread Juergen Donnerstag
I assumed the example given by Jan was a Page (Page => derived from Page.java) because of the html structure (body tag etc and no wicket:extend, wicket:panel etc.). A standard normal Page does not need . You can place your component in and add() them. Panels , Borders and extended pages may hav

Re: [Wicket-user] Wicket 1.2 and wicket:header

2006-03-05 Thread Juergen Donnerstag
in Pages don't make any sense. Just remove it and you are done. Juergen On 3/4/06, jan_bar <[EMAIL PROTECTED]> wrote: > Hi, > > I am migrating Wicket 1.1.1 application to Wicket 1.2 (snapshot 20060302). > It seems that wicket:header doesn't work. My WebPage contains a MyForm. The > MyForm inheri

Re: [Wicket-user] Header Contribution on inherited panels

2006-03-03 Thread Juergen Donnerstag
> > > the implementation. > > > > Sure. I am sending it attached. > > I just don't know if it is what you need. > > > > Case you need it in a different way, please tell me. > > > > -- > > __ > > André Matheus > > > > On 2

Re: [Wicket-user] submitting wicket examples

2006-03-03 Thread Juergen Donnerstag
Sorry one more note on this: Like you used the examples to learn Wicket many others do which is why we try hard to explain (javadoc) them as good as possible. Juergen On 3/3/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > You send them to me and I'll add them to either wick

Re: [Wicket-user] submitting wicket examples

2006-03-03 Thread Juergen Donnerstag
You send them to me and I'll add them to either wicket-examples or wicket-contrib-examples. And I'll deploy them on wicket-library. Juergen On 3/3/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > Hi > > Im in the mist of developing a bunch of controls for wicket, one for example > will be able to p

Re: [Wicket-user] Resource Lookup

2006-03-02 Thread Juergen Donnerstag
The code always covered this topic but this code underwent some changes in almost all releases. I'm not sure it worked flawless in all releases. It should in CVS head (and hopefully we have an unit test for it as well). You would do me a great favour you were to test it with CVS head. Juergen On

Re: [Wicket-user] Still link problems

2006-03-01 Thread Juergen Donnerstag
or even better prepare a unit test case which I can copy/add to the existing once. Juergen On 3/1/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > many committers dont have the time to setup deployment to tomcat, ide setup, > etc. > > you have a better chance of having people look at your code if y

Re: [Wicket-user] HttpSession access

2006-03-01 Thread Juergen Donnerstag
What do you need it for? Juergen On 3/1/06, John Patterson <[EMAIL PROTECTED]> wrote: > Hi, > > I am using a wicket 1.2 version from cvs from about 2 wekks ago. There seems > to be no way to access the HttpSession. Is this still true? > > John. > > >

Re: [Wicket-user] Setting link text

2006-03-01 Thread Juergen Donnerstag
Use a Label. Text Juergen On 3/1/06, Karl-Erik Rønsen <[EMAIL PROTECTED]> wrote: > > I am creating tabs that should get their titles generated by code. What's > the best way to set the link text? > > I am new to Wicket, but so far i really enjoy the way that Java and HTML > work together with thi

Re: [Wicket-user] [Wicket 1.1.1] Modifying attributes of the HTML body tag

2006-02-28 Thread Juergen Donnerstag
In 1.1.1 has a special wicket container associated. I assume you have Panel and that Panel has some to contribute something to the pages header. Than simply add a javascript ... Juergen On 2/28/06, Timo Stamm <[EMAIL PROTECTED]> wrote: > Hi. > > > I have to modify the onload attribut

Re: [Wicket-user] Header Contribution on inherited panels

2006-02-27 Thread Juergen Donnerstag
Yes, it is the default behavior and the only one currently supported. Planned for the next snapshot is to introduce a scope for the header which by by default would be the class name of the extended component (PersonListPanel, PersonFormPanel). The scope can be defined like A 2nd (more dynami

Re: [Wicket-user] Extending FormComponent

2006-02-27 Thread Juergen Donnerstag
put it into provided your own component is based on a Panel. Please the wiki for css, javascript and header support. You'll certainly find some information there. Juergen On 2/27/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > > I have a javascript library for rich text editor, i want to use

Re: [Wicket-user] Template page

2006-02-26 Thread Juergen Donnerstag
You may either used Border (border page; see library example) or markup inheritance (see template example), which seems to be a bit easier for most users. Juergen On 2/26/06, Nili Adoram <[EMAIL PROTECTED]> wrote: > Hi All, > What is the best practice to create a template page containing header,

Re: [Wicket-user] template parsing

2006-02-23 Thread Juergen Donnerstag
assign a wicket:id to the tag and do with the associated markup whatever you want. IMO no need for a IMarkupFilter or ICompentResolver. The transformers are maybe a bit like what you want. Juergen On 2/23/06, karthik Guru <[EMAIL PROTECTED]> wrote: > I want to see if its possible to have a custom

Re: [Wicket-user] Wicket and other file types

2006-02-23 Thread Juergen Donnerstag
how about generating PDF from Wicket or Streaming a > binary file? any tip? > > > On 2/23/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > > > Theoretically yes, but implemented is XML (HTML) only. I think > > wicket-contrib-examples contains a RSS example which

Re: [Wicket-user] Wicket and other file types

2006-02-23 Thread Juergen Donnerstag
Theoretically yes, but implemented is XML (HTML) only. I think wicket-contrib-examples contains a RSS example which return XML Juergen On 2/23/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > > Can Wicket Work for all other FileTypes too as with HTML... > I mean can Wicket also spit out XML, XL

Re: [Wicket-user] Including a Wicket page in HTML-formatted email

2006-02-23 Thread Juergen Donnerstag
Actually the tests don't render the page to a file, they render it to a StringResponse and compare it with a files content (which is assume to be correct) Juergen On 2/23/06, Ari Suutari <[EMAIL PROTECTED]> wrote: > Hi, > > Maybe you could use same classes that test cases do (they render pages >

Re: [Wicket-user] Javascript based compnoents generates Browser Errors

2006-02-22 Thread Juergen Donnerstag
t; On 2/22/06, Ayodeji Aladejebi <[EMAIL PROTECTED] > wrote: > > > Obviously but how do i make them available is the problem...i dont have > to do this manually..shey?..is it something wrong with my build or is > something wrong with the wicket library combination i am us

Re: [Wicket-user] java.util.MissingResourceException with wicket-1.2-20060216.jar

2006-02-22 Thread Juergen Donnerstag
this case will > >appear when trying to add two forms in the same Panel: > > > >APage > >->APanel id="ap" > > -->AForm id="af" > > >RequiredTextField id="foo" > > -->BForm id="bf" > > >R

Re: [Wicket-user] Javascript based compnoents generates Browser Errors

2006-02-22 Thread Juergen Donnerstag
The javascript files are not available to the browser. Juergen On 2/22/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > What could cuz problems like having IE showing errors like : > > 'dojo' is undefined > 'Calender' is undefined > > i attached a sampl error shot > > thanks > ---

Re: [Wicket-user] java.util.MissingResourceException with wicket-1.2-20060216.jar

2006-02-22 Thread Juergen Donnerstag
Please see http://www.wicket-wiki.org.uk/wiki/index.php/Validation_Messages Juergen On 2/22/06, Andre Matheus <[EMAIL PROTECTED]> wrote: > Hi all, > > I am using the wicket-1.2-20060216.jar > > I have a panel called PersonFormPanel where I add a form with id=personForm > In this form I add an Req

[Wicket-user] Re: [Wicket-user] Re: [Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
And the spec says to not include it because it is not consistently treated by browser etc.. IMO the best solution is to use xhtml and Juergen On 2/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Joel Spolsky says to put content="text/html;charset=UTF-8"> in every page you have: > http://www

Re: [Wicket-user] Package level javascript source per component

2006-02-21 Thread Juergen Donnerstag
the resource, keep the refernece, create an > initializer). this can indeed be a neat feature for pages that have a lot of > javascript, but i do think that this is an edge usecase. > > -Igor > > > > On 2/21/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: >

[Wicket-user] Re: [Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
your html and/or response does not provide the charset information Juergen On 2/21/06, Piotr Bzdyl <[EMAIL PROTECTED]> wrote: > Hello, > > > > Im having a bit of a trouble using wicket with Danish characters, they > > do not get displayed correctly the first time a page is displayed on > > postba

Re: [Wicket-user] question

2006-02-21 Thread Juergen Donnerstag
t; code for each link. > > /Frank > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Juergen > Donnerstag > Sent: Thursday, February 16, 2006 4:17 PM > To: wicket-user@lists.sourceforge.net > Subject: Re: [Wicket-user] question >

Re: [Wicket-user] Package level javascript source per component

2006-02-21 Thread Juergen Donnerstag
First I thought, good idea. But than, what is the difference between putting the javascript into a js file (like you suggest) and adding to the head section. Actually you could try to implement it yourself. (Ajax-)behaviors are kind of similar, as they add code to a header section as well. Juerg

Re: [Wicket-user] RadioGroup frustrations

2006-02-21 Thread Juergen Donnerstag
Wicket is right: wicket.id="group">  =>  wicket:id="group"> replace the "." with ":"   Juergen  On 2/21/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: Forgive me for putting this on the mailing list; I don't have access to the IRC at work.  But as a beginner, it seems that everything I

[Wicket-user] Re: [Wicket-user] RE: [Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
DOH? Juergen On 2/21/06, Nino Wael <[EMAIL PROTECTED]> wrote: > YES! Thanks, and might I add DOH! > > > -regards Nino > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Juergen > Donnerstag > Sent: Tuesday, February 2

[Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
Converting the file to UTF-8 seems to fix the problem. Juergen On 2/21/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > Jow exactly should the content look like? > > Juergen > > On 2/21/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > > I haven't check

[Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
Jow exactly should the content look like? Juergen On 2/21/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > I haven't checked your markup. But wicket defaults to utf-8. The most > common mistake is that people don't store the markup in utf-8 even > though th

[Wicket-user] Re: [Wicket-user] Trouble with characters: Æ Ø Å

2006-02-21 Thread Juergen Donnerstag
I haven't checked your markup. But wicket defaults to utf-8. The most common mistake is that people don't store the markup in utf-8 even though they put or in the markup. Juergen On 2/21/06, Nino Wael <[EMAIL PROTECTED]> wrote: > > > Hi > > Im having a bit of a trouble using wicket with Danish

Re: [Wicket-user] Parsing Error:Mismatch Close Tag Error

2006-02-21 Thread Juergen Donnerstag
The following tags are lenient: p, br, img, input, hr, link, meta. But if I were you I'd realy try to make my markup xhtml compliant. It is much easier to find bugs like yours besides that browsers are not consistent in the way they treat none-closed tags. Might be that I'm wrong, but I guess no br

Re: [Wicket-user] Parsing Error:Mismatch Close Tag Error

2006-02-20 Thread Juergen Donnerstag
is missing or any of its inner tags are not closed (may be quotes " or ' are somewhere missing) Juergen On 2/20/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > I have tried as much as possible to debug this problem. it keeps coming and > all IDs were normally created...What could be wrong > >

Re: [Wicket-user] Help understanding AJAX and wicket 1.1

2006-02-20 Thread Juergen Donnerstag
May be you take a look at the more simple ajax example first. There are about 8 in wicket-examples. Unfortunately by now you have to grasp the ideas from the code. As far as I know there is no user guide yet. May be you'll something in the wiki, but I'm not sure. Juergen On 2/20/06, Charlie Hubb

Re: [Wicket-user] Wicket reload broken?

2006-02-19 Thread Juergen Donnerstag
em #2 is still there. > > Tested with 1.2-20060216 from sourceforge and head of main trunk CVS. > > On 19 Feb 2006, at 21:49, Juergen Donnerstag wrote: > > > 1.2 HEAD. 1.2 just removes the markup from the cache without trying to > > reload it. It is reloaded the next time the resourc

Re: [Wicket-user] Wicket reload broken?

2006-02-19 Thread Juergen Donnerstag
1.2 HEAD. 1.2 just removes the markup from the cache without trying to reload it. It is reloaded the next time the resource is requested. Juergen On 2/19/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > head 1.1 branch? > -Igor > > > > On 2/19/06, Juergen Donnerstag &

Re: [Wicket-user] Wicket reload broken?

2006-02-19 Thread Juergen Donnerstag
its fixed in HEAD Juergen On 2/19/06, Christian Hvid <[EMAIL PROTECTED]> wrote: > > > I have set up my wicket application to reload constantly my templates: > > public class MyWebApplication extends WebApplication { > public MyWebApplication() { > > getSettings().setResourcePollFrequency(Dura

Re: [Wicket-user] WicketTester broken (FormTester won't gather request parameters on page)

2006-02-18 Thread Juergen Donnerstag
It looks like a namespace issue. We recently started using a kind of namespace for various "resources" including url parameter. Reason: avoiding issues due to users using wicket "preserved" names. Juergen On 2/18/06, Ingram Chen <[EMAIL PROTECTED]> wrote: > I upgrade to latest CVS, but found beha

Re: [Wicket-user] Problems including header elements with custom panels?

2006-02-17 Thread Juergen Donnerstag
I'm not sure, but the message looks like wicket:head is not supported at all in 1.1 Juergen On 2/17/06, Charlie Hubbard <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using the latest stable build 1.1, and I'm trying to include a > wicket:head tag in my panel's template, and I'm get the following > exc

<    1   2   3   4   5   6   7   8   9   10   >