onchange event and DropDownChoice DojoDatePicker

2007-08-27 Thread Thies Edeling
Hi all, When I add an AjaxFormComponentUpdatingBehavior it seems I can't add any AjaxFormValidatingBehavior afterwards? When I add the validating behaviour the UpdatingBehaviour seems to get lost. Is this a known issue ? I encountered another onchange oddity with the DojoDatePicker. It's not

Re: How to integrate wicket frame work with spring

2007-08-30 Thread Thies Edeling
You're missing Spring bean definitions, not really Wicket related. Read Spring's manual: http://static.springframework.org/spring/docs/2.0.x/reference/beans.html#beans-factory-metadata bhupat parmar wrote: which xml file ? web.xml or context.xml, applicationcontext.xml or any other xml which

wicketstuff-dojo: deprecated warnings?

2007-08-31 Thread Thies Edeling
Using the DojoDatePicker widget from wicketstuff-dojo (1.3.0-beta) gives a dojo warning: DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not locate widget implementation for simpledropdowndatepicker in dojo.widget registered to namespace dojo. Developers must specify

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Thies Edeling
ah, finally a reason to attend one of this jspring/jfall/javapolis things. Francis De Brabandere wrote: Would be great On 9/7/07, Martijn Dashorst [EMAIL PROTECTED] wrote: I'll be presenting on JavaPolis this december, so we can easily plan a BoF in the evening. Martijn On 9/7/07,

Re: Acegi (Spring Security)

2007-09-18 Thread Thies Edeling
Did you manage to fix this ? I have the exact same symptom, user authenticates fine (org.acegisecurity.event.authentication.LoggerListener - Authentication event AuthenticationSuccessEvent: thies; details: null) but authentication is not set in the context. Thies Ian Godman wrote: Hi I am

Re: Global variables

2007-09-24 Thread Thies Edeling
Why not just add them to your Application class? Jan Kriesten wrote: hi artur, Where should I put global variables that are not related to the user but to the application. In JSP I've used servletContext.setAttribute How to do this in Wicket? you can do that in your application:

Re: Link embedded in localized Label/Message?

2007-10-16 Thread Thies Edeling
Hi, In your HTML the label is a child of the link so do it the other way around, add the label to the link Link l = new Link.. l.add(new Label.. with a wicket:id=..span wicket:id=../span/a gr Thies Hi, is it possible to have a link in a localized label? I would like to have something like

FormComponentFeedbackIndicator not triggered with 1.3b4?

2007-10-24 Thread Thies Edeling
Hi all, For validation purposes I've added a class exending AbstractValidator to a TextField. Feedback is provided by adding a FormComponentFeedbackIndicator to the TextField, triggered by a AjaxFormValidatingBehavior.addToAllFormComponents(etc... This whole thing works with beta 3 however

Re: Changing IDEs to eclipse

2007-10-26 Thread Thies Edeling
Indeed the Sysdeo plugin works a lot better than WTP. For more convenience they provide a development classloader allowing you to load the dependencies of your Eclipse project into Tomcat. Just set your context root to src/main/webapp, add maven's target directory and any dependencies to the

eHour migrated to Wicket

2007-11-06 Thread Thies Edeling
Hello all, I've finally migrated my time tracking tool, eHour, from Struts to Wicket ! eHour is a webbased time tracking tool for consultancy companies and other project based businesses. The primary objective is to keep time tracking as simple and user friendly as possible while still being

Wicket OSGi

2007-11-14 Thread Thies Edeling
Hello all, Does anyone have any experience with using Wicket and OSGi? I'm looking for the most flexible way of composing an application and deploying Wicket pages/panels as OSGi bundles seems like a nice way.I noticed the Pax Wicket project but am not sure how stable that is. regards,

Re: Panel as instance variable of parent ?

2008-11-24 Thread Thies Edeling
usage by 128kb which is peanuts. Martijn On Mon, Nov 24, 2008 at 3:03 PM, Thies Edeling [EMAIL PROTECTED] wrote: Hi all, I was wondering what the best aproach is, memory-wise, to reference a panel from it's parent (or other compent). Either keep a reference to a panel as an instance variable

Re: TabbedPanel#addTab

2008-12-08 Thread Thies Edeling
Yes you can add a new or replace existing tabs. Just add the MultiTabbedPanel to an ajaxrequesttarget to update the tabs. alexander.elsholz wrote: Hi, exists a possibility to add a new tab to an ajax-tabbed-pane without replacing existing instance? the reason, because of i wont replace my

Re: TabbedPanel#addTab

2008-12-08 Thread Thies Edeling
..; } }); target.addComponent(tab); } }); vut i don't know how to add a new entry in tabbedpanes model. regards ales Thies Edeling wrote: Yes you can add a new or replace existing tabs. Just add the MultiTabbedPanel to an ajaxrequesttarget to update

