RE: Validating form components in a refreshing view

2012-07-17 Thread Paul Bors
() | - - - - - - - - - - - - - - - - - - - - - - - - - - - | | --- I recommend reading Wicket in Action (http://manning.com/dashorst/) or any other books listed on Wicket's website (http://wicket.apache.org/learn/books/). ~ Thank you, Paul Bors | Software Engineer | Knoa Software | 5 Union Square West, New York , NY 10003 | O: 212-807-9608 | www.knoa.com

Update JavaDoc for AbstractChoice#setType(java.lang.Class)

2012-07-17 Thread Paul Bors
%2529AbstractSingleSelectChoiceusesemptyStringasvaluefordefaultchoice ~ Thank you, Paul Bors - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

RE: How to Logout

2012-07-18 Thread Paul Bors
); } }; ~ Thank you, Paul Bors -Original Message- From: Sébastien Gautrin [mailto:sgaut...@telemetris.com] Sent: Wednesday, July 18, 2012 12:43 PM To: users@wicket.apache.org Subject: Re: How to Logout Hi, The LogoutPage in the application I work on is quite simple: - first we invalidate

RE: [1.5] [6.0] dynamically named CSS, JS images resources

2012-07-19 Thread Paul Bors
to change the HTML document's language in a similar manner only it will not be part of the component path for pages that extend BasePage. Here, getUserLocale() returns the Locale of the logged-in user whose ID is stored the Session. ~ Thank you, Paul Bors | Software Engineer | Knoa Software | 5

RE: I think it's time for a new book.... Igor and Co ?

2012-07-22 Thread Paul Bors
I second improving the current code documentation as I recently migrated a mid-size project to Wicket 1.5.7 from 1.3.7 and I've notice myself having to dig into the framework implementation more often than normal because of the weak or at times wrong JavaDocs. I won't mind submitting small

RE: Wicket Layout Design

2012-07-23 Thread Paul Bors
-images-resources-tc4650635.html#a4650638 ~ Thank you, Paul Bors -Original Message- From: divad91 [mailto:diva...@hotmail.com] Sent: Monday, July 23, 2012 12:40 PM To: users@wicket.apache.org Subject: Re: Wicket Layout Design Thanks Jesse for your reply. The only drawback of this method

RE: I think it's time for a new book.... Igor and Co ?

2012-07-23 Thread Paul Bors
Thanks Martin, That's quite helpful, I'll sign up today :) ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Monday, July 23, 2012 3:15 AM To: users@wicket.apache.org Subject: Re: I think it's time for a new book Igor and Co ? Hi

RE: Where to add javascript in html pages which follow inheritance relationship.

2012-07-31 Thread Paul Bors
From what I remember wicket:head/ is the way to go! https://cwiki.apache.org/WICKET/wickets-xhtml-tags.html#Wicket%2527sXHTMLtag s-Elementwicket%253Ahead I believe this tag will appends what its surrounding to the bottom of already existing head tag contents on the page. For your child page you

RE: Where to add javascript in html pages which follow inheritance relationship.

2012-08-01 Thread Paul Bors
Well, it appears that your Page2.html and Page3.html are base pages (root classes to extend from) since you used wicket:child / (something will extend from those pages). Thus your hierarchy tree would look like: Page2.html (root) Page1.html (child: if you extend Page2) Page3.html (root)

RE: Boolean DropDownChoice

2012-08-01 Thread Paul Bors
Instead of going to the extent of overriding a class because your model value is not updated, why not fix the problem? Take a look at the component reference wicket-example project: http://www.wicket-library.com/wicket-examples/compref/ More precisely at the DropDownChoice:

RE: Repeating TextFields

2012-08-01 Thread Paul Bors
I use DataTable and add a new object to its model. Another thing I do is to allow for an edit button that would turn the entire row of a DataTable into the appropriate form fields. For a visual see the Editable tree table from wicket's examples at: http://www.wicket-library.com/wicket

Re: Redirecting from Ajax onSubmit

2012-08-02 Thread Paul Bors
Can't you simply get away with calling setResponsePage()? ~ Thank you, Paul C Bors On Aug 1, 2012, at 20:17, vinitty vini...@gmail.com wrote: I am trying to do the redirection from AjaxSubmitLink onSubmit method using this

Re: urgent-help.. how to click a specific tree node at the default

2012-08-05 Thread Paul Bors
See the Wicket Ajax examples section on Tree and Table: http://www.wicket-library.com/wicket-examples/ajax/ Tree and TreeTable: shows ajax tree and ajax tree table. ~ Thank you, Paul C Bors On Aug 4, 2012, at 23:52, swwa...@tsmc.com wrote: Hello: I am new to wicket..please help to

RE: dynamic control of location of panels on page

2012-08-07 Thread Paul Bors
/Apache_Velocity This is the Wicket project on it: http://wicket.apache.org/learn/projects/velocity.html ~ Thank you, Paul Bors -Original Message- From: oggie [mailto:gog...@gmail.com] Sent: Tuesday, August 07, 2012 4:01 PM To: users@wicket.apache.org Subject: dynamic control of location

RE: How to display a grid with empty cells

2012-08-09 Thread Paul Bors
Make use of the EmptyPanel class for the null or empty models. You could also simply call setVisible(false) on your component if you can hide it all together. http://wicket.apache.org/apidocs/1.4/org/apache/wicket/markup/html/panel/Emp tyPanel.html ~ Thank you, Paul Bors -Original Message

RE: How to update the treetable

2012-08-10 Thread Paul Bors
you, Paul Bors -Original Message- From: lxw_first [mailto:lxw_fi...@hotmail.com] Sent: Friday, August 10, 2012 3:38 AM To: users@wicket.apache.org Subject: How to update the treetable I created a treetable with a treemodel based on database schema. I am trying to refresh the treetable so

RE: Multi row Tabs

2012-08-10 Thread Paul Bors
this: div.verticalTabpanel div.tab-row li.selected { float: top; ... } One class sets the CSS of the main panel to either horizontalTabpanel or verticalTabpanel. ~ Thank you, Paul Bors -Original Message- From: Valery Gorbunov [mailto:valery.gorbu...@hys-enterprise.com] Sent: Friday

RE: RadioGroup

2012-08-11 Thread Paul Bors
a wicket:container tag. Same concept applies to the CheckGroup and Check, not to be confused with CheckBox. Hope that helps! ~ Thank you, Paul Bors PS: Since Wicket is open source, you can download those projects including wicket-examples and run them locally on your computer. See the Provide

RE: Searching for new experience with wicket

2012-08-13 Thread Paul Bors
Also read the articles on http://wicket.apache.org from under the Contribute left side section :) ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Monday, August 13, 2012 11:52 AM To: users@wicket.apache.org Subject: Re: Searching

RE: Basic JUnit Test

2012-08-13 Thread Paul Bors
unit tests I use those two methods extensively as I would need to know both the component path in the tree and the expected output or the last response. There are plenty of other helper methods there as well. ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov

RE: Generic search form/panel implementation

2012-08-13 Thread Paul Bors
this as an interface and have the client code implement it form different forms and pages, I think is doable. ~ Thank you, Paul Bors -Original Message- From: nunofaria11 [mailto:nunofari...@gmail.com] Sent: Monday, August 13, 2012 4:05 AM To: users@wicket.apache.org Subject: Generic search

RE: how to get HttpServletRequest in My Application class

2012-08-13 Thread Paul Bors
For your reference also see: https://cwiki.apache.org/WICKET/getting-a-url-for-display.html ~ Thank you, Paul Bors -Original Message- From: wicket user [mailto:samd...@live.com] Sent: Monday, August 13, 2012 1:07 PM To: users@wicket.apache.org Subject: Re: how to get

RE: how to get HttpServletRequest in My Application class

2012-08-13 Thread Paul Bors
of Wicket 1.5.x see: https://cwiki.apache.org/WICKET/request-cycle-and-request-cycle-processor.ht ml For newer version see: https://cwiki.apache.org/WICKET/requestcycle-in-wicket-15.html ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Monday, August 13

RE: Is there a way to search component by its wicket ID ?

2012-08-13 Thread Paul Bors
#getComponentFromLastRenderedPage() and BaseWicketTester#debugComponentTrees() you can implement your own method to iterate through the component tree and return a reference to the component you want. ~ Thank you, Paul Bors -Original Message- From: arkadyz111 [mailto:azelek...@gmail.com] Sent: Monday, August

RE: Is there a way to search component by its wicket ID ?

2012-08-14 Thread Paul Bors
type such as TextField.class to narrow down the search. That's not production code, is unit test and I'm assuming that's the context of your question. By using such regexp, I found myself refactoring the unit test code less when shuffling panels on a page. ~ Thank you, Paul Bors -Original

RE: How to control IMG/CSS URL-Rewriting in mounted pages?

2012-08-14 Thread Paul Bors
it for you. For example see this article: http://sanityresort.blogspot.com/2011/08/creating-custom-wicket-tag-resolver.html Or see how other such resolvers or AttributeModifer are used by Wicket itself, you can start with the AutoComponentResolver. ~ Good look to you! Paul Bors -Original

RE: WicketRuntimeException: Submit Button ... is not enabled

2012-08-14 Thread Paul Bors
with it. ~ Thank you, Paul Bors -Original Message- From: eugenebalt [mailto:eugeneb...@yahoo.com] Sent: Tuesday, August 14, 2012 12:16 PM To: users@wicket.apache.org Subject: Re: WicketRuntimeException: Submit Button ... is not enabled It is true that we have multiple buttons on our form that we

RE: Ajaxtabbedpanel example not working on ie9

2012-08-14 Thread Paul Bors
If you're talking about: http://www.wicket-library.com/wicket-examples/ajax/tabbed-panel?2 That works fine with IE: 9.0.8112.16421, perhaps you blocked JavaScript from executing? ~ Thank you, Paul Bors -Original Message- From: Delange [mailto:delan...@telfort.nl] Sent: Tuesday

RE: Static web page localization

2012-08-15 Thread Paul Bors
Another idiom is to attach a wicket:id to that HTML tag, and in your Java code use a WebMarkupContainer with an AttributeModifier to change whatever attribute you would like. Of course the IResource and children might be a better approach since it does the work for you :) ~ Thank you, Paul

RE: Nested form submit problem

2012-08-28 Thread Paul Bors
the questions, simply change the list of Panels and make sure each form field has its own model (or use CompoundModel if you want). Hope that helps :) ~ Thank you, Paul Bors -Original Message- From: Sandor Feher [mailto:sfe...@bluesystem.hu] Sent: Tuesday, August 28, 2012 11:28 AM

RE: Nested form submit problem

2012-08-28 Thread Paul Bors
applied to it will validate the user input for each character typed, use a different JS event for other behavior. For code examples see: http://www.wicket-library.com/wicket-examples/ajax/form ~ Thank you, Paul Bors -Original Message- From: Sandor Feher [mailto:sfe...@bluesystem.hu

RE: Pre-Select DropDownChoice Selection, but No Model yet

2012-08-28 Thread Paul Bors
live example: http://www.wicket-library.com/wicket-examples/forminput ~ Thank you, Paul Bors -Original Message- From: eugenebalt [mailto:eugeneb...@yahoo.com] Sent: Tuesday, August 28, 2012 6:33 PM To: users@wicket.apache.org Subject: Re: Pre-Select DropDownChoice Selection, but No Model

RE: Nested form submit problem

2012-08-28 Thread Paul Bors
uses different panels to add form field on different Steps of the Wizard. See it in action at: http://www.wicket-library.com/wicket-examples/wizard ~ Thank you, Paul Bors -Original Message- From: Sandor Feher [mailto:sfe...@bluesystem.hu] Sent: Tuesday, August 28, 2012 5:54 PM

RE: Nested form submit problem

2012-08-29 Thread Paul Bors
in a Wizard only that you're displaying all panels at once. ~ Thank you, Paul Bors -Original Message- From: Sandor Feher [mailto:sfe...@bluesystem.hu] Sent: Wednesday, August 29, 2012 3:00 AM To: users@wicket.apache.org Subject: RE: Nested form submit problem Paul Bors wrote Must you

RE: Datatables with Expandable rows

2012-08-30 Thread Paul Bors
:) ~ Thank you, Paul Bors -Original Message- From: Karen Schaper [mailto:karen.scha...@gmail.com] Sent: Thursday, August 30, 2012 10:54 AM To: users@wicket.apache.org Subject: Datatables with Expandable rows Hi All, I am looking to create a datatable that has an expandable rows so

RE: override wicket mark up

2012-08-31 Thread Paul Bors
see: http://wicket.apache.org/apidocs/1.5/org/apache/wicket/MarkupContainer.html# addOrReplace(org.apache.wicket.Component...) ~ Thank you, Paul Bors -Original Message- From: ramlael [mailto:grambab...@gmail.com] Sent: Thursday, August 30, 2012 5:10 AM To: users@wicket.apache.org Subject

RE: override wicket mark up

2012-08-31 Thread Paul Bors
appetite :) ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Friday, August 31, 2012 12:03 PM To: users@wicket.apache.org Subject: RE: override wicket mark up Have you checked the wiki page on the View Layer? https://cwiki.apache.org/WICKET/view

RE: Back button doesn't work with AjaxTabbedPanel

2012-08-31 Thread Paul Bors
Can't you just keep a reference to the backPage and then simply call setResponsePage(backPage)? ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, August 31, 2012 7:07 PM To: users@wicket.apache.org Subject: Re: Back button doesn't work

RE: Back button doesn't work with AjaxTabbedPanel

2012-09-04 Thread Paul Bors
/mapper/parame ter/PageParameters.html Not sure if you really want to go to this extreme, but feel free to do so if you must. ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Saturday, September 01, 2012 12:05 PM To: users@wicket.apache.org

RE: Back button doesn't work with AjaxTabbedPanel

2012-09-04 Thread Paul Bors
Yes. It doesn't make sense to use Ajax to refresh a whole page anyhow unless your tab panel is really just a small panel but then you won't be asking about support for the browser's back button because you prob won't care :) ~ Thank you, Paul Bors -Original Message- From: Alec Swan

RE: Migration to 1.5: BaseWicketTester#startPanel

2012-09-04 Thread Paul Bors
. Refactoring was straight forward and it took a single engineer a few days to get the app ported over. The webapp we are maintaining has a good 800+ Java pages, panels and reusable components and is meant to be used as an Administrative tool for our products including some reporting. ~ Thank you, Paul

RE: Wicket 1.5 migration questions

2012-09-04 Thread Paul Bors
In an older reply on this topic, Martijn Dashorst suggested to another user to mount the page using one of the strategies that already exist or implement your own. Older thread urlFor and putClassAlias: http://apache-wicket.1842946.n4.nabble.com/urlFor-and-putClassAlias-tp186414 2p1864143.html

RE: Migration to 1.5: 'X' is not a valid Serializable

2012-09-06 Thread Paul Bors
-to-wicket-14.html#MigratingtoWicke t1.4-Modelchanges ~ Thank you Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Thursday, September 06, 2012 5:18 PM To: users@wicket.apache.org Subject: Re: Migration to 1.5: 'X' is not a valid Serializable The fix

RE: Migration to 1.5: 'X' is not a valid Serializable

2012-09-06 Thread Paul Bors
generics your problem would most likely go away, otherwise you would have to suffer a bit and you should porb call setType() so Wicket would know what implementation of IConverter to use. ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Thursday

RE: jar file of wicket 6

2012-09-07 Thread Paul Bors
, then make use of the Maven Ant Tasks: http://maven.apache.org/ant-tasks/index.html ~ Thank you, Paul Bors -Original Message- From: David Psiuk [mailto:da...@psiuk.de] Sent: Friday, September 07, 2012 9:21 AM To: users@wicket.apache.org Subject: Re: jar file of wicket 6 hi, I've read

RE: Migration to 1.5: 'X' is not a valid Serializable

2012-09-07 Thread Paul Bors
that we can all reproduce your problem on our own to better help you? ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, September 07, 2012 2:09 PM To: users@wicket.apache.org Subject: Re: Migration to 1.5: 'X' is not a valid Serializable

RE: Exception: Can not determine Markup. Component is not yet connected to a parent.

2012-09-07 Thread Paul Bors
Try fallowing this Introduction to the Wicket Web Framework: http://netbeans.org/kb/docs/web/quickstart-webapps-wicket.html ~ Thank you, Paul Bors -Original Message- From: Roger Palacios [mailto:rogerpalac...@gmail.com] Sent: Friday, September 07, 2012 2:46 PM To: users

RE: Migration to 1.5: 'X' is not a valid Serializable

2012-09-07 Thread Paul Bors
:) In the else branch for when the type is not null. final IConverterT converter = getConverter(getType()); -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, September 07, 2012 3:00 PM To: users@wicket.apache.org Subject: Re: Migration to 1.5: 'X' is not a

Re: Issues with default type conversion in 1.5

2012-09-08 Thread Paul Bors
Can you please put together a quick start for us? ~ Thank you, Paul C Bors On Sep 7, 2012, at 14:39, Alec Swan alecs...@gmail.com wrote: Hello, I decided to extract this issue into a separate thread. I keep running into issues with default type converters in 1.5. I also think I found

RE: Wicket 1.5 migration questions

2012-09-11 Thread Paul Bors
you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Monday, September 10, 2012 7:43 PM To: users@wicket.apache.org Subject: Re: Wicket 1.5 migration questions Any update on this? How can I mount CSS and JS resources under /global/ without having to do

RE: stateless Login page!!

2012-09-11 Thread Paul Bors
Are you sure it's not calling the setReponsePage() (put break-point or a log message) and instead is trying to call the onError() method of your button or form? ~ Thank you, Paul Bors -Original Message- From: Alfonso Quiroga [mailto:alfonsose...@gmail.com] Sent: Tuesday, September 11

RE: Wicket 1.5 migration questions

2012-09-11 Thread Paul Bors
an existing one :) http://wicket.apache.org/apidocs/1.5/org/apache/wicket/request/resource/IRes ource.html ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Tuesday, September 11, 2012 11:42 AM To: users@wicket.apache.org Subject: Re: Wicket 1.5

RE: Wicket 1.5 migration questions

2012-09-12 Thread Paul Bors
it works out :) ~ Thank you, Paul Bors PS: Martin would know better, he's a developer on Wicket's team (you can tell from his e-mail address). I'm just another fellow Wicket-er. -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Wednesday, September 12, 2012 11

RE: JavaDoc for Wicket 6

2012-09-12 Thread Paul Bors
It's linked off Wicket's home page at http://wicket.apache.org/ under the Releases section in parenthesis (docs): http://ci.apache.org/projects/wicket/apidocs/6.0.x/ ~ Thank you, Paul Bors -Original Message- From: Andrea Del Bene [mailto:an.delb...@gmail.com] Sent: Wednesday

RE: JavaDoc for Wicket 6

2012-09-12 Thread Paul Bors
%7Corg.apache.wicket%7Cwicket-core%7 C6.0.0%7Cjar ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Wednesday, September 12, 2012 2:00 PM To: users@wicket.apache.org Subject: RE: JavaDoc for Wicket 6 It's linked off Wicket's home page at http://wicket.apache.org

RE: Wicket 1.5 migration questions

2012-09-12 Thread Paul Bors
you, Paul Bors PS: Wicket itself is full of examples, the power of open source :) -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Wednesday, September 12, 2012 2:00 PM To: users@wicket.apache.org Subject: Re: Wicket 1.5 migration questions I tried Martin's

RE: disabling ajax submit button

2012-09-13 Thread Paul Bors
I'm confused, the title is talking about an Ajax submit button yet your code snippet shows an AjaxSubmitLink. Perhaps you meant to use an AjaxButton in your Java code? What's the HTML mark-up you use with the Java code you showed us? ~ Thank you, Paul Bors -Original Message- From

RE: getting AutoCompleteTextField to display values

2012-09-14 Thread Paul Bors
I would recommend using Select2 if you really want to show all the available options and let the user filter through them. See wicket-select2: https://github.com/ivaynberg/wicket-select2 And also the live demos at: http://ivaynberg.github.com/select2/ ~ Thank you, Paul Bors -Original

RE: Autocomplete Problem on Chrome

2012-09-24 Thread Paul Bors
some live demo of Select2: http://ivaynberg.github.com/select2/ I think what you're describing is the Tagging Support example. ~ Thank you, Paul Bors -Original Message- From: cosmindumy [mailto:cosmind...@yahoo.com] Sent: Monday, September 24, 2012 10:27 AM To: users@wicket.apache.org

RE: Reseting a textField of an upload form

2012-10-03 Thread Paul Bors
://www.wicket-library.com/wicket-examples/ajax/wicket/bookmarkable/org.a pache.wicket.examples.source.SourcesPage;jsessionid=CD0504C6E5FC8905084418BD 3FCF45A0?0SourcesPage_class=org.apache.wicket.examples.ajax.builtin.Indexs ource=FileUploadPage.java ~ Thank you, Paul Bors -Original Message

RE: Reseting a textField of an upload form

2012-10-04 Thread Paul Bors
Ouch! Invalid HTML :( I would advise you always let Eclipse check the syntax of the HTML given: ?xml version=1.0 encoding=UTF-8? html xmlns=http://www.w3.org/1999/xhtml; xmlns:wicket=http://wicket.apache.org; ~ Thank you, Paul Bors -Original Message- From: Andrea Del Bene

RE: Reseting a textField of an upload form

2012-10-04 Thread Paul Bors
Also when in DEVELOPMENT mode have Wicket validate your HTML similar to: http://wicketinaction.com/2009/06/wicket-html-validator-12/ ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Thursday, October 04, 2012 12:06 PM To: users@wicket.apache.org

RE: Problem in Localizing submit button

2012-10-05 Thread Paul Bors
In the mid time you could look to the Java code and provide the model for the VALUE attribute of the button (I know that works :) http://wicket.apache.org/apidocs/1.5/org/apache/wicket/markup/html/form/Button.html#Button(java.lang.String, org.apache.wicket.model.IModel) ~ Thank you, Paul

RE: Problem in Localizing submit button

2012-10-05 Thread Paul Bors
You can always use myButton.add(new AttributeModifier(value, new ResourceModel(my.language.pack.key))) :) But yes, someone should open the Jira with the quick start and also mention the improvement for the button html tag itself. ~ Thank you, Paul Bors -Original Message- From

RE: Page expiration error on AJAX call

2012-10-08 Thread Paul Bors
Start by looking for a JS onClick event/behavior through your recent changes :) Or add some code for us to view... ~ Thank you, Paul Bors -Original Message- From: Ondrej Zizka [mailto:ozi...@redhat.com] Sent: Monday, October 08, 2012 9:37 PM To: wicket-users Subject: Page expiration

RE: captcha show different strings

2012-10-09 Thread Paul Bors
It chances on every form submit, why don't you look over the code since is open source and figure out what the model type/object for it is... ~ Thank you, Paul Bors -Original Message- From: Anna Simbirtsev [mailto:asimbirt...@gmail.com] Sent: Tuesday, October 09, 2012 1:36 PM

RE: captcha show different strings

2012-10-09 Thread Paul Bors
might want to check out :) http://wicket.apache.org/apidocs/1.5/org/apache/wicket/extensions/captcha/ki ttens/KittenCaptchaPanel.html ~ Thank you, Paul Bors -Original Message- From: Anna Simbirtsev [mailto:asimbirt...@gmail.com] Sent: Tuesday, October 09, 2012 1:43 PM To: users

RE: Dynamically Toggling a Details Row in a DataTable

2012-10-09 Thread Paul Bors
the time when editing a table row, I toggle between labels and form fields to set the contents of the table row. If you do want to show extra details that do not match the columns in your table, use a pop-up or modal pop-up. ~ Thank you, Paul Bors -Original Message- From: William Speirs

RE: IResourceStream from ByteArrayResource ?

2012-10-09 Thread Paul Bors
and provide to us the URL. ~ Thank you, Paul Bors -Original Message- From: mlabs [mailto:mlabs@gmail.com] Sent: Tuesday, October 09, 2012 4:18 PM To: users@wicket.apache.org Subject: Re: IResourceStream from ByteArrayResource ? ok I have made a quickstart .. where should I upload

RE: Dynamically Toggling a Details Row in a DataTable

2012-10-09 Thread Paul Bors
. ~ Thank you, Paul Bors -Original Message- From: Bill Speirs [mailto:bill.spe...@gmail.com] Sent: Tuesday, October 09, 2012 4:22 PM To: users@wicket.apache.org Subject: Re: Dynamically Toggling a Details Row in a DataTable Paul- Thanks for the response... yea, we'd like to see another

RE: IResourceStream from ByteArrayResource ?

2012-10-09 Thread Paul Bors
Hmm, this is what strikes me odd about your approach in your link's onSubmit(): public void onClick(AjaxRequestTarget target) { // I get it, you're creating your own stream writer AbstractResourceStreamWriter rstream = new AbstractResourceStreamWriter() {

RE: IResourceStream from ByteArrayResource ?

2012-10-09 Thread Paul Bors
My bad, you want to download it via Ajax, n/m. Although, why would you want to download a file via Ajax? All you're really doing in your example is to redirect the client browser to request one of your mapped URLs. Why can't you just handle the refresh part of your page in Ajax, and then call

RE: Validation with component not required

2012-10-10 Thread Paul Bors
language/locale you would have to translate all the labels and along with it you would adjust those regular expression. ~ Thank you, Paul Bors -Original Message- From: Eric Jablow [mailto:erjab...@gmail.com] Sent: Wednesday, October 10, 2012 10:10 AM To: users@wicket.apache.org Subject

RE: Dynamically Toggling a Details Row in a DataTable

2012-10-10 Thread Paul Bors
need a second flag to represent the type of the row (simplified or detailed) or use inheritance and store the type flag at the parent class and your collection should hold children as returned via a getRowContent() method. ~ Thank you, Paul Bors -Original Message- From: William Speirs

RE: Dynamically Toggling a Details Row in a DataTable

2012-10-10 Thread Paul Bors
See attached Add a row to a DataTable.png for a before/after screen shoots of how our table of selected items looks like after a row has been added to the top of it and refreshed. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Wednesday, October

Integrate Reporting tools with Wicket

2012-10-18 Thread Paul Bors
guys used to create reports within Wicket in your past projects? ~ Thank you, Paul Bors

RE: Custom CSS for Feedback message is broken in 1.5

2012-10-23 Thread Paul Bors
solid darkgreen; } This code was written for Wicket 1.3.x and migrated to 1.5.x w/o any changes (we're not yet up to 6.x). ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Tuesday, October 23, 2012 6:08 PM To: users@wicket.apache.org Subject

RE: Custom CSS for Feedback message is broken in 1.5

2012-10-24 Thread Paul Bors
. I only gave an example of how one can have full control with little code :) ~ Thank you, Paul Bors -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Wednesday, October 24, 2012 3:04 AM To: users@wicket.apache.org Subject: Re: Custom CSS for Feedback message

RE: Using AutocompleteTextField with database entries (without a converter)

2012-10-24 Thread Paul Bors
Take a look at Select2 developed by Ivan Vaynberg one of Wicket's contributors: http://ivaynberg.github.com/select2/ You should try out the Loading Remote Data and Infinite Scroll with Remote Data examples. Thanks Ivan for a great job! ~ Thank you, Paul Bors -Original Message- From

RE: Using AutocompleteTextField with database entries (without a converter)

2012-10-24 Thread Paul Bors
As for your search by multiple columns in the db... do something silly like using an OR in your SQL and filter by both columns :) Another idea is to include a drop down to filter by what column you want to search. ~ Thank you, Paul Bors -Original Message- From: Gaetan Zoritchak

Charts in Wicket

2012-11-01 Thread Paul Bors
-vendor-releases-free-charts-and-graphs-libraries-for-html5-jquery-and-javascript-developers ~ Thank you, Paul Bors

RE: merge all properties file into one file

2012-11-05 Thread Paul Bors
for your own validator and return the key string you want to use. ~ Thank you, Paul Bors -Original Message- From: oliver.stef [mailto:ova...@gmail.com] Sent: Sunday, October 28, 2012 10:30 AM To: users@wicket.apache.org Subject: Re: merge all properties file into one file Thanks

RE: How to call a ModalWindow's close callback?

2012-11-07 Thread Paul Bors
into nested forms: https://cwiki.apache.org/WICKET/nested-forms.html ~ Thank you, Paul Bors -Original Message- From: rudi [mailto:rudi_mai...@yahoo.com] Sent: Tuesday, October 30, 2012 4:58 AM To: users@wicket.apache.org Subject: How to call a ModalWindow's close callback? Hi all, I

RE: Opening new tab causes model to be null

2012-11-07 Thread Paul Bors
Fix the NPE :) Try lazy loading the model. ~ Thank you, Paul Bors -Original Message- From: Gytis [mailto:lietuvis...@mail.ru] Sent: Friday, November 02, 2012 7:30 AM To: users@wicket.apache.org Subject: Opening new tab causes model to be null Hello, I have noticed one problem

RE: HTML storyboard and Maybe there are several Ajax event behaviors warning

2012-11-07 Thread Paul Bors
submit to button or have it surrounded by a form of its own. ~ Thank you, Paul Bors -Original Message- From: Alec Swan [mailto:alecs...@gmail.com] Sent: Friday, November 02, 2012 5:30 PM To: users@wicket.apache.org Subject: HTML storyboard and Maybe there are several Ajax event behaviors

RE: ContextRelativeResource working different in WebMarkupContainer?

2012-11-07 Thread Paul Bors
/autolink.html ~ Thank you, Paul Bors -Original Message- From: Delange [mailto:delan...@telfort.nl] Sent: Wednesday, November 07, 2012 5:53 AM To: users@wicket.apache.org Subject: ContextRelativeResource working different in WebMarkupContainer? I try to show images from the images folder

RE: Cloneing Wicket Objects

2012-11-25 Thread Paul Bors
should be fine as long as you handle the db trip in the constructor or your own init() method. ~ Thank you, Paul Bors -Original Message- From: Colin Rogers [mailto:colin.rog...@objectconsulting.com.au] Sent: Sunday, November 25, 2012 6:28 PM To: users@wicket.apache.org Subject: Cloneing

RE: initial bean validation integration checked into experimental module

2012-11-25 Thread Paul Bors
such as the null state and length in two or more different annotations. ~ Thank you, Paul Bors -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Sunday, November 25, 2012 1:41 AM To: users@wicket.apache.org Subject: initial bean validation integration checked

