Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Eyal Golan
Hi, We use BIRT as a report engine. A freelancer has created the prototype BIRT project, and now we took over it. 1. BIRT gives you all your needs. 2. I don't like it very much actually. 3. It is a different project than Wicket. (different WAR) 4. I plan to check how to integrate it to be in the

Re: Assert that all models are detached at the end of the request?

2008-09-09 Thread Eyal Golan
Why do you throw WicketNotSerializableException when the model is still detached? On Fri, Sep 5, 2008 at 11:11 AM, Kaspar Fischer [EMAIL PROTECTED]wrote: For the sake of completeness, here is the solution I am currently using. It uses, as suggested by Martijn, a custom request cycle and a

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Piller Sébastien
Personnaly, I use JasperReport/iReport to make pdf reports. It works very well, and is quite easy to use. For Excel, I use it too, or JExcelAPI when I need to do more sophisticated things Hi all I would like to know what kind of reporting engines are commonly used for Wicket-based apps? We

Re: newbie problem with wicket...

2008-09-09 Thread dlipski
I don't have secure base page because project is using wicket-auth-roles with AnnotationsRoleAuthorizationStrategy so there is no need for such page. Maybe I misunderstood your idea ? Johan Compagner wrote: Why dont you have a securebasepage class where you do that check for login and

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Nino Saturnino Martinez Vazquez Wael
I use jfreechart jasperreports with idesigner( so that people can design their own reports).. We had our on hack at the integration.. But it should be trivial.. Leon Nieuwoudt wrote: Hi all I would like to know what kind of reporting engines are commonly used for Wicket-based apps? We have

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Martijn Dashorst
We use reportmill (I wouldn't pick that anymore), jasperreports (has its own problems), crystal reports (haven't done anything serious yet) and business objects (old version and nowadays XI). IMO there are lots of problems with reporting tools: jasper is not sophisticated enough in its design

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Nino Saturnino Martinez Vazquez Wael
Martijn Dashorst wrote: We use reportmill (I wouldn't pick that anymore), jasperreports (has its own problems), crystal reports (haven't done anything serious yet) and business objects (old version and nowadays XI). IMO there are lots of problems with reporting tools: jasper is not

Associating label tags with input elements in RepeatableViews etc.

