Re: Button tag

2013-07-06 Thread Paul Borș
Yes. See the books section on Wicket's website http://wicket.apache.org, also consult HTML's protocol. Have a great day, Paul Bors On Jul 5, 2013, at 1:01 PM, Jered Myers jer...@maplewoodsoftware.com wrote: I am looking at switching my input type=submit / submit buttons over to button

Re: How can i render json into markup?

2013-07-06 Thread Paul Borș
Your question is better addressed at http://wicked-charts.2319560.n4.nabble.com/ The mailing list for https://code.google.com/p/wicked-charts/ Tom H. did a super good job on integrating High Charts with Wicket so I'm not sure why you're reinventing the wheel. Have a great day, Paul Bors

Re: cryptic error messages

2013-07-06 Thread Paul Borș
As Per you're HTML you're component path is repeatingDocTypes:docTypeName ie: div wicket:id=repeatingDocTypes span wicket:id=docTypeNameOrders/spanbr/ Where repeatingDocTypes is a repeating view and its children are numbered (1,2,3,4..). Yet you added docTypeName and

Re: Tree with different BookmarkablePageLink per Node

2013-07-06 Thread Paul Borș
What have you tried so far? Has it worked for you? Have a great day, Paul Bors On Jul 5, 2013, at 5:11 PM, Piratenvisier hansheinrichbr...@yahoo.de wrote: What is the best way to build a nested Tree with different BookmarkablePageLinks per node? The best would be when I build the Foo

Re: Wicket free guide updated.

2013-07-06 Thread lucast
Hi Andrea, Thank you for writing this really good book. I would like to have a hard copy of it from amazon or any other site. Have you found a publisher that would print it for you? kind regards, Lucas -- View this message in context:

Re: Tree with different BookmarkablePageLink per Node

2013-07-06 Thread Sven Meier
It depends on you node implementation: If Foo is an object from your UI layer, just add #createContent() to it and let it return a suitable representation. If Foo is part of the domain layer, I'd prefer a factory for that, e.g. ContentFactory#createContent(Foo). This factory could consists of

Re: Tree with different BookmarkablePageLink per Node

2013-07-06 Thread Piratenvisier
Here my first solution: public BeginnersTreePage() { TreeApplication.get().foos.clear(); Angebot angebot=angebotManager.get(RH996); Foo fooA = new Foo(angebot.getId()); PageParameters parameters = new PageParameters(); String href = getRequestCycle().getUrlRenderer().renderFullUrl(

Re: How can i render json into markup?

2013-07-06 Thread Per Newgro
Hi Paul, thanks for your reply. As i wrote we don't want to use the wicked-charts integration. Reinventing the wheel is not our goal. What i want to know was how i can render the script with the json content inside the div. So far i've found a chart example in Igor's excelent Cookbook. But

Re: Tree with different BookmarkablePageLink per Node

2013-07-06 Thread Piratenvisier
I am not too much accustomed to your definitions. what is UI Layer,what is domain Layer. In my solution I kept all the Page Classes outside by going back to the good old http In your both cases: who knows defintively the PageClasses in those cases. Maybe I could think about Interfaces and

Wicket-Atmosphere : best way to call server

2013-07-06 Thread Pierre Goupil
Good afternoon, When using Wicket-Atmosphere (0.11), which is the recommended way to send a message to the server in order to receive a WebSocket (or fallback transport) response? I mean, I am supposed to do: var socket = $.atmosphere;var request = new $.atmosphere.AtmosphereRequest();var

Re: Wicket free guide updated.

2013-07-06 Thread Paul Borș
I won't print it just yet, the book is still going through revisions. See the open issues at http://code.google.com/p/wicket-guide/issues/list Otherwise you can always take it to Staples and pay $10 to have it printed for you ;) Have a great day, Paul Bors On Jul 6, 2013, at 4:17 AM,

Re: How can i render json into markup?

2013-07-06 Thread Paul Borș
Then your on your own. However you can modify any HTML tag in wicket by giving it a wicket:I'd and then grabbing a reference to it via the WebMarkupContainer: http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/markup/html/WebMarkupContainer.html You can the. Attach your own

wicketstuff-gmap3 and CryptoMapper

2013-07-06 Thread Nemat Rakhmatov
Hello all, I was playing with newly released wicketstuff-gmap3 to explore the possibility of integrating google maps into my application. Quickly added the map and marker listener, it was a cake. But got a problem with marker listener. Find out Not found ajax response error in the Wicket Ajax

Re: wicketstuff-gmap3 and CryptoMapper

2013-07-06 Thread Paul Borș
First search for a Jira ticket in Wicket's queue that's related to your problem at: https://issues.apache.org/jira/browse/WICKET If one doesn't exist (I remember seeming a few ones about the CryptoMapper recently), then create a quick start that reproduces the bug in the fewest steps possible

Re: wicketstuff-gmap3 and CryptoMapper

2013-07-06 Thread Paul Borș
Btw, Martin released wicket-stuff 6.9.0 last Friday. Did you try that version? Have a great day, Paul Bors On Jul 7, 2013, at 12:25 AM, Paul Borș p...@bors.ws wrote: First search for a Jira ticket in Wicket's queue that's related to your problem at: