Re: Modern javascript/html code generation, is Wicket the only one?

2013-12-03 Thread Paul Bors
Take your pick: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks#Java On Tue, Dec 3, 2013 at 10:10 AM, Brown, Berlin [PRI-1PP] berlin.br...@primerica.com wrote: This is more a general question. Is wicket pretty much the only mainstream java framework that generates

Re: Problem with SVG Rendering with Wicket 6.5.0

2013-12-03 Thread Paul Bors
. Once you created it, reproduce your problem in the newly created project with the least code possible and attach it to a Jira ticket at: https://issues.apache.org/jira/browse/WICKET ~ Thank you, Paul Bors On Wed, Nov 27, 2013 at 8:53 AM, SUBRA this.su...@gmail.com wrote: Sorry i didn't have

Re: Running a TestNG test suite from a wicket page

2013-12-02 Thread Paul Bors
Have you considered Mockito to mock your POJOs for the test data and methods? I use that in conjunction with TestNG and then start the wicket app providing it mocked DAOs and POJOs. On Sun, Dec 1, 2013 at 5:23 PM, Martin Dietze d...@fh-wedel.de wrote: On Sun, December 01, 2013, Martin Grigorov

Re: Newbie question: startup wicketapplication with loginform

2013-12-02 Thread Paul Bors
See also the Wicket Guide: http://wicket.apache.org/guide/guide/chapter3.html#chapter3_3 On Tue, Nov 26, 2013 at 10:36 AM, Seçil Aydın techlove...@gmail.com wrote: Hi, you can also view the below example code:

RE: DownloadLink and ProgressBar

2013-11-20 Thread Paul Bors
I would be wrong to show a 0% - 100% status bar. You might want to switch back to an indeterminate progress bar and do what Apple does during OS X install, show a label letting the user of your estimate such as Approximately 5 minutes remaining or Less than a minute remaning. ~ Thank you, Paul

RE: DownloadLink and ProgressBar

2013-11-18 Thread Paul Bors
How do you track the progress of your file generation in order to show the status bar? ~ Thank you, Paul Bors -Original Message- From: seyaw [mailto:seidy...@gmail.com] Sent: Monday, November 18, 2013 3:52 AM To: users@wicket.apache.org Subject: Re: DownloadLink and ProgressBar Hi

RE: Issue w/ Ajax and setting form containers visible in Deployment mode.

2013-11-07 Thread Paul Bors
mess up with your JavaScript on the page. ~ Thank you, Paul Bors -Original Message- From: Ben S [mailto:br...@yahoo.com] Sent: Thursday, November 07, 2013 1:53 PM To: users@wicket.apache.org; Ben S Subject: Re: Issue w/ Ajax and setting form containers visible in Deployment mode. Hi, I

RE: Problems with FileUploadFile and CompoundPropertyModels

2013-10-25 Thread Paul Bors
()); fileUpload.writeTo(file); } catch (IOException e) { e.printStackTrace(); } } }; ~ Thank you, Paul Bors -Original Message- From: Edgar Merino [mailto:donvo...@gmail.com] Sent

Re: How Does Checkbox Know To Store To My Data Object

2013-10-24 Thread Paul Bors
Read section 10.2 Models and JavaBeans of the Wicket Guide at: http://wicket.apache.org/guide/guide/chapter10.html#chapter10_2 From the code snipet you posted I take it your form or parent of your form has a CompondPropertyModel which must be feeding your checkbox. Either that, or you have a

RE: Browser Page Refresh Not Really Refreshing

2013-10-16 Thread Paul Bors
, Paul Bors -Original Message- From: dhongyt [mailto:davidhtr...@gmail.com] Sent: Wednesday, October 16, 2013 2:30 PM To: users@wicket.apache.org Subject: Re: Browser Page Refresh Not Really Refreshing I feel like there isn't a need for Javascript? Should a CRTL+R or an F5 already refresh

RE: Modifying model output to TextArea

2013-10-15 Thread Paul Bors
workflow. ~ Thank you, Paul Bors -Original Message- From: dgn [mailto:david_nei...@hms.harvard.edu] Sent: Tuesday, October 15, 2013 2:45 PM To: users@wicket.apache.org Subject: Modifying model output to TextArea I'm stumped in how to modify model output for redisplay on a web page after

RE: How to localize options in drop down.

2013-10-09 Thread Paul Bors
Unicode \u00E4 -- entry key=property.dateFällig ab./entry !-- ... (other entries) -- /properties You can write your own tool to convert your properties file to the XML format. ~ Thank you, Paul Bors -Original Message- From: Vit Rozkovec [mailto:rozkovec...@email.cz] Sent: Wednesday