FormComponent's persistent state and ajax

2008-12-11 Thread Thies Edeling
Hi all Whenever I have a FormComponent which value was persisted in a cookie with setPersistent(true), the value is not restored when the component is loaded in an ajax response. The value is restored when it's loaded during a normal page render though. I tried calling the

Re: Help,How to download all files in one folder ?

2009-01-12 Thread Thies Edeling
Now that's a funny and handy site ;) Vit Rozkovec wrote: Sorry, but: http://letmegooglethatforyou.com/?q=java+zip+files Vitek wch2001 wrote: thanks , Pills. How can I zip it ? thanks Pills wrote: Zip them on the fly, then download the zip. wch2001 a écrit : in the folder:

Re: Wicket placeholder for tr component causing invalid markup

2009-01-26 Thread Thies Edeling
the_adam wrote: Pills wrote: I'm pretty sure what you need is wicket:enclosure [1] instead That would be the case if I've wanted to hide certain rows forever, unless I'm largely mistaken. I want to be able to switch the visibility of certain table rows and since Wicket's AJAX works by

@SpringBean attr null after back button

2009-01-28 Thread Thies Edeling
Spring injected beans using the @SpringBean annotation seem to be null when I return to a page using the back button. I now reinject them manually using the InjectorHolder but I was wondering if this is expected behaviour or that something in my setup is wrong. thx Thies

Re: @SpringBean attr null after back button

2009-01-28 Thread Thies Edeling
it isn't, that's what surprised me as it's a normal field. Igor Vaynberg wrote: make sure you dont declare those fields as transient. -igor On Wed, Jan 28, 2009 at 10:00 AM, Thies Edeling th...@rrm.net wrote: Spring injected beans using the @SpringBean annotation seem to be null when I

Re: @SpringBean attr null after back button

2009-01-28 Thread Thies Edeling
, Jan 28, 2009 at 11:44 AM, Thies Edeling th...@rrm.net wrote: it isn't, that's what surprised me as it's a normal field. Igor Vaynberg wrote: make sure you dont declare those fields as transient. -igor On Wed, Jan 28, 2009 at 10:00 AM, Thies Edeling th...@rrm.net wrote: Spring

Re: Graphs, Charts and Wicket

2009-02-10 Thread Thies Edeling
Works nicely but how to initialize the chart when the panel is loaded through an ajax req/res ? Is there a javascript method that writes out the Flash object tag ? That seems to be completely missing. On Mon, Feb 2, 2009 at 10:28 AM, Maarten Bosteels mbosteels@gmail.comwrote: Also have a

Re: Graphs, Charts and Wicket

2009-02-12 Thread Thies Edeling
. This will make evaluate the javascript and therefore add the flash object. -PY Thies Edeling-2 wrote: Works nicely but how to initialize the chart when the panel is loaded through an ajax req/res ? Is there a javascript method that writes out the Flash object tag ? That seems to be completely

Re: wicket panels and parent class

2008-09-29 Thread Thies Edeling
And then have to cast it to the class of the parent.. which kinda kills the independent component based idea of reusable panels. Why not pass along the userid when constructing? Or fetch it from the session. Michael Sparer wrote: getParent() ? Steve Swinsburg-2 wrote: Hi all, I'm a

Re: ListView - modify css for some column

2008-09-29 Thread Thies Edeling
radovan wrote: Hallo community, my code looks like this: listView = new ListViewMyItem(collectionIterator, listOfMyItems) { @Override protected void populateItem(ListItemMyItem item) { MyItem myItem = (MyItem)

Re: Wicket integration with good charts api

2008-11-05 Thread Thies Edeling
Maarten Bosteels wrote: I have a similar requirement and played a bit with Open Flash Charts. [1] It took little effort to integrate wicket + ofc4j [2] + swfobject [3] [1] http://teethgrinder.co.uk/open-flash-chart-2/glass-bar-chart.php [2] http://code.google.com/p/ofcj/ [3]

Use provided head section

2008-11-10 Thread Thies Edeling
Hello, At my current project the header and footer of each page is generated by a CMS, Fatwire, and provided as plain html. The generated header includes the head section (with lots of javascript/css includes) and some layout tags. In a JSP application the header/footer were jsp:included

Re: Use provided head section

2008-11-10 Thread Thies Edeling
into IHeaderContributor. --Charlie. 2008/11/10 Thies Edeling [EMAIL PROTECTED] Hello, At my current project the header and footer of each page is generated by a CMS, Fatwire, and provided as plain html. The generated header includes the head section (with lots of javascript/css

Re: Use provided head section

2008-11-10 Thread Thies Edeling
#Wicket%27sXHTMLtags-Elementwicket:head Otherwise, I'd say look into IHeaderContributor. --Charlie. 2008/11/10 Thies Edeling [EMAIL PROTECTED] Hello, At my current project the header and footer of each page is generated by a CMS, Fatwire, and provided as plain html. The generated

Re: Open Source projects using Wicket

2009-10-16 Thread Thies Edeling
eHour is using Wicket (1.3, not yet migrated to 1.4). Site at http://www.ehour.nl/ with the svn repo at http://svn.te-con.nl/repos/ehour/trunk Dave B wrote: Hi, I'm in the process of evaluating Wicket (after an arduous JSF project, that has made us re-evaluate our web platform.) I've read

Re: confirmation component

2009-10-19 Thread Thies Edeling
haha! back to the 80'ies with that quote :)) Martijn Dashorst wrote: link.add(new SimpleAttributeModifier(onclick, return confirm('Are you sure you want to play global thermonuclear war?');)); Martijn On Mon, Oct 19, 2009 at 2:37 PM, Md. Jahid Shohel ja...@outscore.se wrote: Hi, Is there

TabbedPanel, tabsVisibilityCache throws IndexOutOfBounds

2009-12-01 Thread Thies Edeling
With wicket extensions 1.4.3, TabbedPanel throws an IndexOutOfBounds exception on the tabsVisibilityCache array when adding more tabs after the panel is rendered. The onBeforeRender method calls the isTabVisible method which initializes an array of booleans for visibility caching. The length

Re: TabbedPanel, tabsVisibilityCache throws IndexOutOfBounds

2009-12-01 Thread Thies Edeling
ok, https://issues.apache.org/jira/browse/WICKET-2594 created Igor Vaynberg wrote: yep, with a testcase -igor On Tue, Dec 1, 2009 at 5:14 AM, Thies Edeling th...@rrm.net wrote: With wicket extensions 1.4.3, TabbedPanel throws an IndexOutOfBounds exception on the tabsVisibilityCache array

Re: Help with Wicket Adoption Numbers

2010-01-11 Thread Thies Edeling
The e-ticket application of the Dutch railways (NS) uses Wicket as well, https://www.ns.nl/eticket/ticket On 1/8/2010 10:32 AM, Martijn Dashorst wrote: The dutch railways use wicket in at least one of their online apps (http://eropuit.nl), I know some dutch government agencies are using

Re: How To Download Excel File?

2009-03-31 Thread Thies Edeling
I could be wrong - but maybe the question is about how best to structure this in Wicket .. it's just that easy (this is Scala, not Java): add( new Link( ImageLink.ID_LINK ) { def onClick = { val resourceStream = new ByteArrayResourceStream( xlsExporter.createExcel,

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Thies Edeling
+1 but only because it's april fool's day :) Martijn Dashorst wrote: The Wicket PMC has discussed the following action. Because I think it is prudent that the Wicket community keeps evolving with the state of Java, I've created a board resolution to rename Wicket to WicketFX (thanks Igor for

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Thies Edeling
Marko Sibakov wrote: Someone has already made logo for us http://3.bp.blogspot.com/_hXCPcd3owoI/RwvVRW1wlBI/ACE/UcDATzR4F9c/s1600/logo.jpg including lens flare, glow around the characters and textured font. now we just need it to rotate aka amiga demo style :)

Re: Charts with wicket

2009-04-02 Thread Thies Edeling
Jan Kriesten wrote: How is it possible to do charts (cheese, bars, radard etc) with wicket (in Ajax, Java etc) ? you may want to take a look at jfreechart. or use open flash chart: http://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html

Extending two panels with combined markup

2009-08-13 Thread Thies Edeling
Hi all, I have two panels, panel A B where panel B extends panel A. When using panel B but without giving it it's own markup file it defaults to using A's markup. Now I only want to define a different fragment for panel B but still reuse all of A's markup, is this possible? The

Re: AjaxFormChoiceComponentUpdatingBehavior on RadioGroup

2010-04-09 Thread Thies Edeling
and how to wickettest an AjaxFormChoiceComponentUpdatingBehavior on a RadioGroup? Setting the value in a test is no problem but it never executes the behavior On 04/09/2010 02:45 PM, Per Newgro wrote: Am 09.04.2010 14:15, schrieb Robert Gründler: Wicket, Spring, DB4O You want this to be

Re: Can I develop without recompiling/restarting after every change?

2010-05-31 Thread Thies Edeling
Indeed JRebel reloads class structure changes as well. A very time-saving in combination with jetty. The sysdeo plugin that was recommended earlier is very outdated, hasn't been updated in 3 years. On 05/31/2010 06:01 PM, John Krasnay wrote: This is how I work too. It uses the hot swap

Wicketstuff down?

2010-06-12 Thread Thies Edeling
wicketstuff.org seems to be down, can someone start its Tomcat or whatever it's running? thx! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wiQuery components with server side state - live demo

2010-06-12 Thread Thies Edeling
Is this project still alive? The URL below now prompts for a username/password. Thx! On Wed, Mar 10, 2010 at 1:10 AM, Cemal Bayramoglu jweekend_for...@cabouge.com wrote: http://labs.jweekend.com/public/grid/GridRowExpanderPage On 3 March 2010 18:20, John Armstrong siber...@siberian.org

Re: Welcome Martin Grigorov as a core team member

2010-07-19 Thread Thies Edeling
hey Martin, congratulations! On 07/19/2010 06:58 PM, Jeremy Thomerson wrote: The Wicket team is happy to announce that Martin Grigorov was invited to join the Wicket team as a committer and PMC member, and he accepted! Martin's relentless patience, high quality patches and sustained energy

Re: Tomcat 7 stylesheet problem

2010-08-06 Thread Thies Edeling
It's an odd thing with Tomcat. Do you have an index.html or index.jsp in your root dir? Remove that and suddenly it works. See the comments in https://issues.apache.org/jira/browse/WICKET-1205 On 08/06/2010 10:57 AM, PDiefent wrote: Hello, I tried to start my Wicket application with the new

Re: eHour

2010-12-24 Thread Thies Edeling
Heyy that looks familiar :) On Dec 24, 2010, at 16:12, Martin Grigorov mgrigo...@apache.org wrote: ~tedeling++ ;-) On Fri, Dec 24, 2010 at 3:42 PM, moèz ben rhouma benrhouma.m...@gmail.comwrote: A framework for timesheet management based on Wicket: eHour.

Re: documentation

2013-01-22 Thread Thies Edeling
Wicket is open source, if you feel that the documentation is lacking - feel free to contribute. On Jan 22, 2013 5:54 PM, Philippe Demaison ph.demai...@gmail.com wrote: Hi Ondra and Kees, Are you kidding ? Are you saying that I need to - read a book released in 2009 covering wicket 1.3 ? -

IPropertiesLoader in 6.4

2013-01-22 Thread Thies Edeling
Hiya, I'm upgrading my application (quick plug: www.ehour.nl :) from Wicket 1.4 to 6.4 - yes, a bit of a leap :). There's one thing I struggle with and that's a custom property loader that I'm using. In 1.4 I extended PropertiesFactory.IPropertiesLoader which had a public Properties

Re: IPropertiesLoader in 6.4

2013-01-22 Thread Thies Edeling
, It seems this ImputStream comes from IResourceStream resourceStream = context.getResourceStreamLocator() .locate(clazz, fullPath); on PropertiesFactor#load. So maybe you can hook onto that? On Tue, Jan 22, 2013 at 8:41 PM, Thies Edeling th...@rrm.net wrote: IPropertiesLoader

Close tag not found while it's there

2013-01-23 Thread Thies Edeling
With Wicket 6.5.0 I get a close tag not found error in one of my panels (worked for 1.4.x). Looking at the markup I don't see any obvious problems. Unexpected RuntimeException Last cause: Close tag not found for tag: wicket:container wicket:id=projectStatus id=id012. For PlaceholderPanel