2008-09-09 Thread Pointbreak
Hi, Is there an easy way to set the for attribute of a label tag to the (generated) markup id of an form input element? I cannot set the for attr. directly in the html template, because the id's are generated dynamically by wicket (because part of RepeatableViews). Right now I am doing it

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Martijn Dashorst
ireport is not suitable for users. Martijn On Tue, Sep 9, 2008 at 10:29 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Martijn Dashorst wrote: We use reportmill (I wouldn't pick that anymore), jasperreports (has its own problems), crystal reports (haven't done anything

Wicket in Action

2008-09-09 Thread Jörn Zaefferer
My copy of Wicket in Action just arrived - kudos to Martjin and Eelco! Great work! Jörn

[announce] Mootip in wicketstuff minies

2008-09-09 Thread Nino Saturnino Martinez Vazquez Wael
I've just added an mootip integration wicketstuff minies. It does somewhat the same as prototip. However it also supports ajaxloading of tool tips, which are very nice. I also added an example project for wicketstuff minies so you can see how it works:

Re: Associating label tags with input elements in RepeatableViews etc.

2008-09-09 Thread Michael Sparer
there is, something like that: final TextField field = new TextField(foo); field.setLabel(new ResourceModel(fooKey)); add(field); add(new SimpleFormComponentLabel(fooLabel, field); regards, Michael pointbreak+wicketstuff wrote: Hi, Is there an easy way to set the for attribute of a label

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Nino Saturnino Martinez Vazquez Wael
Martijn Dashorst wrote: ireport is not suitable for users. Wow what a statement. Depends on the user I guess:) So the holy grail continues.. Maybe it's time for a wicket UI jasper integration thing? Martijn On Tue, Sep 9, 2008 at 10:29 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Leon Nieuwoudt
Thanks for the advice guys At the moment I'm not too worried about a friendly report designer... although I just know the users will ask for one and never use it ;) So I guess a JasperReport integration will give the most mileage. BIRT does seem interesting, although the integration seems

Re: Gmap2 not visible

2008-09-09 Thread normanr
It's me again ;) I was trying to figure out why starting wicket in deployment mode solved the problem. I thought i've made a bookmark of the page i've read something about that, but i did not. And now i'm googling around but do not find it again. So would somebody of you be so kind and tell me

Re: Bookmarkable PagingNavigation

2008-09-09 Thread Mathias P.W Nilsson
Yes, thanks I have read that post serveral times! Finally managed to get the thing working. Not pretty parsing the pageing parameters and adding the page but it works. Thanks! -- View this message in context: http://www.nabble.com/Bookmarkable-PagingNavigation-tp19382751p19389690.html Sent

Re: Gmap2 not visible

2008-09-09 Thread Martin Funk
normanr wrote: It's me again ;) I was trying to figure out why starting wicket in deployment mode solved the problem. I thought i've made a bookmark of the page i've read something about that, but i did not. And now i'm googling around but do not find it again. So would somebody of you be so

Re: Bookmarkable PagingNavigation

2008-09-09 Thread Michael Sparer
Well if it's pretty or not depends on your point of view. If you want to make the thing stateless, there's no other option but passing the values by means of GET or POST parameters ... if you wish google to index each site then GET is the way to go ... Mathias P.W Nilsson wrote: Yes, thanks

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread Eyal Golan
reiern70: Could you please elaborate on how you included BIRT as the part of the application? You can mail directly to me if you feel it is out of Wicket's scope. Thanks On Tue, Sep 9, 2008 at 2:19 PM, reiern70 [EMAIL PROTECTED] wrote: Hi, Actually there is no deed to have BIRT in a

WebResource and authentication

2008-09-09 Thread Adriano dos Santos Fernandes
H! I inherited my application class from AuthenticatedWebApplication so my pages requires authentication. It worked. But I've created a class inherited from WebResource to deliver Jasper Report in PDF and mounted it with this code: mountSharedResource(/Report, new

Re: Reporting Engine on Wicket 1.3.4

2008-09-09 Thread David R Robison
We use Jasper reports. We took what had been started and made some modifications and have it working in Wicket. It works well for us. David Eyal Golan wrote: reiern70: Could you please elaborate on how you included BIRT as the part of the application? You can mail directly to me if you feel it

Re: newbie problem witch wicket...

2008-09-09 Thread Wayne Pope
Hi, I've only been using Wicket a very short time, but why don;t you just create a simple login form page. Then look at the source and you'll see something like: form action=?wicket:bookmarkablePage=:com.youpackage.LoginPageamp;wicket:interface=:0:signInPanel:signInForm::IFormSubmitListener::

Re: StringResourceModel: use MessageFormat features without params array?

2008-09-09 Thread pixologe
Ooops sorry, did not think there would be any reply after a few days... Implementing the varargs doesn't make this any nicer, I think. (Well, a little bit...) The current way does not seem very elegant to me, why would one want to pass an array of propertymodels as a 4th param if all the data

Re: wicket-mooeditable release + ajax/javascript problem

2008-09-09 Thread francisco treacy
thanks nino, in fact i copied what i have done with wicket-nicedit textarea. in this case, it did work with ajax. i will grab all available wicket textarea editors, and patiently try to discover what tricks javascript is playing on me. francisco On Mon, Sep 8, 2008 at 2:19 AM, Nino Saturnino

Displaying Images in MultiLineLabel

2008-09-09 Thread Johannes Dorn
Hello, i have a problem with my wicket application. It loads files containing wiki-syntax from a svn repository. The wiki- syntax is then converted into HTML and displayed by the application by a MultilineLabel. The wiki-syntax can reference images, which are also stored in the svn

Upcoming Wicket Training

2008-09-09 Thread jWeekend
Our next 6 scheduled, intensive Wicket courses are listed below. http://jweekend.com/dev/ContactUsBody/ Contact us for custom dates and/or content combined with our Java/Swing/OO/Spring/JPA course modules. http://jweekend.com/dev/JW703/ Apache Wicket (2 day) Sept 13,14 (Sat-Sun; limited

Re: DateField throwing runtime error in IE only

2008-09-09 Thread cartina84
I am having the same problem in IE7 on a ModalWindow with a Panel, with a DateTextField and a DatePicker attached to it. if I set the date the calendar does not appare. i try to use wicket 1.4m2-m3 but problem remain.. If I remove date from the datetextfield and click on calendar again then

Re: wicketajaxget and waiting?

2008-09-09 Thread Matej Knopp
It has to be done different way. you can do it with onsuccess callback. This might be a bit tricky with current ajax implementation, it will be much easier in Wicket 1.5 -Matej On Tue, Sep 9, 2008 at 12:16 AM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi Im doing a mootip

Re: Displaying Images in MultiLineLabel

2008-09-09 Thread sven
You could adjust the src attribute on rendering, so it points back to your web application. You can use a servlet or a wicket resource to load the image date from your svn and serve its contents to the browser. Sven Johannes Dorn schrieb: Hello, i have a problem with my wicket application.

Re: wicketajaxget and waiting?

2008-09-09 Thread Nino Saturnino Martinez Vazquez Wael
Hi Matej Yeah found out, and did so:) You can see the final result in minies mootipajaxlistener..:) Matej Knopp wrote: It has to be done different way. you can do it with onsuccess callback. This might be a bit tricky with current ajax implementation, it will be much easier in Wicket 1.5

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-09 Thread normanr
http://wicketstuff.org/jira/browse/WSGMAPP-7 says implemented in Rev 3416. But I don't find anything like that, neither in the HEAD nor the comment for REV 3416. Is it gone or has it never been in svn? Martin Funk-3 wrote: Hi Marko, 2008/2/3, Marko Taipale [EMAIL PROTECTED]: Hi, I

Re: Displaying Images in MultiLineLabel

2008-09-09 Thread Johannes Dorn
Thanks for your answer. I have adjusted the src to point back to the application. It is pointing to this class: public class ViewImg extends WebPage { private static final long serialVersionUID = 1L; public ViewImg(final PageParameters parameters) { String

Re: session jumping?

2008-09-09 Thread m_salman
My appologies. The problem was bad design and code on my part. -- View this message in context: http://www.nabble.com/session-%22jumping%22--tp18999615p19395226.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-09 Thread Martin Funk
Don't know what bit me there, I have to apologize. You don't happen to have any ideas molded in code on that, do you? mf normanr wrote: http://wicketstuff.org/jira/browse/WSGMAPP-7 says implemented in Rev 3416. But I don't find anything like that, neither in the HEAD nor the comment for REV

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-09 Thread normanr
Not right now Martin, but i think that we'll need to do it. But I can't promise ;( Martin Funk-3 wrote: Don't know what bit me there, I have to apologize. You don't happen to have any ideas molded in code on that, do you? mf normanr wrote:

Review: Wicket in Action

2008-09-09 Thread Craig Tataryn
Hey folks, here's my review of Wicket in Action. Excellent job Martijn and Eelco and all those that help them along the way! http://www.mysticcoders.com/blog/2008/09/09/book-review-wicket-in-action/ -- Craig Tataryn site: http://www.basementcoders.com/

Re: Review: Wicket in Action

2008-09-09 Thread Martijn Dashorst
Auch, with all those feathers stuck in my behind sitting will be a problem for the next couple of days. Thanks for the review, I'm glad you enjoyed it! Martijn On Tue, Sep 9, 2008 at 6:47 PM, Craig Tataryn [EMAIL PROTECTED] wrote: Hey folks, here's my review of Wicket in Action. Excellent job

Re: newbie problem witch wicket...

2008-09-09 Thread dlipski
Hi It's some idea but I think that its a little bit of hacking (sending GET request to formSubmitListener). I found other (are they better ?) solutions: 1)Use usual WebPage and in constructor of this page write code to execute and then at the end call setRedirect(true) and

Best first approach to Wicket for my case

2008-09-09 Thread Vernon
I plan to use Wicket first time for my next project. I will use Wicket + Spring + Hibernate to build a web application. I am familiar with Spring (mostly the pre-2.5 version) and Hibernate. And I also worked with Swing before moved into the Java server side development. I would like to hear any

Re: GMap2 (wicket-contrib-gmap2) and autozoom with getBoundsZoomLevel

2008-09-09 Thread Martin Funk
normanr wrote: Not right now Martin, but i think that we'll need to do it. But I can't promise ;( who is it that you mean by 'we'? I've been rolling the thoughts about a possible implementation in my head this afternoon, but didn't get to a reasonable answer yet. I might not have

Re: session jumping?

2008-09-09 Thread Daniel Freitas
Could you enlighten us on what the problem was so we know what to avoid in our own implementations? Is that what Igor suggested? Your isVisible() method cheeking a static value? 2008/9/9 m_salman [EMAIL PROTECTED] My appologies. The problem was bad design and code on my part. -- View this

listview

2008-09-09 Thread Patel, Sanjay
Hi, I have a list of String that I want to display using ListView in three different columns of table. I don't want to split list into three lists and use three different ListViews. I just want to use only one ListView and display strings in three columns. e.g.

Re: listview

2008-09-09 Thread Igor Vaynberg
use a gridview -igor On Tue, Sep 9, 2008 at 1:30 PM, Patel, Sanjay [EMAIL PROTECTED] wrote: Hi, I have a list of String that I want to display using ListView in three different columns of table. I don't want to split list into three lists and use three different ListViews. I just want to

Form values lost in combination of Forms plus ModalWindow

2008-09-09 Thread German Morales
Hi all, I've a problem with Forms and ModalWindows. I have this stuff: -a page with a main Form (the only one that is rendered as an HTML form tag) -this my only page, since all inside it is changed by replacing panels using ajax. -inside some other levels of panels, i have a panel with my

Re: Development/Deployment style attributes

2008-09-09 Thread insom
Sorry, the yellow text should say: lt;span style=background-color: yellow; font-weight: bold;wicket:message key=takeTheTestTake the Test/wicket:messagelt;/span insom wrote: I'm not sure if this is a Wicket bug or my own misunderstanding of development vs. deployment modes. My markup

Development/Deployment style attributes

2008-09-09 Thread insom
I'm not sure if this is a Wicket bug or my own misunderstanding of development vs. deployment modes. My markup included the following: wicket:message style=display: inline; background-color: yellow; font-weight: bold; key=takeTheTestTake the Test/wicket:message That worked find in development

Re: Development/Deployment style attributes

2008-09-09 Thread Martijn Dashorst
wicket:message is stripped from the final markup in development mode, this is intentional. Martijn On Tue, Sep 9, 2008 at 11:31 PM, insom [EMAIL PROTECTED] wrote: I'm not sure if this is a Wicket bug or my own misunderstanding of development vs. deployment modes. My markup included the

Re: Development/Deployment style attributes

2008-09-09 Thread Igor Vaynberg
martijn meant deployment mode. put your wicket:message into a div and set styles on that... -igor On Tue, Sep 9, 2008 at 2:41 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: wicket:message is stripped from the final markup in development mode, this is intentional. Martijn On Tue, Sep 9, 2008

Re: Development/Deployment style attributes

2008-09-09 Thread Martijn Dashorst
It is stripped because you won't be able to find any wicket: tags in any of the HTML standards. Browsers won't be able to do anything with the tag. At best they'll leave it alone, but browsers playing with the wicket tags can also wreck havoc when doing dom manipulations. Martijn On Tue, Sep 9,

Re: Development/Deployment style attributes

2008-09-09 Thread insom
Great, thanks. Is there a compiled list online somewhere of the differences between development and deployment modes? My Google/Nabble skills don't seem to be pulling anything up... Martijn Dashorst wrote: It is stripped because you won't be able to find any wicket: tags in any of the HTML

Re: session jumping?

2008-09-09 Thread m_salman
Oh, it was much dumber thing than that. I had added the Main page, which had the panels, to the application object. So evey component was shared in the app. Pretty dumb. daniel.mfreitas wrote: Could you enlighten us on what the problem was so we know what to avoid in our own

Re: Wicket in Action

2008-09-09 Thread Eelco Hillenius
Cheers :-) On Tue, Sep 9, 2008 at 2:34 AM, Jörn Zaefferer [EMAIL PROTECTED] wrote: My copy of Wicket in Action just arrived - kudos to Martjin and Eelco! Great work! Jörn - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-09 Thread Matej Knopp
The link that shows the modal window must be AjaxButton/SubmitLink. -Matej On Tue, Sep 9, 2008 at 11:20 PM, German Morales [EMAIL PROTECTED] wrote: Hi all, I've a problem with Forms and ModalWindows. I have this stuff: -a page with a main Form (the only one that is rendered as an HTML form

https flips to http

2008-09-09 Thread insom
First, thanks to all of you who have helped me out as I've worked through my first Wicket project. The site is finally finished and we're in the process of deploying it to our live servers. However, there's one last hitch. When I go to our URL, https://test.domain.edu/myapp/, the browser goes to

RE: listview

2008-09-09 Thread Patel, Sanjay
Thanks. This is what I want. -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2008 5:01 PM To: users@wicket.apache.org Subject: Re: listview use a gridview -igor On Tue, Sep 9, 2008 at 1:30 PM, Patel, Sanjay [EMAIL PROTECTED] wrote: Hi,

RE: https flips to http

2008-09-09 Thread Jeremy Thomerson
Wicket uses relative URLs, so at first guess, I'd think it was something else. Start with something like Firefox plugin Tamper Data and see what redirects are happening. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: insom

Re: newbie problem witch wicket...

2008-09-09 Thread Jeremy Thomerson
How about something like: public MyBookmarkableSimpleSignOnPage(PageParameters parameters) { super(parameters); String username = parameters.getString(un); String password = parameters.getString(pw); signIn(username, password); throw new

Re: Form values lost in combination of Forms plus ModalWindow

2008-09-09 Thread German Morales
Hi Matej, Thanks for the answer. I have an AjaxSubmitLink both for opening and closing the modal window. Should that make any trouble? In both cases i have data to persist, so it must be a .*Submit.* component. Also, my problem happens when closing the window, not when opening it. I summarize

ajax dropdowns

2008-09-09 Thread Scott Swank
Possible bug in Wicket 1.3.4 JavaScript I am seeing a focus issue when an AjaxFormComponentUpdatingBehavior(onblur) is fired from a form component and the next form component is a drop down. When I then tab out of the drop down I go to the 1st item on the page rather than the next item on the

url-escaping is not undone for requestcodingstrategy

2008-09-09 Thread Ann Baert
When a resourceUrl with special characters is invoked by Wicket. Wicket does not read it correctly. I've made a jira issue with an example: https://issues.apache.org/jira/browse/WICKET-1825 -- View this message in context: