Re: Redirect to the HomePage on newSession

2013-02-18 Thread Paul Bors
You can always throw a RestartResponseAtInterceptPageException(Page) and let Wicket do the redirect for you. ~ Thank you, Paul Bors On Fri, Feb 15, 2013 at 6:08 AM, vov vov...@mail.ru wrote: Found good solution: @Override protected void init() { getRootRequestMapperAsCompound

Re: Fundamental forms/models issue

2013-02-18 Thread Paul Bors
setResponsePage(new MyPage()). More on detachable models: https://cwiki.apache.org/WICKET/detachable-models.html ~ Thank you, Paul Bors On Mon, Feb 18, 2013 at 12:47 PM, Michael Chandler michael.chand...@onassignment.com wrote: Good morning/afternoon everyone. I'm having a basic problem fully

Re: Fundamental forms/models issue

2013-02-18 Thread Paul Bors
the page that will respond to this request What that dosen't mention is what page instance is used or when/how a new Page is constructed. Give the Page maps a read to grasp that concept: https://cwiki.apache.org/WICKET/page-maps.html ~ Thank you, Paul Bors PS: You could try purchasing an older

Re: find html tag

2013-02-12 Thread Paul Bors
to preserve the page layout. * * @see org.apache.wicket.Component#onComponentTag(ComponentTag) */ @Override protected void onComponentTag(final ComponentTag tag) { super.onComponentTag(tag); if(!isRootForm()) { tag.setName(span); } } ~ Thank you, Paul Bors On Tue, Feb 12, 2013 at 7

Re: AjaxButton and a HiddenField

2013-02-12 Thread Paul Bors
, are you sure you need the hidden field? Can’t you use compound models to hold on to the state you need at the panel or page level? Anyhow, I'll let you to it.. :) ~ Thank you, Paul Bors On Tue, Feb 12, 2013 at 10:02 AM, Entropy blmulholl...@gmail.com wrote: Well, I solved it and it turns

Re: Can AjaxFormSubmitBehavior skip validation on form field updating

2013-02-12 Thread Paul Bors
A bit off topic but related, is there a wiki page documenting the workflow wicket goes through (validation, updating models etc) when using AjaxFormSubmitBehavior? ~ Thank you, Paul Bors On Tue, Feb 12, 2013 at 11:59 AM, wicket_new_user murthy.m...@gmail.comwrote: Is it possible to skip

Re: IE DropDown onChange behavior not triggered on first time

2013-02-11 Thread Paul Bors
://msdn.microsoft.com/en-us/library/ms536912%28VS.85,loband%29.aspx Are you changing the value of the select programatically (updating the value via JS)? http://social.msdn.microsoft.com/Forums/pl/iewebdevelopment/thread/3f6a7ea0-0779-441f-ad58-7a0b974643ea ~ Thank you, Paul Bors On Mon, Feb 11, 2013 at 10

Re: IE DropDown onChange behavior not triggered on first time

2013-02-11 Thread Paul Bors
of: + getComponent().getId()); } } ~ Thank you, Paul Bors On Mon, Feb 11, 2013 at 11:21 AM, divad91 diva...@hotmail.com wrote: Sorry, i am using wicket 1.4.21. My onchange behavior does not change the value. My behavior only prepend javascript only for a specific value. I am not changing

Re: AjaxButton and a HiddenField

2013-02-11 Thread Paul Bors
You turn your hidden field into a Wicket FormComponent and then add it to your button's ajax request target :) Just because is hidden, it doesn't have to be treated any different. But don't confuse a hidden field with a Wicket visible field. ~ Thak you, Paul Bors On Mon, Feb 11, 2013 at 3:25

Re: ptint the whole markup of a Calendar

2013-02-11 Thread Paul Bors
Try the View Source option in your browser, also turn on the development mode for your webapp to see the Ajax debug toolbar. Consider adding the DebugToolbar to your root parent page. ~ Thank you, Paul Bors On Mon, Feb 11, 2013 at 1:57 PM, grazia grazia.russolass...@gmail.comwrote: How can

Log user changes to a form

2013-02-07 Thread Paul Bors
it? Obviously I would like a generic approach rather than fix this at a per-page or per-form basics. ~ Thank you, Paul Bors

Re: Log user changes to a form

2013-02-07 Thread Paul Bors
. ~ Thank you, Paul Bors On Thu, Feb 7, 2013 at 8:41 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: if you are using hibernate here is envers...easier to do it on that level rather then ui... -igor On Thu, Feb 7, 2013 at 4:11 PM, Paul Bors p...@bors.ws wrote: We have an enterprise web-app

Re: call the same page using setResponsePage()

2013-02-07 Thread Paul Bors
Yes, as per the API for the component class: http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/Component.html#setResponsePage(java.lang.Class) setResponsePage public final C extends IRequestablePage void setResponsePage(ClassC cls) Sets the page that will respond to this

Re: [Building Sakai] Charts Wicket Sakai

2013-02-06 Thread Paul Bors
to the project https://code.google.com/p/wicked-charts/ ~ Thank you, Paul Bors On Wed, Feb 6, 2013 at 3:44 PM, Tom Hombergs tom.hombe...@gmail.com wrote: Hi Antonio, Wicked Charts only supports Wicket 1.5.x (wicked-charts-wicket15) and Wicket 6.x. (wicked-charts-wicket6). I don't know

RE: Page link in CalendarEvent

2013-02-06 Thread Paul Bors
What do you mean? -Original Message- From: grazia [mailto:grazia.russolass...@gmail.com] Sent: Wednesday, February 06, 2013 7:28 PM To: users@wicket.apache.org Subject: Page link in CalendarEvent Is there a way to display a page link in a CalendarEvent ? -- View this message in

Re: Charts Wicket Sakai

2013-02-05 Thread Paul Bors
-and-wicket.html jqPlot: https://github.com/wicketstuff/core/tree/core-1.5.x/jdk-1.5-parent/jqplot-parent Or if you can afford the license for HighCharts then try Wicked-Charts https://code.google.com/p/wicked-charts/ ~ Thank you, Paul Bors On Tue, Feb 5, 2013 at 6:05 PM, Antonio muñoz alonso

Re: Problem with markup inheritance in Wicket 6

2013-02-04 Thread Paul Bors
/WICKET/wickets-xhtml-tags.html#Wicket%2527sXHTMLtags-Elementwicket%253Aextend https://cwiki.apache.org/WICKET/markup-inheritance.html But if this was working for you in 5.x then I presume you do have the markup inheritence setup right. ~ Thank you, Paul Bors On Sat, Feb 2, 2013 at 3:52 PM

Re: Same Panel, but Formatted in 2 Different Ways (Diff. Presentation)

2013-02-04 Thread Paul Bors
more refactoring on your hands :) ~ Thank you, Paul Bors On Mon, Feb 4, 2013 at 2:52 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Use style and variation? https://cwiki.apache.org/WICKET/localization-and-skinning-of-applications.html On Mon, Feb 4, 2013 at 8:33 PM, eugenebalt

Re: after migration to 1.5 I get java.lang.IllegalStateException: Header was already written to response!

2013-02-01 Thread Paul Bors
in a servlet is ready. ~ Thank you, Paul Bors On Wed, Jan 30, 2013 at 7:07 AM, Paul Szulc paul.sz...@gmail.com wrote: Wow! Thank you very much for the response, I will try it right away. On Wed, Jan 16, 2013 at 2:47 AM, Barrett Snyder barret...@gmail.com wrote: I had this same issue

Re: Style Modifier

2013-02-01 Thread Paul Bors
existing list of classes that are applied my tag. Hence why a simple AttributeModifier changing the class attribute of a tag is all you need. ~ Thank you, Paul Bors On Fri, Feb 1, 2013 at 9:44 AM, William Speirs wspe...@apache.org wrote: I created a Behavior the other night that allows one

Re: Introducing wicket-continuous-calendar

2013-01-30 Thread Paul Bors
with concurrent access. You better use http://en.wikipedia.org/wiki/Initialization_on_demand_holder_idiom On Wed, Jan 30, 2013 at 12:09 AM, Paul Bors p...@bors.ws wrote: I needed a better way to select a data range and thus integrated Wicket 1.5.x with jQuery-Continuous-Calendar. http

Re: editable tree table: submit all changes at once

2013-01-29 Thread Paul Bors
Try to use that project out of the box, and if you find bugs or improvements feel free to contribute back :) It's better that way as it is mainted by a wide range of members rather than just your or your team. ~ Thank you, Paul Bors On Tue, Jan 29, 2013 at 9:54 AM, grazia grazia.russolass

Re: Issue with panel ,model refresh

2013-01-29 Thread Paul Bors
-6.0.x/index.html I'll see what is the problem with 1.5.x On Tue, Jan 29, 2013 at 1:31 AM, Paul Bors p...@bors.ws wrote: Unfortunately the live wicket examples for the component references is offline right now so I can't point you to an Ajax example :( http://www.wicket-library.com

Re: Access, read and modify td Tag (cell tag) in Datatable

2013-01-29 Thread Paul Bors
(getCellStyleClass(; item.add(new AttributeModifier(headers, getAccHeaderId(index))); return item; } I guess you could pass the ItemIColumnT to your own getCellStyleClass() method and grab the model from that Item to decide what CSS to apply. ~ Thank you, Paul Bors On Tue, Jan 29

Re: Issue with panel ,model refresh

2013-01-29 Thread Paul Bors
Now that the live examples are back up, take a look at: http://www.wicket-library.com/wicket-examples/ajax/ To see how to swap out panels, see the Tabbed Panel example: http://www.wicket-library.com/wicket-examples/ajax/tabbed-panel?2 Have fun! ~ Thank you, Paul Bors - ~ Thank you

Re: editable tree table: submit all changes at once

2013-01-29 Thread Paul Bors
table so I can't answer you directly, but I do use other components from Wicket Stuff. ~ Thank you, Paul Bors - ~ Thank you, p...@bors.ws -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/editable-tree-table-make-an-editable-row-rather-than-an-editable-cell

Introducing wicket-continuous-calendar

2013-01-29 Thread Paul Bors
-calendar/site/playground.html ~ Thank you, Paul Bors - ~ Thank you, p...@bors.ws -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Introducing-wicket-continuous-calendar-tp4655896.html Sent from the Users forum mailing list archive at Nabble.com

Re: Upgrade to 6.5.0

2013-01-28 Thread Paul Bors
:190) Most likely your deployment is corupt. ~ Thank you, Paul Bors On Sat, Jan 26, 2013 at 5:37 PM, Stephen Walsh step...@connectwithawalsh.com wrote: I've been out of development on my side project for awhile and recently just got back in. I upgraded to the latest version and got

Re: [6.0] CouldNotLockPageException

2013-01-28 Thread Paul Bors
() == RuntimeConfigurationType.DEVELOPMENT); } At least you won't have to change your code when going between deployment and development mode :) ~ Thank you, Paul Bors On Sun, Jan 27, 2013 at 8:13 AM, Pierre Goupil goupilpie...@gmail.comwrote: As I said, it's only when using (Eclipse) debugger

Re: [6.0] CouldNotLockPageException

2013-01-28 Thread Paul Bors
Nice, thanks for that Martin. We've carried this webapp since early versions of wicket and we haven't yet upgraded older utility methods. Goes to shows how nicely some of the API carried forward in Wicket :) ~ Thank you, Paul Bors On Mon, Jan 28, 2013 at 10:57 AM, Martin Grigorov mgrigo

Re: Issue with panel ,model refresh

2013-01-28 Thread Paul Bors
debug tools build in Wicket that help you develop faster, see also the DebugBar. ~ Thank you, Paul Bors On Mon, Jan 28, 2013 at 11:13 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, This is the working code, right ? Can you show us the non-working one ? On Sat, Jan 26, 2013 at 2:08 AM

Re: Issue with panel ,model refresh

2013-01-28 Thread Paul Bors
to follow for me to understand what you're doing wrong. Try simplifying the problem with the least code possible. ~ Thank you, Paul Bors On Mon, Jan 28, 2013 at 4:36 PM, mohallo moha...@qwest.com wrote: It works for the Label .Trying to implement the same for the Panel . -- View this message

Re: editable tree table: submit all changes at once

2013-01-28 Thread Paul Bors
Why re-invent the wheel? Take a look at the examples for Wicket Components at: http://www.wicket-library.com/ The Wicketstuff InMethod Grid's Editable TreeGrid: http://www.wicket-library.com/inmethod-grid/tree-grid/editable The project you're looking for is at:

Re: Component to String

2013-01-24 Thread Paul Bors
You can also use a VelocityPanel in Wicket to render to HTML or plain text or XML or whatever your velocity template feels like :) http://wicket.apache.org/learn/projects/velocity.html ~ Thank you, Paul Bors On Thu, Jan 24, 2013 at 1:30 PM, Cedric Gatay gata...@gmail.com wrote: Yes

Re: Wicket Editable datagrid with add/edit/delete functionality at once

2013-01-24 Thread Paul Bors
Is this what you're looking for? http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/extensions/ajax/markup/html/AjaxIndicatorAppender.html ~ Thank you, Paul Bors On Thu, Jan 24, 2013 at 8:05 AM, rsasanulu srajith...@gmail.com wrote: Thank you very much to providing

Re: Insidious error