Re: How to add component without html wicket:id?

2013-10-05 Thread Paul Bors
See also chapter 12 Displaying multiple items with repeaters of the Wicket Free Guide: http://wicket.apache.org/guide/ ~ Thank you, Paul C Bors On Oct 5, 2013, at 7:08, Francois Meillet francois.meil...@gmail.com wrote: You should read

Re: Refresh whole site with iframes

2013-10-05 Thread Paul Bors
Are all the frames running in the same wicket app? Or do you have a wicket app nested inside some other site? ~ Thank you, Paul C Bors On Oct 5, 2013, at 9:46, MartinoSuperman martinosuper...@live.nl wrote: Hi, I am using frames in Wicket in the website I am building.

Re: Refresh whole site with iframes

2013-10-05 Thread Paul Bors
So why use iFrames and not Panels? With Panels you don't have to worry about it because it's a single page at all times. With iFrames you could do it with JavaScript given all frames are hosted on the same domain: parent.location.assisgn(URL to login page); Where parent is the root window of

RE: How do I disable GZip compression in Wicket 6?

2013-10-01 Thread Paul Bors
Hey Karl, Would you kindly update the migration wiki page for the rest of us? ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Tuesday, October 01, 2013 10:20 AM To: users@wicket.apache.org Subject: Re: How do I disable GZip

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-30 Thread Paul Bors
is by reference. Thus no notification. On Mon, Sep 30, 2013 at 11:32 AM, Martin Grigorov mgrigo...@apache.orgwrote: I'll test this and let you know. On Sat, Sep 28, 2013 at 10:37 PM, Paul Bors p...@bors.ws wrote: Sorry for the delay, it's the weekend :) In our webapp we let

RE: Form Reset Problems

2013-09-30 Thread Paul Bors
I'll like to hear more about Richard's use-case as to me using Ajax to perform a form reset that could be done by the browser is a bit of an overkill. Unless some sort of a user workflow through the app happens in stages for which I would recommend using a Wizard. ~ Thank you, Paul Bors

RE: Form Reset Problems

2013-09-30 Thread Paul Bors
explicit in the UI. The last time I had to touch on the form field's input VS its model was to audit the user input as Hibernate's Envers didn't fit our services (which touched on too many entities at once and was harder to present in the UI to the system admin). ~ Thank you, Paul Bors

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-28 Thread Paul Bors
breakpoint on SessionEntry.valueUnbound() is not called either, unless explicitly through the Logout button which calls o.a.w.protocol.http.WebSession.get().invalidateNow(); This is what makes me think that going off the HttpSessionListener might be better. ~ Thank you, Paul Bors

RE: Bunch of Page Expired exceptions in Wicket 6.10.0

2013-09-27 Thread Paul Bors
store since it's always empty such as submitting a form twice in a row or using the back button in the browser. ~ Thank you, Paul Bors -Original Message- From: miguel [mailto:mig...@thedeanda.com] Sent: Friday, September 27, 2013 2:20 AM To: users@wicket.apache.org Subject: Re: Bunch

RE: Bunch of Page Expired exceptions in Wicket 6.10.0

2013-09-27 Thread Paul Bors
I so knew it! It also affects GlassFish v3.1.2.2 which I am using. Thanks again guys, I'll look into it from my end and see what GF team has to say about it. In the mid time, I'll go back to Wicket 6.10.0 and just register my own PageStoreManager. ~ Thank you, Paul Bors -Original

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-27 Thread Paul Bors
, but that'll really be a nice to have at this point. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Friday, September 27, 2013 11:04 AM To: users@wicket.apache.org Subject: RE: Bunch of Page Expired exceptions in Wicket 6.10.0 I so knew it! It also affects

RE: wicket + autowired annotation

2013-09-27 Thread Paul Bors
crate a service for yourself and inject it where needed in Wicket via @SpringBean. Then inside your service feel free to inject other Spring dependencies via Spring's native annotations. ~ Thank you, Paul Bors -Original Message- From: miguel [mailto:mig...@thedeanda.com] Sent: Friday

RE: How to turn off email delivery without unsubscribe?