Re: Close tag not found while it's there

2013-01-23 Thread Thies Edeling
Thanks, I passed in the wrong component for replacement :) On 01/23/2013 08:15 PM, Bas Gooren wrote: Is PlaceholderPanel a component defined by your application? It does not allow nested wicket components. Met vriendelijke groet, Kind regards, Bas Gooren Op 23-1-2013 20:03, schreef Thies

Re: Rendering order of header contributions

2013-03-20 Thread Thies Edeling
, Thies Edeling tedel...@gmail.com wrote: Hello, Using Wicket 6.5.0, how can I change the order on how Wicket renders the head section. I have an AbstractBasePage which every page extends, in this page I have: wicket:head meta http-equiv=X-UA-Compatible content=IE=9; IE=8; IE=7; IE=EDGE

Re: Rendering order of header contributions

2013-03-20 Thread Thies Edeling
(); if (headerItem.getString().toString().contains(X-UA-Compatible)) { return -1; } } return 0; } }); On Wed, Mar 20, 2013 at 1:01 PM, Thies Edeling tedel...@gmail.com wrote: Thanks! On Wed, Mar 20

Re: Rendering order of header contributions

2013-03-20 Thread Thies Edeling
haha, well it's not the cleanest code there is :) On Wed, Mar 20, 2013 at 5:39 PM, Martin Grigorov mgrigo...@apache.org wrote: Thanks for sharing! P.S. Someone may compare Wicket with Perl now :-) On Wed, Mar 20, 2013 at 6:32 PM, Thies Edeling tedel...@gmail.com wrote: In the end I went

Re: ModalWindow bug - unable to close when added AjaxButton in content of the window