2013-01-24 Thread Paul Bors
From your stack trace: es.isdefe.webisdefe.webapp.panels.inicio.Inicio$InicioJsBehaviour@2b0c59fcon component [Inicio [Component id = contenido]] threw an exception the component with the contenido wicket:id must have a model object that's cast to the wrong type. You should use Generics more

Re: DataPicker replaced

2013-01-23 Thread Paul Bors
at: https://cwiki.apache.org/WICKET/migration-to-wicket-60.html Since Wicket 6.x now uses jQuery you get to benefit all of the nice UI components jQuery provides including the missing DatePicker. See it action at: http://jqueryui.com/datepicker/ ~ Thank you, Paul Bors On Wed, Jan 23, 2013

Re: how to convert joda DateTime to TimeField ?

2013-01-23 Thread Paul Bors
new TimeField(myWicketId, new ModelDate(DateTime.now().toDate())) ~ Thank you, Paul Bors On Wed, Jan 23, 2013 at 1:49 PM, grazia grazia.russolass...@gmail.comwrote: I am trying to figure out what it the cleanest way to convert org.joda.time.DateTime

Re: how to remove the file icons from the editable tree table ?

2013-01-23 Thread Paul Bors
-image: url(../../wicket/resource/org.apache.wicket.extensions.markup.html.tree.DefaultAbstractTree/res/folder-closed-ver-EA16980AB437FA6BA4ABA3D480E83E9E.gif);/ Notice is using CSS w/ a icon class so override that. ~ Thank you, Paul Bors On Wed, Jan 23, 2013 at 3:25 PM, grazia grazia.russolass

Re: How to pass model changes to parent components? onModelChanged() not working

2013-01-22 Thread Paul Bors
form componet in order to implement and work with FormComponent#**updateModel? ~ Thank you, Paul Bors On Mon, Jan 21, 2013 at 11:54 PM, Ondrej Zizka ozi...@redhat.com wrote: Forgot to write: My problem is that the Map item is deleted, but Wicket renders the given sub-component with the old Map

Re: documentation

2013-01-22 Thread Paul Bors
If you're interested in learning Wicket, see the Learn section on the project's home page at: http://wicket.apache.org/ It has its own Books link: http://wicket.apache.org/learn/books/ ~ Thank you, Paul Bors On Tue, Jan 22, 2013 at 12:06 PM, Ondrej Zizka ozi...@redhat.com wrote: Hi

Re: Feedback in AJAX requests //Re: How to pass model changes to parent components? onModelChanged() not working

2013-01-22 Thread Paul Bors
an error. ~ Thank you, Paul Bors On Mon, Jan 21, 2013 at 4:18 PM, Ondrej Zizka ozi...@redhat.com wrote: Solved - it was wrong validator which never passed, so onModelChanged() was never called. Now I have related problem: FeedbackPanel shows the error when a form is submitted

RE: documentation

2013-01-22 Thread Paul Bors
If you're trying to compare Java webapp frameworks, take your pick: http://wicket.apache.org/meet/introduction.html Also see: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks ~ Thank you, Paul Bors -Original Message- From: Guillaume Smet [mailto:guillaume.s

RE: Multiple select drop down in Wicket

2013-01-21 Thread Paul Bors
CSS :) ~ Thank you, Paul Bors -Original Message- From: Marios Skounakis [mailto:msc...@gmail.com] Sent: Tuesday, January 15, 2013 2:18 PM To: users@wicket.apache.org Subject: Re: Multiple select drop down in Wicket I've considered using select2 (it looks very impressive) but I

RE: Multiple select drop down in Wicket

2013-01-15 Thread Paul Bors
I gave up on the normal select in HTML and started to use Igor's Select2. See http://ivaynberg.github.com/select2/ ~ Thank you, Paul Bors -Original Message- From: kshitiz [mailto:k.agarw...@gmail.com] Sent: Monday, January 14, 2013 9:17 PM To: users@wicket.apache.org Subject: RE