2013-09-27 Thread Paul Bors
See http://wicket.apache.org/help/email.html and follow the Unsubscribe link. From then on, log in to Nabble with your account to read the list content. ~ Thank you, Paul Bors -Original Message- From: Ben Stover [mailto:bxsto...@yahoo.co.uk] Sent: Friday, September 27, 2013 2:54 PM

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-27 Thread Paul Bors
Created https://java.net/jira/browse/GLASSFISH-20828 HttpSessionBindingListener.valueUnbound() is always called right after valueBound() with a null HttpSessionBindingEvent.getValue() Let's see what becomes of this... - ~ Thank you, p...@bors.ws -- View this message in context:

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-27 Thread Paul Bors
HttpSessionListener instead is cleaner. ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Friday, September 27, 2013 4:09 PM To: users@wicket.apache.org Cc: d...@wicket.apache.org Subject: Re: Bunch of Page Expired exceptions in Wicket 6.10.0

RE: Bunch of Page Expired exceptions in Wicket 6.10.0 (GlassFish v3 and v4)

2013-09-27 Thread Paul Bors
I take that back, the new implementation breaks the session timeout. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Friday, September 27, 2013 5:51 PM To: users@wicket.apache.org Cc: d...@wicket.apache.org Subject: RE: Bunch of Page Expired

RE: Bunch of Page Expired exceptions in Wicket 6.10.0

2013-09-26 Thread Paul Bors
, September 26, 2013 3:13 AM To: users@wicket.apache.org Cc: Paul Bors Subject: Re: Bunch of Page Expired exceptions in Wicket 6.10.0 Hi, DEBUG: 09/25 17:35:40.956: PageAccessSynchronizer: http-thread-pool-5311(4) acquired lock to page 53 DEBUG: 09/25 17:35:40.957: DiskDataStore: Removing data

RE: Bunch of Page Expired exceptions in Wicket 6.10.0

2013-09-26 Thread Paul Bors
:) ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, September 26, 2013 5:01 PM To: users@wicket.apache.org Cc: Sven Meier Subject: Re: Bunch of Page Expired exceptions in Wicket 6.10.0 The problem seems to be caused by http

Bunch of Page Expired exceptions in Wicket 6.10.0

2013-09-25 Thread Paul Bors
Hey guys, Just wondering what could be the cause of the many page expired exceptions I am running into with this webapp whenever the user changes tabs and then selects the browser's Back button or whenever the user downloads a resource via a button and the form is being submitted a second

RE: Wicket merchandise

2013-09-19 Thread Paul Bors
+1 Andrea Del Bene (Great work on his book) +1 Martin Grigorov (Awesome quick reply to all of us Wicket Users on the mailing list and releases!) ~ Thank you, Paul Bors -Original Message- From: nino martinez wael [mailto:nino.martinez.w...@gmail.com] Sent: Wednesday, September 18, 2013

RE: How to wrap a Data Table or other repeater within another repeater in Wicket?

2013-09-17 Thread Paul Bors
Wicket is a component driver framework. All you have to do is isolate your details in a panel and add it instead of a label to the parent data table. ~ Thank you, Paul Bors -Original Message- From: Barry Wadsworth [mailto:barryawadswo...@gmail.com] Sent: Tuesday, September 17, 2013 3

RE: Cancel Button Conundrum

2013-09-10 Thread Paul Bors
You add two different submit buttons in the HTML and label them different. Then for each one you run the different save business logic inside their own onSubmit() methods. There is nothing preventing you from submitting a form from different submit buttons. ~ Thank you, Paul Bors

Re: Internal frame in Wicket Page to external website

2013-09-04 Thread Paul Bors
Is your iframe src always the same? If so why do you need to use Java code for it when plain HTML would suffice? If it's not, then use the InlineFrame and override the CharSequence getURL() if you want to generate your own external URL. ~ Thank you, Paul Bors On Fri, Aug 23, 2013 at 2:09 PM

RE: how to switch off sort?

2013-08-27 Thread Paul Bors
What happens when you give it a null sortProperty? ~ Thank you, Paul Bors -Original Message- From: Boris Brinza [mailto:boris.bri...@htsolution.sk] Sent: Tuesday, August 27, 2013 5:48 PM To: users@wicket.apache.org Subject: how to switch off sort? Hello is it possible to switch off

RE: Going from one web app to another simulating login action

2013-08-22 Thread Paul Bors
the login page of your webapp all together. Isn't this the kind of problems that SSO is designed to solve? ~ Thank you, Paul Bors -Original Message- From: LauraZ [mailto:zabaleta.la...@gmail.com] Sent: Thursday, August 22, 2013 2:19 PM To: users@wicket.apache.org Subject: RE: Going from one

RE: Going from one web app to another simulating login action

2013-08-22 Thread Paul Bors
Or are you simply trying to implement the Linux su command here between two web apps (have an admin choose what user to login under the second webapp)? Maybe this can help you? http://docs.oracle.com/cd/E27559_01/dev.1112/e27134/impersonation.htm Still based on SSO. ~ Thank you, Paul Bors

RE: Multi select transfer widget

2013-08-21 Thread Paul Bors
You mean a multi select version of this? http://www.wicket-library.com/wicket-examples/ajax/choice ~ Thank you, Paul Bors -Original Message- From: Michael Chandler [mailto:michael.chand...@onassignment.com] Sent: Wednesday, August 21, 2013 5:08 PM To: users@wicket.apache.org Subject

RE: Going from one web app to another simulating login action

2013-08-16 Thread Paul Bors
See this older thread: http://apache-wicket.1842946.n4.nabble.com/Single-sign-on-SSO-for-two-Wicket Application-td4620516.html ~ Thank you, Paul Bors -Original Message- From: LauraZ [mailto:zabaleta.la...@gmail.com] Sent: Friday, August 16, 2013 1:08 PM To: users@wicket.apache.org

RE: Breadcrumbs in TabbedPanel

2013-08-16 Thread Paul Bors
Well, if you got foo / bar / foo and you don't like the default behavior, extend the class and override it and then use your implementation J ~ Thank you, Paul Bors From: Vignesh Palanisamy [mailto:vign...@mcruncher.com] Sent: Wednesday, August 14, 2013 11:26 PM To: users

Dead link on Wicket's home page

2013-08-14 Thread Paul Bors
On the home page the Apache Wicket 6.9.1 released http://wicket.apache.org/2013/07/10/wicket-6.9.1-released+copy.html link points to http://wicket.apache.org/2013/07/10/wicket-6.9.1-released+copy.html which is a 404. ~ Thank you, Paul Bors

RE: Updating form fields on dropdown selection change

2013-08-14 Thread Paul Bors
the next version of Wicket comes along and the form processing changes? You'll have to re-implement your panels. ~ Thank you, Paul Bors -Original Message- From: Lucio Crusca [mailto:lu...@sulweb.org] Sent: Wednesday, August 14, 2013 8:52 AM To: users@wicket.apache.org Subject: Updating

RE: Breadcrumbs in TabbedPanel

2013-08-14 Thread Paul Bors
/extensi ons/breadcrumb/IBreadCrumbModel.html#getActive() Try getting a hold to an IBreadCrumbModel reference and from your individual tab panel set the active participant. ~ Thank you, Paul Bors -Original Message- From: Vignesh Palanisamy [mailto:vign...@mcruncher.com] Sent: Wednesday

RE: Forcing Form Validation from another Form's onValidate()

2013-08-14 Thread Paul Bors
Have you checked the Wiki pages? https://cwiki.apache.org/confluence/display/WICKET/Nested+Forms Which use-case are your referring to again? ~ Thank you, Paul Bors -Original Message- From: eugenebalt [mailto:eugeneb...@yahoo.com] Sent: Wednesday, August 14, 2013 2:20 PM To: users

RE: Updating form fields on dropdown selection change

2013-08-14 Thread Paul Bors
that it has an ID attribute for JQuery to find it. If you don't, Wicket will remind you via a runtime exception :) ~ Thank you, Paul Bors -Original Message- From: Lucio Crusca [mailto:lu...@sulweb.org] Sent: Wednesday, August 14, 2013 2:37 PM To: users@wicket.apache.org Subject: RE

RE: Forcing Form Validation from another Form's onValidate()

2013-08-14 Thread Paul Bors
/quickstart.html ~ Thank you, Paul Bors -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Forcing-Form-Validation-from-anot her-Form-s-onValidate-tp4660895p4660905.html Sent from the Users forum mailing list archive at Nabble.com

RE: Wicket Charts

2013-08-06 Thread Paul Bors
Also see wicked-charts and perhaps Decebal's dashboards: https://code.google.com/p/wicket-continuous-calendar/#Sugested_projects_of_i nterest ~ Thank you, Paul Bors -Original Message- From: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Sent: Monday, August 05, 2013 5:38

RE: Documentation for RequestLogger

2013-08-06 Thread Paul Bors
/books/freeguide.html ~ Thank you, Paul Bors -Original Message- From: Jens Jahnke [mailto:jan0...@gmx.net] Sent: Tuesday, August 06, 2013 4:44 AM To: users@wicket.apache.org Subject: Documentation for RequestLogger Hi, I'd like to know if there is an official documentation

RE: replace content of div with generated html

2013-08-06 Thread Paul Bors
Grab a wicket handler to the parent and then call ParentComponent.repaceWith(ChildComponent) method: http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/Compone nt.html#replaceWith(org.apache.wicket.Component) ~ Thank you, Paul Bors -Original Message- From: Boris

RE: Wicket Content Parameters

2013-07-31 Thread Paul Bors
smaller files per page or panel. ~ Thank you, Paul Bors -Original Message- From: Tom Norton [mailto:tomwnorton.mailing.li...@gmail.com] Sent: Wednesday, July 31, 2013 11:45 AM To: users@wicket.apache.org Subject: Wicket Content Parameters We just received our content back from our

RE: Generating spreadsheet to send to Client fails in 1.6

2013-07-31 Thread Paul Bors
I think you should also upgrade your Apache POI version and switch to .xlsx since the older format has a limit of about 65K records. Outside of that I suggest you use an IResourceStream instead of writing to your web response. Personally I use csv comma delimited since I don't do any magic beside

RE: Wicket Content Parameters

2013-07-31 Thread Paul Bors
I won't mind taking yours and adding my tests to it with an option to fail the build. I like failing the build to grab people's attention and also generating an e-mail report so we all know what's missing :) ~ Thank you, Paul Bors -Original Message- From: Cedric Gatay [mailto:gata

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
with Wicket to get up to speed with the basic features. ~ Thank you, Paul Bors -Original Message- From: shimin_q [mailto:smq...@hotmail.com] Sent: Wednesday, July 31, 2013 3:20 PM To: users@wicket.apache.org Subject: How to add line breaks in the summary text of Wizard properties file Hi, I am

RE: Generating spreadsheet to send to Client fails in 1.6

2013-07-31 Thread Paul Bors
. You have to ask yourself, are you going to set any cookies or a buffer along with your spreadsheet download? :) ~ Thank you, Paul Bors -Original Message- From: BrianWilliams [mailto:brianwilliams33...@yahoo.com] Sent: Wednesday, July 31, 2013 4:43 PM To: users@wicket.apache.org

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
/wicket:extend /html EditUserGroupPage#SetUsersStep.html html xmlns:wicket=http://wicket.apache.org; wicket:panel span wicket:id=editGroupMembers[Users Palette]/span /wicket:panel /html ~ Thank you, Paul Bors -Original Message- From: shimin_q [mailto:smq

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
So in your case I would just change my CSS and add a wicketExtensionsWizardHeader with the width you want :) ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Wednesday, July 31, 2013 6:34 PM To: users@wicket.apache.org Subject: RE: How to add line

Re: Ajax Refreshing Issue

2013-07-30 Thread Paul Bors
Have you tried it outside of Eclipse? Create yourself a quick start and run it from the console. Also that stack trace could be usefull. - ~ Thank you, p...@bors.ws -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-Refreshing-Issue-tp4660289p4660562.html

RE: Form questions

2013-07-24 Thread Paul Bors
models and forms of the Wicket Free Guide at (it will save you lots of time!): http://wicket.apache.org/learn/books/freeguide.html ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Tuesday, July 23, 2013 4:39 PM To: users

Re: How properly set locale on application startup

2013-07-23 Thread Paul Bors
Maybe you don't have the language pack for the locale you set hence Wicket defaults to the english langauge pack? Get yourself familiar with Chapter 12 Internationalization with Wicket of the Wicket Free Guide http://wicket.apache.org/learn/books/freeguide.html - ~ Thank you,

RE: Reading placeholder parameters in mounted resources

2013-07-23 Thread Paul Bors
For direction of creating a quick start see: http://wicket.apache.org/start/quickstart.html -Original Message- From: Andrew Schetinin [mailto:ascheti...@gmail.com] Sent: Tuesday, July 23, 2013 3:58 PM To: users@wicket.apache.org Subject: Re: Reading placeholder parameters in mounted

RE: How properly set locale on application startup

2013-07-23 Thread Paul Bors
When in doubt... clear your cache :) ~ Thank you, Paul Bors -Original Message- From: meduolis [mailto:meduol...@gmail.com] Sent: Tuesday, July 23, 2013 4:14 PM To: users@wicket.apache.org Subject: Re: How properly set locale on application startup Thanks for reply, it was my browser

RE: Form questions

2013-07-19 Thread Paul Bors
object from your persistence layer. ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Friday, July 19, 2013 11:24 AM To: users@wicket.apache.org Subject: Re: Form questions Paul, Thanks. I get that and understand how the Model happens

RE: how to add select/deselect all checkbox to wicket DataTable

2013-07-18 Thread Paul Bors
The code is not on any repo outside of myco's SVN repo. As I mentioned, it's based on a LabeledAjaxLinkPanel which is nothing but a AjaxLink with a label so you'd have to refactor some of it. Anyhow, here's the Java code: package

RE: Form questions

2013-07-18 Thread Paul Bors
the cnavUrl.getUrl() value. What do you get when you call new MorphiaCnavUrl().getUrl()? That's what should appear in the TextField when you first load the page (normally read form the DB). ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Thursday, July

RE: FeedbackPanel customization

2013-07-17 Thread Paul Bors
{ background-color: lightgreen; border: 1px solid darkgreen; } ~ Thank you, Paul Bors -Original Message- From: Sebastien [mailto:seb...@gmail.com] Sent: Wednesday, July 17, 2013 5:21 PM To: users@wicket.apache.org Subject: Re: FeedbackPanel customization Hi Daniel, In such a case, you

RE: Form questions

2013-07-16 Thread Paul Bors
/ Also available from under the Learn section as the Books link on the right side navigation section on Wicket's home page at: http://wicket.apache.org/learn/books/ ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Tuesday, July 16, 2013 7:13

RE: how to add select/deselect all checkbox to wicket DataTable

2013-07-15 Thread Paul Bors
share it with the WicketStuff's extension project if one does not already exits. ~ Thank you, Paul Bors -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Monday, July 15, 2013 10:38 AM To: users@wicket.apache.org Subject: Re: how to add select/deselect all checkbox

RE: Upgrade to wicket 6 giving blank page in IE 9

2013-07-15 Thread Paul Bors
This has nothing to do with Wicket, is just that IE likes to be different and mess things up almost always :) Read about the Defining document compatibility on MSDN: http://msdn.microsoft.com/en-us/library/cc288325(v=vs.85).aspx And then pay attention to the links at the bottom of the article: *

RE: Form questions

2013-07-15 Thread Paul Bors
and models in particular. In short... an empty form field has a null model object (or empty string) and to pre-populate have your POJO that you use as a model object have its instance variables populated with the values you want (from a db or etc). ~ Thank you, Paul Bors -Original Message- From

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
Why not persist to a db via Hibernate and Spring per say? Saving all this to the session would slow down your web server considerably. You can also use cookies if you'd like, but that's not going to work if the user has them turned off. ~ Thank you, Paul Bors -Original Message- From

RE: Mutliple forms - single login popup

2013-07-13 Thread Paul Bors
, if valid then show your button. ~ Thank you, Paul Bors -Original Message- From: Jeff Schneller [mailto:j...@mootus.com] Sent: Sunday, July 14, 2013 12:13 AM To: users@wicket.apache.org Subject: Mutliple forms - single login popup Using 1.5.x. I have multiple forms (minimum of 2

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
/apidocs/6.x/org/apache/wicket/markup/ht ml/panel/class-use/Panel.html#org.apache.wicket.devutils.debugbar ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Sunday, July 14, 2013 1:11 AM To: users@wicket.apache.org Subject: RE: Recommendation service

RE: Recommendation service for form components

2013-07-13 Thread Paul Bors
to copy the model object value for each form submission. ~ Thank you, Paul Bors -Original Message- From: Илья Нарыжный [mailto:phan...@ydn.ru] Sent: Sunday, July 14, 2013 1:31 AM To: users@wicket.apache.org Subject: Re: Recommendation service for form components It's not a problem. I

RE: Problem with swapping panels using Ajax links

2013-07-12 Thread Paul Bors
to the Ajax target the parent of the panel that was switched out? target.addComponent(editPanel.getParent()); ~ Thank you, Paul Bors -Original Message- From: Chris Whitcomb [mailto:cwhitc...@osc.state.ny.us] Sent: Friday, July 12, 2013 7:30 AM To: users@wicket.apache.org Subject: RE: Problem

RE: Upgrade to wicket 6 giving blank page in IE 9

2013-07-11 Thread Paul Bors
the following to all of your pages: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; See if that does the magic for you. ~ Thank you, Paul Bors -Original Message- From: prasad.bhandagi [mailto:prasad.bhand...@marsh.com] Sent: Thursday, July 11, 2013 4:44

RE: DateTextField, image is displayed on line below

2013-07-11 Thread Paul Bors
You do realize this is not a Wicket direct question but a CSS one right? I would try running your code through one of the many tutorials on say w3schools.com: http://www.w3schools.com/css/ Good luck! -Original Message- From: Delange [mailto:delan...@telfort.nl] Sent: Thursday, July 11,

RE: Problem with swapping panels using Ajax links

2013-07-11 Thread Paul Bors
What do you mean by swapping panels? Are you using Component.replace()? And why would you when you could do all this in-line (the same way as the new version of Jira does it)? Try this live example: 1) Log on to http://Wicket.Apache.org 2) From under the Learn left navigation menu select the

RE: DateTextField, image is displayed on line below

2013-07-11 Thread Paul Bors
Tell you what, save the HTML file in your IE9 and let us have a look at it. You made me curious now :) ~ Thank you, Paul Bors -Original Message- From: Dieter Tremel [mailto:tre...@tremel-computer.de] Sent: Friday, July 12, 2013 12:24 AM To: users@wicket.apache.org Subject: Re

RE: FormComponent independent from the Model/Model object

2013-07-09 Thread Paul Bors
)); add(form); } } ~ Thank you, Paul Bors -Original Message- From: Joachim Schrod [mailto:jsch...@acm.org] Sent: Tuesday, July 09, 2013 6:27 PM To: users@wicket.apache.org Subject: Re: FormComponent independent from the Model/Model object Dmitriy Neretin wrote: Hi everyone, I

RE: why is getHomePage called multiple times?

2013-07-08 Thread Paul Bors
://blog.redfin.com/devblog/2009/09/how_to_set_up_hot_code_replacement_wi th_tomcat_and_eclipse.html http://ducquoc.wordpress.com/2010/11/06/eclipse-wtp-tomcat-hot-deploy/ ~ Thank you, Paul Bors -Original Message- From: dev [mailto:your@gmail.com] Sent: Monday, July 08, 2013 11:38 AM To: users

Re: ajax update page in iframe

2013-07-08 Thread Paul Bors
Well, have you tried updating the iframe by itself? Use a timer event and see if that works fist. Then try to write the JavaScript which would refresh the iframe from within the parent HTML doc. Now remember, as far as I know those two pages are equivalent of having one user session with the

Re: Updating forms model causes panel to lose model

2013-07-04 Thread Paul Bors
Well if its a CPM and you error is: Caused by: java.lang.RuntimeException: An error occurred while getting the model object for Component: [AccountInfoPanel [Component id = accountInfoPanel, page = com.trifork.pengeplan.web.app.secure.transactions.AddTransactionPage, path =

RE: JQueryResourceReference.INSTANCE has private access

2013-07-02 Thread Paul Bors
Wicket is Open Source, create a pull request: https://github.com/apache/wicket/tree/wicket-6.x :) -Original Message- From: francois meillet [mailto:francois.meil...@gmail.com] Sent: Tuesday, July 02, 2013 8:00 AM To: users@wicket.apache.org Subject: Re: JQueryResourceReference.INSTANCE

RE: wicket-cdi 6.9.0 on Glassfish 4: Warning WELD-001529

2013-07-02 Thread Paul Bors
WARNING: Class 'javax.ejb.PostActivate' not found, interception based on it is not enabled I'm still on GlassFish v3.1.2.2 but with the new IE-10 I might have to upgrade as well. Let me know how it goes for you :) ~ Thank you, Paul Bors -Original Message- From: Dieter Tremel [mailto:tre

RE: wickettester and wizard next step submit response

2013-07-02 Thread Paul Bors
? to : not to)); Assert.assertTrue(getWizardFinishButton(tester, wizardId) .isEnabled() == finish, String.format(Finish button was expected %s be enabled!, finish ? to : not to)); } ~ Thank you, Paul Bors -Original Message- From: ludo_xiv [mailto:ludo_...@post.sk] Sent

RE: Save place to set http response status?

2013-07-02 Thread Paul Bors
/AccessDeniedPage.html And its source code as part of the wicket-core module: https://github.com/apache/wicket/blob/build/wicket-6.9.0/wicket-core/src/mai n/java/org/apache/wicket/markup/html/pages/AccessDeniedPage.java Or simply pull up its call hierarchy in your IDE. ~ Thank you, Paul Bors -Original

Re: Select AjaxCheckbox from Another AjaxCheckbox inside ListView

2013-06-28 Thread Paul Bors
I have the same use case only a lot more complicated (nested list views in different panels). The easier way to auto-select or auto-deselect (aka change the model object) is to share a CompoundPropertyModel across your component hierarchy. In this way a single component can interact with its