2007-12-16 Thread Thies Edeling
Was there any resolution for this? I have the same thing with rc2 with a valid form. From the javascript console: *INFO: * Initiating Ajax POST request on ../../?wicket:interface=:4:39:::0:2random= 0.745044540904514 *INFO: *Invoking pre-call handler(s)... *INFO: *Received ajax response (457

Re: ModalWindow bug - unable to close when added AjaxButton in content of the window

2007-12-16 Thread Thies Edeling
never mind, seems it's the same as https://issues.apache.org/jira/browse/WICKET-1003 Thies Edeling wrote: Was there any resolution for this? I have the same thing with rc2 with a valid form. From the javascript console: *INFO: * Initiating Ajax POST request on ../../?wicket:interface=:4:39

Multiple AjaxFormSubmitBehavior's on the same form

2008-01-24 Thread Thies Edeling
Hi all, I have a Form which gets submitted by an AjaxButton. Validation of the FormComponents is triggered by AjaxFormValidationBehavior. Both add an AjaxFormSubmitBehavior to the form which bite eachother a bit. When the form is submitted by the AjaxButton the AjaxFormValidationBehavior is

Re: Multiple AjaxFormSubmitBehavior's on the same form

2008-01-25 Thread Thies Edeling
to submit it, regular buttons are sufficient (they don't even have to be controlled by wicket). If you'd like to add an additional Ajaxbutton that does its own stuff (i.e. you don't want it to submit the form) you can setDefaultFormProcessing to false hope that helps Michael Thies Edeling wrote: Hi

Re: Is wicket an efficient, enterprise level web framework?

2008-03-17 Thread Thies Edeling
or it means that JSF development is a slow process and you need a lot of devs to meet a deadline ;) Vitaly Tsaplin wrote: I am just looking at the number of job offers for JSF :) It's a lot! That demand means that there are a lot of development in JSF. On Mon, Mar 17, 2008 at 11:38 AM,

Re: South African Wicket Users?

2008-05-08 Thread Thies Edeling
Plenty of such companies around in the Netherlands it seems. Search through the list archives for ideas :-) Topicus, Xebia, Servoy, Hippo, Finalist to name a few. Good knowledge of Dutch is probably required, especially if you want to work outside of 'de randstad'. Hi there from the

Incorrect error message?

2014-01-07 Thread Thies Edeling
Hi With 6.12.0 I have: val border = new Border(border) val l = new Label(l, label) l.setOutputMarkupId(true) border.add(l) and when handling an ajax call, I'm add/replacing it in the wrong spot in the hierarchy: val replacement = new Label(l, labe2l) replacement.setOutputMarkupId(true)

Support for optgroup ?

2014-06-04 Thread Thies Edeling
Is there any support for optgroup's in Wicket? I can only find some examples using ListView's and other hacky solutions so I'm guessing there isn't :) Thanks ! gr Thies

Re: Support for optgroup ?

2014-06-05 Thread Thies Edeling
thanks! On Thu, Jun 5, 2014 at 1:48 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Look at: http://mail-archives.apache.org/mod_mbox/wicket-users/200912.mbox/%3c303141550912040641r1e00841dudaacfefda9497...@mail.gmail.com%3E 2014-06-05 1:41 GMT+03:00 Thies Edeling tedel

Re: Support for optgroup ?

2014-06-05 Thread Thies Edeling
, /optgroup); } 2014-06-05 9:37 GMT+03:00 Thies Edeling tedel...@gmail.com: thanks! On Thu, Jun 5, 2014 at 1:48 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Look at: http://mail-archives.apache.org/mod_mbox/wicket-users/200912.mbox

Wicket on Heroku with multiple dyno's

2015-05-05 Thread Thies Edeling
Hi, I can't seem to get a Wicket app running on Heroku with multiple dyno's. Heroku doesn't have sticky sessions so I need a form of distributed sessions. I found a few old threads on running Wicket without sticky sessions but the solutions either do not work or I'm missing something. My stack

Re: Wicket on Heroku with multiple dyno's

2015-05-06 Thread Thies Edeling
, Thies Edeling tedel...@gmail.com wrote: Hi, I can't seem to get a Wicket app running on Heroku with multiple dyno's. Heroku doesn't have sticky sessions so I need a form of distributed sessions. I found a few old threads on running Wicket without sticky sessions but the solutions

Re: wicket 10 production ready plan

2024-01-20 Thread Thies Edeling
Great work, thanks Martin and the rest of the team! Thies On Wed, Jan 10, 2024, 07:29 Martin Grigorov wrote: > Hi, > > We work on the non-technical tasks (press release, announcement, etc.). > IMO it should be released in the next few weeks! > > Martin > > On Wed, Jan 10, 2024 at 7:13 AM any