RE: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-14 Thread Paul Bors
(or add it as an optional editor to qwickie). ~ Thank you, Paul Bors -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Monday, January 14, 2013 3:25 AM To: users@wicket.apache.org Subject: Re: Eclipse-IDE Plugin Wicket Bench not existing (any more

RE: Multiple select drop down in Wicket

2013-01-14 Thread Paul Bors
Multiple selects take a collection of objects and not a single object for the model type so you should use IModel? extends CollectionObjectType. For example see how your favorite sites is used on: http://www.wicket-library.com/wicket-examples/forminput ~ Thank you, Paul Bors -Original

RE: Multiple select drop down in Wicket

2013-01-14 Thread Paul Bors
Yes, the example shows a ListMultipleChoice. Is that not working for you? ~ Thank you, Paul Bors -Original Message- From: kshitiz [mailto:k.agarw...@gmail.com] Sent: Monday, January 14, 2013 2:06 PM To: users@wicket.apache.org Subject: RE: Multiple select drop down in Wicket Are you

RE: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-13 Thread Paul Bors
to behave as such w/o writing a plugin (I haven't looked at Eclipse plugins in years). ~ Thank you, Paul Bors -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Sunday, January 13, 2013 5:49 AM To: users@wicket.apache.org Subject: Re: Eclipse-IDE Plugin

Re: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-11 Thread Paul Bors
Whoever is still interested in this plugin, I saved a copy of WicketBench v0.5.1 as a zip from an older Eclipse installed on my workstation. I wish the source code was still around. Anyhow, it still kinda works with Eclipse Juno after extracting the zip contents to [eclipse root]\plugins\. If

RE: [Announce] wicket-dashboard

2012-12-21 Thread Paul Bors
using wicket-dashboard and wicked-charts (HighCharts). ~ Thank you, Paul Bors -Original Message- From: Decebal Suiu [mailto:decebal.s...@asf.ro] Sent: Wednesday, December 19, 2012 7:14 AM To: users@wicket.apache.org Subject: RE: [Announce] wicket-dashboard Thanks Paul for your

RE: [Announce] wicket-dashboard

2012-12-18 Thread Paul Bors
dashboard HighCharts widget panel for your demo that's using wicked-charts. ~ Thank you, Paul Bors PS: I might be able to help you migrate it to Wicket 6 if and once my management gives the green light on my POC :) -Original Message- From: Decebal Suiu [mailto:decebal.s...@asf.ro] Sent

RE: [Announce] wicket-dashboard

2012-12-18 Thread Paul Bors
For whoever is interested, the right way of setting the settings in wicked-charts is via a call to: JavaScriptResourceRegistry.getInstance().setJQueryReference() etc. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Tuesday, December 18, 2012 10:44

Re: [Announce] wicket-dashboard

2012-12-17 Thread Paul Bors
Hey Guys, I run into a conflict between wicket-dashboard (https://github.com/decebals/wicket-dashboard/) and wicked-charts (http://code.google.com/p/wicked-charts/). When I added a simple line chart in a panel to the dashboard both the drag-box header links and the chart stop working. I run

RE: Wicket training - instructor led

2012-12-13 Thread Paul Bors
http://wicket.apache.org/learn/books/ :) -Original Message- From: Michael Chandler [mailto:michael.chand...@onassignment.com] Sent: Thursday, December 13, 2012 11:52 AM To: users@wicket.apache.org Subject: Wicket training - instructor led Greetings! I was hoping someone might be able

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

2012-12-11 Thread Paul Bors
page on UnauthorizedActionException when the component is an instance of Page and the action as RENDER and when the session is not authenticated, so a custom access denied page is not exactly what I'm looking for, but I could probably make it work. Cheers, Jesse On 10/12/2012 19:40, Paul Bors

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

2012-12-11 Thread Paul Bors
feature and steal their ideas. Try taking a look at Wicket Shiro or Wicket Security, do they not offer a similar solution? (I'm not sure as I had to maintain our own legacy implementation). http://wicket.apache.org/learn/projects/authroles.html ~ Thank you, Paul Bors -Original Message- From

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

RE: ClassCastException (WebResponse)

2012-12-10 Thread Paul Bors
you might want to add the DebugBar to your page as well. ~ Thank you, Paul Bors -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Monday, December 10, 2012 2:33 PM To: users@wicket.apache.org Subject: ClassCastException (WebResponse) I have the following code

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

2012-12-10 Thread Paul Bors
it might lose your data-theme attribute. Anyhow, glad I could help you figure it out :) ~ Thank you, Paul Bors -Original Message- From: shimin_q [mailto:smq...@hotmail.com] Sent: Monday, December 10, 2012 3:14 PM To: users@wicket.apache.org Subject: RE: Styling lost when a component

RE: Form submit with CollectionChild

2012-12-10 Thread Paul Bors
Yes, Wicket in Action is what got me exposed to Wicket a few years back. Thanks go out to Martijn Dashorst and Eelco Hillenius for taking the time to write that book and I'm honestly looking forward to a new edition although the book's site does save me quite a while :) ~ Thank you, Paul Bors

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: 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: 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: 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: 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: 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

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: 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

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

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: 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

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: 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: 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: 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

<    1   2   3   4   5   >