RE: Cloneing Wicket Objects

2012-11-26 Thread Paul Bors
I stand corrected, Martin is right. We cache our SQL results hence why this is not a problem for us. ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Monday, November 26, 2012 3:33 AM To: users@wicket.apache.org Subject: Re: Cloneing

RE: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Paul Bors
at FormComponentPanel's direct known subclasses: DateTimeField, MultiFileUploadField, Multiply ~ Thank you, Paul Bors -Original Message- From: Raul [mailto:ralva...@netwie.com] Sent: Thursday, December 06, 2012 10:35 AM To: users@wicket.apache.org Subject: Re: Model is null after submit

RE: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Paul Bors
you, Paul Bors -Original Message- From: Joachim Schrod [mailto:jsch...@acm.org] Sent: Thursday, December 06, 2012 2:05 PM To: users@wicket.apache.org Subject: Re: Model is null after submit, using FormComponentPanel Paul Bors wrote: I would suggest overriding FormComponentPanel

RE: Model is null after submit, using FormComponentPanel

2012-12-06 Thread Paul Bors
Clean it, zip it and just publish it somewhere where you can post the URL in a reply to this thread :) ~ Thank you, Paul Bors -Original Message- From: Raul [mailto:ralva...@netwie.com] Sent: Thursday, December 06, 2012 3:32 PM To: users@wicket.apache.org Subject: RE: Model is null

RE: table header not rendered correctly

2012-12-07 Thread Paul Bors
, Paul Bors -Original Message- From: appwicket [mailto:wwx@gmail.com] Sent: Friday, December 07, 2012 11:43 AM To: users@wicket.apache.org Subject: table header not rendered correctly Hi all, I have a List of String for my table: final ListString title2 = Arrays.asList

RE: buttons panel

2012-12-10 Thread Paul Bors
Consult Wicket's website and its live examples: http://wicket.apache.org/ From Wicket's website Under the Learn section see the links for Examples: http://wicket.apache.org/learn/examples/ Then follow the live action link: http://www.wicket-library.com/wicket-examples/index.html Take a look at

RE: Redirect to login page on UnauthorizedActionException(Page,RENDER)

2012-12-10 Thread Paul Bors
AccessDeined page (the LoginPage) only under few circumstances, I haven't run into that need yet so someone else could help you if you really need to do that. ~ Thank you, Paul Bors -Original Message- From: Jesse Long [mailto:j...@unknown.za.net] Sent: Monday, December 10, 2012 11:05 AM

RE: Form submit with CollectionChild

2012-12-10 Thread Paul Bors
-library.com/wicket-examples/compref/wicket/bookmarkable/or g.apache.wicket.examples.compref.PalettePage?0 Perhaps that can aid answering your quest. Otherwise, please better phrase your question and/or submit some code examples to help us better understand. ~ Thank you, Paul Bors -Original

RE: Styling lost when a component is set visible during AJAX call

2012-12-10 Thread Paul Bors
and form field should be using a SimpleFormComponentLabel or similar. ~ Thank you, Paul Bors -Original Message- From: shimin_q [mailto:smq...@hotmail.com] Sent: Monday, December 10, 2012 1:26 PM To: users@wicket.apache.org Subject: Styling lost when a component is set visible during AJAX

RE: Form submit with CollectionChild

2012-12-10 Thread Paul Bors
I take it your class A and B here are your POJO or Domain objects that you use to set/get via Wicket models. What model do you set to the component that doesn't update with your user input? ~ Thank you, Paul Bors -Original Message- From: Nick Pratt [mailto:nbpr...@gmail.com] Sent

RE: Styling lost when a component is set visible during AJAX call

2012-12-10 Thread Paul Bors
Might be a Wicket problem too... how do you set the style initially that it got lost? Is it in the HTML code or via a Behavior? As far as I recall, Wicket shouldn't remove any attribute set in the HTML code but it might override or remove it if you set it in the Java code. ~ Thank you, Paul

RE: Form submit with CollectionChild

2012-12-10 Thread Paul Bors
to it or in a Jira ticket. Hopefully in doing so you'll spot what's wrong and fix it :) ~ Thank you, Paul Bors -Original Message- From: Nick Pratt [mailto:nbpr...@gmail.com] Sent: Monday, December 10, 2012 2:21 PM To: users@wicket.apache.org Subject: Re: Form submit with CollectionChild I

  1   2   3   4   5   >