Re: Is it possible to change MarkupStream ?

2013-06-26 Thread Paul Bors
Let me guess, you used IE9 or IE10 in what web app server? GlassFish by any chance? On Tue, Jun 25, 2013 at 7:36 AM, heikki tropic...@gmail.com wrote: hi, the stacktrace is here: http://pastebin.com/Kgba3zxF. I noticed I did not supply the code of getStringFromInputStream() -- I took it

Re: Alternatives for Page.componentChanged(Component, MarkupContainer) - Wicket 6.5.0

2013-06-26 Thread Paul Bors
I'm not sure I understand your question. All that method does is to set the dirty flag on the Page so a new instance of the page would end up in your page store if any component on the page changed. What are you trying to do? On Tue, Jun 25, 2013 at 12:36 AM, Rakesh A

Re: Graying Out Disabled Buttons/Controls

2013-06-26 Thread Paul Bors
You need to make sure all of your component parents are also visible. Remeber that wicket uses a component tree (you can see it in your DebugToolbar if you add it to your pages). The inspector looks something like this:

RE: Graying Out Disabled Buttons/Controls

2013-06-26 Thread Paul Bors
components should be inside a form (even w/o a wicket:id) otherwise the browser might choke on it... ~ Thank you, Paul Bors -Original Message- From: Richard W. Adams [mailto:rwada...@up.com] Sent: Wednesday, June 26, 2013 9:42 AM To: users@wicket.apache.org Subject: Re: Graying Out Disabled

RE: Inter-Page Communication in Wicket

2013-06-26 Thread Paul Bors
I would store such data in the user's session or persist it and read it from the other page. ~ Thank you, Paul Bors -Original Message- From: eugenebalt [mailto:eugeneb...@yahoo.com] Sent: Wednesday, June 26, 2013 10:48 AM To: users@wicket.apache.org Subject: Inter-Page Communication

RE: Inter-Page Communication in Wicket

2013-06-26 Thread Paul Bors
. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Wednesday, June 26, 2013 10:51 AM To: users@wicket.apache.org Subject: RE: Inter-Page Communication in Wicket I would store such data in the user's session or persist it and read it from the other page

RE: Graying Out Disabled Buttons/Controls

2013-06-26 Thread Paul Bors
Create a quick-start attach it to your e-mail and we'll look it over. Feel free to use drop box or some other file sharing server. You're doing something wrong... ~ Thank you, Paul Bors -Original Message- From: Richard W. Adams [mailto:rwada...@up.com] Sent: Wednesday, June 26, 2013

RE: wicket wiki down?

2013-06-24 Thread Paul Bors
Last Sat someone noticed this and was asked to: Use https://cwiki.apache.org/confluence/display/WICKET Try searching the mailing list prior to posting. ~ Thank you, Paul Bors -Original Message- From: Gabriel Landon [mailto:glan...@piti.pf] Sent: Monday, June 24, 2013 1:52 PM

RE: Point Form action to Page

2013-06-24 Thread Paul Bors
) { ... } And this is the onSubmit of my form: setResponsePage(new AgentInformationPage(form.getModelObject(), 50); ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Monday, June 24, 2013 4:11 PM To: users@wicket.apache.org Subject: Re: Point Form action

RE: Customizing links in Paging

2013-06-24 Thread Paul Bors
boolean isShortenVersion() { return false; } } ~ Thank you, Paul Bors -Original Message- From: Daniel Watrous [mailto:dwmaill...@gmail.com] Sent: Monday, June 24, 2013 4:15 PM To: users@wicket.apache.org Subject: Customizing links in Paging Hello, I'm using the Paging

Re: Point Form action to Page

2013-06-22 Thread Paul Bors
at 3:51 PM, Paul Bors p...@bors.ws wrote: class SearchPanel ... { ... add(id, new SomeButtonSubmitLinkOrForm { @Override public void onSubmit() { // your biz logic PageParameter pageParameter = new PageParameters(); pageParameters.add(searchFilter

RE: Set the Null option manually in a NullValid Dropdown

2013-06-21 Thread Paul Bors
: dropDownChoice = new DropDownChoiceM(LabeledFormField.FIELD_ID, model, choices) { @Override protected String getNullValidKey() { return Your.Own.Language.Pack.Key; } }; ~ Thank you, Paul Bors -Original Message- From: eugenebalt [mailto:eugeneb...@yahoo.com] Sent

<    1   2   3   4   5   >