Re: cryptomapper uses the same wicket-crypt params for each user

2015-07-04 Thread Steve Swinsburg
Thanks for the confirmation, Martin. Regards. On Sat, Jul 4, 2015 at 4:32 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, Yes. This is the correct way. It is the default in 6.19.0 On Jul 4, 2015 2:51 AM, Steve Swinsburg steve.swinsb...@gmail.com wrote: OK solved

Re: cryptomapper uses the same wicket-crypt params for each user

2015-07-03 Thread Steve Swinsburg
OK solved: getSecuritySettings().setCryptFactory(new KeyInSessionSunJceCryptFactory()); //diff key per user final IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this); setRootRequestMapper(cryptoMapper); On Fri, Jul 3, 2015 at 9:58 PM, Steve Swinsburg steve.swinsb

cryptomapper uses the same wicket-crypt params for each user

2015-07-03 Thread Steve Swinsburg
Application class I have: IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this); setRootRequestMapper(cryptoMapper); Wicket 6.18.0 Thanks, Steve

Re: Making a datatable more accessible

2015-06-21 Thread Steve Swinsburg
a reference to the row's model - that would remove the need to lookup the row object from the grandparent. Have fun Sven On 18.06.2015 14:15, Steve Swinsburg wrote: Hi all, I have a datatable and need to make it more accessible for screenreaders. I am using an AbstractColumn and setting

Making a datatable more accessible

2015-06-18 Thread Steve Swinsburg
, not directly within the TH itself. I need to add the 'scope=col' ARIA attribute to the TH but cannot access it (even via getParent()). Again, generated markup. Thanks for any assistance. regards, Steve

EditablePropertyColumn and a callback to save

2014-10-23 Thread Steve Swinsburg
of the cell. Is there a way to do this? Thanks, Steve

Re: EditablePropertyColumn and a callback to save

2014-10-23 Thread Steve Swinsburg
Perfect, thanks guys. cheers, Steve On Thu, Oct 23, 2014 at 10:27 PM, Martin Grigorov mgrigo...@apache.org wrote: Right! You have to override https://github.com/wicketstuff/core/blob/master/jdk-1.7-parent/inmethod-grid-parent/inmethod-grid/src/main/java/com/inmethod/grid/column/editable

Re: How to get this URL pattern working in newer versions of Wicket?

2014-10-22 Thread Steve Swinsburg
since I don't expose the pages directly and I feel that was the issue. I may need to fix this eventually if I start mounting pages and will post an update if I need to fix anything. Thanks for the pointers. cheers, Steve On Wed, Oct 8, 2014 at 4:32 PM, Martin Grigorov mgrigo...@apache.org wrote

Re: How to get this URL pattern working in newer versions of Wicket?

2014-10-07 Thread Steve Swinsburg
the browser stopped it. cheers, Steve On Tue, Oct 7, 2014 at 3:49 AM, Paul Bors p...@bors.ws wrote: Hey Steve, You should not mount it yourself given the long session ID of 'a79c7348-6c8b- 4912-8cc7-3b4419344f7f' since that will change anyhow. To understand how Wicket handles the URL mapping

Re: How to get this URL pattern working in newer versions of Wicket?

2014-10-07 Thread Steve Swinsburg
as there are filters that inject things like authorisation etc. cheers, Steve On Tue, Oct 7, 2014 at 8:06 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, On Mon, Oct 6, 2014 at 6:31 AM, Steve Swinsburg steve.swinsb...@gmail.com wrote: Hi all, I've been working on Wicket 1.4

How to get this URL pattern working in newer versions of Wicket?

2014-10-05 Thread Steve Swinsburg
not sure how to restore the old URL mapping strategy. Can anyone help? thanks, Steve

quickstart

2014-07-03 Thread Steve Lowery
Wicket Guys, FYI - Your quickstart page on wicket.apache.org is broken with a javascript error. Can't build a quick wicket app using the maven archetype. Probably a quick fix for you. -- IMPORTANT: This e-mail (including any attachments) is intended for the use of the individual or entity

Re: XSS in wicket. Wicket fault or my fault?

2014-01-30 Thread Steve
It looks like an EL expression but it's not wicket-el because it escapes output the same way wicket does... speaking of I must get off my butt and work out how to import it into wicketstuff... I've made all the changes that wicket 6.13 enabled. On 30/01/14 19:03, Martin Grigorov wrote: Hi, On

Re: Teaming up remotely

2014-01-29 Thread Steve
I would think that using common version control and just telling them to ignore any wicket tags or wicket attributes they see after you've modified the markup. That part is not too hard for them to get their head around. The difficulty I would think is when you start to split up html files to

Re: Teaming up remotely

2014-01-29 Thread Steve
I'm not sure how the MarkupParser would handle multiple wicket:panel tags in one file? How would it identify which instance of wicket:panel belonged to which java Panel? On 29/01/14 20:44, Lucio Crusca wrote: In data mercoledì 29 gennaio 2014 10:57:59, tho...@jarnot.de ha scritto: Is there

Re: Teaming up remotely

2014-01-29 Thread Steve
I think the lesson here is that designers will never be programmers and programmers will never be designers but each needs to have a little of the other or the end result will be functionaly useless static web pages (in the case of designers) or functional pages that look like a dogs breakfast.

wicket:containers as ajax targets

2014-01-17 Thread Steve
I'm wondering if there's a better solution to the way I've been solving a particular problem. When using listviews within a table I quite often do something like this: table wicket:container wicket:id=list tr tdrow 1/td /tr tr tdrow 2/td

6.13 migration. Failed on img src=#

2014-01-17 Thread Steve
Just tried to upgrade an app to 6.13 and it seems to be failing on this tag: img wicket:id=busyindicator src=#/ Image busyImage = new Image(busyindicator, busyIndicatorImageUrl); busyImage.add(AttributeModifier.replace(src, busyIndicatorImageUrl)); add(busyImage); [PackageResource name = #,

Re: Fwd: wicket:containers as ajax targets

2014-01-17 Thread Steve
know that you can not reattach the listview to the ajaxrequesttarget, you should add its container (the table for instance)... Hope this help, Sebastien. On Sat, Jan 18, 2014 at 2:57 AM, Steve shadders@gmail.com wrote: Wouldn't that result in multiple tbody tags? Is that valid

Re: OT: good java hosting

2014-01-16 Thread Steve
If you data layer is abstracted with JPA or JDO then google app engine might be an option? The backend datastore is not relational but it supports JPA and JDO interfaces so may not be too hard to coerce into the environment. Wicket-el example app runs on GAE. Although it doesn't have database

Re: [ANNOUNCE] Apache Wicket 6.13.0 adds free online user guide

2014-01-14 Thread Steve
+1 I've been tinkering in the guts of wicket for years, I read this this morning and in a few minutes it answered many questions I've been wondering about for a long time. Wonderful work wicket team :) On 14/01/14 22:50, Pierre Goupil wrote: +1, it is a pain-killer! :-) Cheers to all of you,

Re: Publish Javadoc or big number of Static pages

2014-01-10 Thread Steve
public class StaticPage extends Page implements IMarkupResourceStreamProvider, IMarkupCacheKeyProvider { private String staticPageFilename; public StaticPage(String staticPageFilename) { super(); this.staticPageFilename = staticPageFilename; } @Override

Re: Publish Javadoc or big number of Static pages

2014-01-10 Thread Steve
Actually here's a slightly better example using PageParameters instead. This will allow you to mount it using: WebApplication.get().mountPage(/static, StaticPage.class); Also demonstrates that you can inject your own wicket tags into the markup before returning it leaving the original markup

Re: Why is getDisplayValue in getDisplayValue final?

2014-01-07 Thread Steve
Have to agree with this. I've come across the 'final' issues many times in wicket and other libraries. It appears from my own experience with Wicket is that classes/methods are marked final if the developer can't think of a reason someone might want to extend it (Martin, I'm not actually

404 redirect before application is loaded by server

2014-01-05 Thread Steve
I've solved this problem before but can't remember how I did it. The wicket-el example app is running on google app engine which unloads the instance if it's not accessed for a period of time. This is ok if the next user hits the / url first but if they try to hit any mounted urls e.g. /ajax

Re: 404 redirect before application is loaded by server

2014-01-05 Thread Steve
simply invalidate the user session and have Wicket redirect to / when that happens? Another idea, have an Ajax timer refresh those resources so they don't time out :) Have a great day, Paul Bors On Jan 5, 2014, at 7:55 AM, Steve shadders@gmail.com wrote: I've solved this problem

Wicket-el example app and docs available

2014-01-02 Thread Steve
It started as simply wanting to use EL expressions in markup to avoid having to add lots of Labels in java code but as these things tend to do it just got bigger and bigger. Adding support for ListViews made wicket-el a much bigger beast. Since I'd come that far already I couldn't help myself

Re: wicket-el - is this a safe way to hook into wicket?

2013-12-22 Thread Steve
On 19/12/13 18:45, Martin Grigorov wrote: So far no one needed to add custom MarkupElements and that's why it is not very easy. You can fork Wicket and create a branch where you can make modifications to make it easier and later we can review the needed changes and probably apply them back

Re: wicket-el - is this a safe way to hook into wicket?

2013-12-19 Thread Steve
Why ModifiableMarkup has to be mutable ? Do you expect that the markup will change at runtime in some conditions ? I think what you need is a new impl of MarkupElement for the expressions. So org.apache.wicket.markup.Markup#markupElements will have more elements. Then when rendering starts

wicket-el - is this a safe way to hook into wicket?

2013-12-18 Thread Steve Coughlan
A few weeks back I made a post about the first version of universal expression language for wicket. Since then it's come quite a way. The initial version hooked into by implementing IMarkupResourceStreamProvider for markup owning MarkupContainers (Panel, Page etc...) and by regenerating markup

Re: Generating email from template outside request/response cycle

2013-12-13 Thread Steve
Derived from Wicket's ComponentRender class: https://bitbucket.org/shadders/wicket-el/src/a41127f0771a4b792255cfc0c2ec47c500db1b1b/src/main/java/com/shadworld/wicket/render/Renderer.java?at=default Not sure if it will solve the SpringBean problem but it it will work outside a wicket application.

Re: Thanks!

2013-12-06 Thread Steve
thumbs up to that... On 06/12/13 23:49, Bas Gooren wrote: Hi *, I have to say, the more I work with wicket, the happier I become. A big thank you! to both the excellent developers and those helping others on the mailing list! Wicket is a truly amazing piece of kit. Having recently played

Java EL for Wicket

2013-11-21 Thread Steve
This will probably horrify some of the wicket dev team. It's probably not the 'wicket way'. But I've been using wicket for years and there's plenty of thing you can do in many different ways but a few things that you just can't. An incidental but very useful part of this package in a Renderer

AjaxChannel usage

2013-08-28 Thread Steve Lowery
am doing it right. If I'm doing it wrong, can someone let me know how I can accomplish what I'm looking to do? Thanks, Steve

DataTable sort column descending

2013-06-14 Thread Steve Lowery
Is there an easy way to have a DataTable column sort descending the first time it is clicked on? The code in OrderByLink does the following: protected SortOrder nextSortOrder(final SortOrder order) { // init / flip order if (order == SortOrder.NONE) { return SortOrder.ASCENDING; } else { return

IAjaxCallListener getPrecondition

2013-04-22 Thread Steve Lowery
I am aware of the getPrecondition() method on IAjaxCallListener that I can use to prevent the ajax call from happening on the click of a link, button, etc, but I'm wondering if anything in the wicket framework can prevent the default altogether. Let me try to explain with an example of my use

Re: [Building Sakai] Charts Wicket Sakai

2013-02-11 Thread Steve Swinsburg
guide for Wicket: https://cwiki.apache.org/WICKET/migration-to-wicket-15.html https://cwiki.apache.org/WICKET/migration-to-wicket-60.html If you do it, please send a patch and I'll update the archetype. cheers, Steve On Wed, Feb 6, 2013 at 10:42 AM, Paul Bors p...@bors.ws wrote: I'm

Re: [Building Sakai] Charts Wicket Sakai

2013-02-07 Thread Steve Swinsburg
it, please send a patch and I'll update the archetype. cheers, Steve On Wed, Feb 6, 2013 at 10:42 AM, Paul Bors p...@bors.ws wrote: I'm not sure whick Sakai Archetype you're reffering to. Perhaps you can provide the maven coordinates you're using or tyring to use? However, if you're

Re: Charts Wicket Sakai

2013-02-05 Thread Steve Swinsburg
-to-wicket-15.html https://cwiki.apache.org/WICKET/migration-to-wicket-60.html If you do it, please send a patch and I'll update the archetype. cheers, Steve On Wed, Feb 6, 2013 at 10:42 AM, Paul Bors p...@bors.ws wrote: I'm not sure whick Sakai Archetype you're reffering to. Perhaps you can provide

Component to String

2013-01-24 Thread Steve Lowery
I found several threads on the user list about converting a Component into a String. There are at least 2 very valid use cases where doing this makes sense: 1. You are trying to create an html email to send out to your customers. Building that content out with wicket is a great way to do it.

Re: wicketstuff poms still depend on wicketstuff repo which no longer exists

2012-11-07 Thread Steve Swinsburg
at some stage we can upgrade :) cheers, Steve On 01/11/2012, at 7:20 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, You better build the projects locally. On Thu, Nov 1, 2012 at 1:31 AM, Steve Swinsburg steve.swinsb...@gmail.com wrote: Hi, Some artifacts in wicketstuff still

wicketstuff poms still depend on wicketstuff repo which no longer exists

2012-10-31 Thread Steve Swinsburg
versions of software at this time so the build is effectively broken until this is fixed. thanks, Steve - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: form with arbitrary number of fields

2012-10-31 Thread Steve Swinsburg
, Steve On 29/09/2012, at 2:39 PM, Ondrej Zizka ozi...@redhat.com wrote: On Fri, 2012-09-28 at 13:37 +0530, vineet semwal wrote: sorry somehow i didn't type last message correctly :) use a repeater and you can add your formcoponents to its items ,see listview/dataview FYC, http

AjaxErrorStrategy.INVOKE_FAILURE_HANDLER in wicket6

2012-10-24 Thread Steve Lowery
I see I can override the AjaxErrorHandlingStrategy in wicket6 to be AjaxErrorStrategy.INVOKE_FAILURE_HANDLER so that we don't get a 302 to the appropriate error page (InternalError, NotAuthorized, etc). My question is how do I do something useful with this? With only that change, the 500 error

form with arbitrary number of fields

2012-09-27 Thread Steve Swinsburg
, for example having two or more keywords for one item. Would the property in the backing model be a list for this item? Rather than a string for example? Are there any examples of a similar dynamic form? cheers, Steve

AjaxRequestAttributes.setAllowDefault

2012-08-30 Thread Steve Lowery
We have a dropdown menu based component (based off of twitter bootstrap) that needs to have the links' default allowed so the menu closes. We can create a subclass of AjaxLink that overrides the updateAjaxAttributes and does this, but then developers have to know either to use that specialized

form inputs to Labels

2012-08-16 Thread Steve Lowery
We have forms throughout our application that can be toggled from read-only to editable. The wicket framework will disable the form components which is great, but we'd rather have it display just the texts in a label. We can subclass TextField, TextArea, DropDownChoice, etc and override the

DataTable in wicket 6 using wicket:container

2012-08-01 Thread Steve Lowery
The DataTable was changed in wicket 6 to use wicket:container instead of span on the td and th elements ( https://issues.apache.org/jira/browse/WICKET-4224). While this fixed the issue described in the ticket, it can make dealing with the DataTable a little more cumbersome and introduces a new

ajax and browser back button in wicket 6

2012-07-24 Thread Steve Lowery
I did a search in the user list and found several references of various ways to solve the back button using ajax problem, but most were a few years old. I was wondering if wicket 6 does can do this out of the box now. One of the stated goals on the wicket site is that it will Fully solve back

How to localise the ${type} in error messages

2012-01-30 Thread Steve Mactaggart
, Steve

Re: How to localise the ${type} in error messages

2012-01-30 Thread Steve Mactaggart
Excellent, exactly what I needed. Thanks. On Tue, Jan 31, 2012 at 11:16 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: use a more specific key, such as IConverter.Integer=... -igor On Mon, Jan 30, 2012 at 4:12 PM, Steve Mactaggart st...@whitesquaresoft.com wrote: Hi all, We have

Re: Get Wicket to ignore wicket parameters

2012-01-19 Thread Steve Fatula
cluttering the application with it. Yeah, this is true. Also, by using mod_rewrite, one can tell the search engines that it's a permanent change so hopefully over time, most of the old links fade away. Steve - To unsubscribe

Internationalisation issue with WiQuery

2011-11-29 Thread Steve Mactaggart
it is corrupted. Anyone got any pointers? Cheers, Steve

Re: Internationalisation issue with WiQuery

2011-11-29 Thread Steve Mactaggart
, 2011/11/29 Steve Mactaggart st...@whitesquaresoft.com: Hi All, We have completed a pretty extensive localisation of our large wicket application with great success, just about every string in the application is now happily served from our language xml files. But we have noticed some

Re: Internationalisation issue with WiQuery

2011-11-29 Thread Steve Mactaggart
Seems it may have been a known bug in wiQuery, I was wrong in thinking we were running the latest wiQuery, and now post the update the generated JS files have the correctly localised text strings. 2011/11/30 Steve Mactaggart st...@whitesquaresoft.com I'm pretty sure its all UTF-8, as the actual

Re: How to build a hudson/jenkins like live log viewer?

2011-11-20 Thread Steve Swinsburg
I've done something similar to this using the Tailer class from commons-io. cheers, Steve On 21/11/2011, at 12:59 PM, James wrote: Dear wicket community, In a project that I'm working on, I need to build a live log viewer or dynamic log viewer or refreshable log viewer. Much like how

Re: How to build a hudson/jenkins like live log viewer?

2011-11-20 Thread Steve Swinsburg
); thread = new Thread(tailer, THREAD_NAME); thread.start(); } } public void stopListener() { thread.interrupt(); } Interested to see your UI when you are done, please share! cheers, Steve On 21/11/2011, at 3:10 PM, James wrote: Clint

Re: What is the difference between Model , PropertyModel,CompoundPropertyModel?

2011-11-10 Thread Steve Swinsburg
Hi, There is some documentation about models on the wiki: https://cwiki.apache.org/WICKET/working-with-wicket-models.html cheers, Steve On 11/11/2011, at 3:33 PM, raju.ch wrote: Could someone please explain me the difference between Model , PropertyModel,CompoundPropertyModel? -- View

adding resources after ajax swap

2011-09-22 Thread Steve Lowery
I'm having an issue using resources after an ajax swap, in this case jquery. My home page does not have anything jquery related on it. There is an AjaxFallbackLink which swaps out the main content. The new content Panel has a jquery header contributor. I see this is being returned in the

Re: adding resources after ajax swap

2011-09-22 Thread Steve Lowery
: If I download the js file and do a response.renderJavascriptResource(new ResourceReference(MyClass.class, jquery.js)) as opposed to response.renderJavascriptReference( http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js;); it works. On Thu, Sep 22, 2011 at 2:28 PM, Steve Lowery slow

Re: adding resources after ajax swap

2011-09-22 Thread Steve Lowery
Is that a filter on my end? Would that go before or after my wicket filter mapping? Any helpful resources out there on this? I haven't dealt with OPTIONS methods before. On Thu, Sep 22, 2011 at 2:28 PM, Steve Lowery slow...@gatessolutions.comwrote: I'm having an issue using resources after

Re: adding resources after ajax swap

2011-09-22 Thread Steve Lowery
= request.getHeaderNames(); while (headerNames.hasMoreElements()) { System.err.println(headerNames.nextElement()); } } else { chain.doFilter(req, res); } } @Override public void init(FilterConfig arg0) throws ServletException { } } On Thu, Sep 22, 2011 at 3:18 PM, Steve Lowery slow...@gatessolutions.comwrote

serialization question

2011-08-15 Thread Steve Lowery
Is there a hook point to serialization of components? We would like to throw a WicketRuntimeException if we detect that we are about to attempt to serialize out an attached (in our case Hibernate) entity rather than using a LoadableDetachableModel and only serializing the id. I see I can

Re: Wicket - TinyMCE/FckEditor

2011-08-02 Thread Steve Swinsburg
I created a Wicket FCKEditor component some time back. It takes care of rendering the javascripts and all the rest for you and you just instantiate it like: add(new FCKTextArea(id)); If you would like this, drop me a line and I'll dig out the code. cheers. Steve On 02/08/2011, at 3:53 PM

wicketstuff site down

2011-07-06 Thread Steve Swinsburg
Hi all, The wicketstuff site is down http://wicketstuff.org/wicket/ Safari can’t open the page “http://wicketstuff.org/wicket/” because Safari can’t connect to the server “wicketstuff.org”.

Re: What is the status of wicketstuff dojo?

2011-07-01 Thread Steve Swinsburg
Ok, but even in that 1.4 branch it is missing dozens of classes that were present in the 1.3 version. They are also missing in the release artifacts. Can someone please migrate them from 1.3 to 1.4? Thanks, Steve On 01/07/2011, at 15:30, Attila Király kiralyattila...@gmail.com wrote

Re: What is the status of wicketstuff dojo?

2011-07-01 Thread Steve Swinsburg
that I don't use in my everyday work. So, hopefully someone that works on wicketstuff can! thanks, Steve On 01/07/2011, at 9:51 PM, Martin Grigorov wrote: How much ? :-) What's the problem you to do it ? You already use this library so you know how it works. On Fri, Jul 1, 2011 at 2:48

Re: What is the status of wicketstuff dojo?

2011-07-01 Thread Steve Swinsburg
Hi Bruno, Thanks, I wasn't aware that the project was actually disabled, since there are still releases going out (albeit non functional ones). Perhaps we'll just stick with 1.3 for now. If I get some time I'll get in touch to get a wicketstuff account. cheers, Steve On 01/07/2011, at 11:21

What is the status of wicketstuff dojo?

2011-06-30 Thread Steve Swinsburg
/java/org/wicketstuff/dojo11/markup/html Is the 1.3 source available anywhere? Is anyone maintaining dojo? thanks, Steve

Re: What is the status of wicketstuff dojo?

2011-06-30 Thread Steve Swinsburg
/jdk-1.5-parent/dojo-parent/dojo-api/src/main/java/org/wicketstuff/dojo11/markup/html Is someone able to migrate that and push a release? cheers, Steve On 01/07/2011, at 11:51 AM, Steve Swinsburg wrote: Hi, Does anyone know what the status of wicketstuff dojo is? I have an application

Re: Issue with internationalising the MultiFileUploadField component

2011-05-18 Thread Steve Swinsburg
create a quickstart app and attach it to a ticket.Test the quickstart with 1.4.17 too.On Wed, May 18, 2011 at 1:41 AM, Steve Swinsburgsteve.swinsb...@gmail.comwrote:Ok I've done that and when the webapp starts up I get this:INFO: 2011-05-18 09:36:53,246 Loading properties files fromja

Issue with internationalising the MultiFileUploadField component

2011-05-17 Thread Steve Swinsburg
. Is this a bug? If not, what might we be missing? Wicket 1.4.13 thanks, steve

Re: Issue with internationalising the MultiFileUploadField component

2011-05-17 Thread Steve Swinsburg
with the wicket id or something? Any ideas? Thanks Steve Sent from my iPhone On 17/05/2011, at 17:37, Martin Grigorov mgrigo...@apache.org wrote: Looking at MultiFileUploadField.java these are exactly the keys you have to use. Try to put them in MyApp_es.properties On Tue, May 17, 2011

Re: Issue with internationalising the MultiFileUploadField component

2011-05-17 Thread Steve Swinsburg
[Component id = homephone]]'; value: 'N?mero de tel?fono no v?lido' [http-8081-Processor19] Does that give you an idea of where the issue might be? thanks, Steve On 17/05/2011, at 10:26 PM, Martin Grigorov wrote: Enable debug level logging for org.apache.wicket.Localizer and see what is attempted

validation with link only

2011-03-22 Thread Steve Lowery
I have a Form object whose only child is an AjaxSubmitLink. The Form's onSubmit() calls to a service to delete its model object (from the underlying database). I would like to add validation to make sure that the model can be deleted (i.e. there are no foreign keys referencing it) before

Need a CodingStrategy to parse parameter from prefix

2011-03-17 Thread Steve Mactaggart
. Is there a way I can replace the entire WebRequestCodingStrategy to supply my own? I'm sure I'm missing something obvious here. Cheers, Steve

Re: Need a CodingStrategy to parse parameter from prefix

2011-03-17 Thread Steve Mactaggart
/apache/wicket/examples/requestmapper/LocaleFirstMapper.java?view=markup http://svn.apache.org/viewvc/wicket/trunk/wicket-examples/src/main/java/org/apache/wicket/examples/requestmapper/LocaleFirstMapper.java?view=markup It is much more simpler in 1.5. On Thu, Mar 17, 2011 at 1:17 PM, Steve

Re: 1.5.x javadoc

2011-01-27 Thread Steve Swinsburg
Wicket By Example has a section for the Javadocs, but it needs a refresh. http://wicketbyexample.com/api/ cheers, Steve On 28/01/2011, at 10:36 AM, Todd Wolff wrote: Hi, Is there a URL where I can pull up javadoc for latest 1.5 RC without having to checkout source and generate myself

1.5-RC1 maven source, javadoc, and tests

2011-01-26 Thread Steve Lowery
Looks like the source, javadoc and test artifacts for 1.5-RC1 published to the maven repo are empty. Can this be fixed please? Thanks, Steve

Re: Web search functionality

2010-12-09 Thread Steve Coughlan
The next step up from LIKE statements is fulltext search. http://devzone.zend.com/article/1304 If you want more advanced functionality and are prepared to spend a bit of time implementing have a look at the Apache Lucene library. If you're using Hibernate there's a neat way to integrate with

Re: ModalWindow update size

2010-11-27 Thread Steve Swinsburg
I just noticed that autosizing ModalWindows has made it into Wicket 1.5, heres the JIRA: https://issues.apache.org/jira/secure/attachment/12456436/fix-WICKET-1.4.x.patch Take a look at the patches, there is a method that sets the size of the window, might be something to borrow. cheers, Steve

objectautocomplete with first item selected

2010-11-07 Thread Steve Swinsburg
, if they move away from that field, the input is lost. I would like the first one to be chosen in that case. Has anyone does this already? thanks, Steve - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

where is the wicketstuff JIRA?

2010-11-07 Thread Steve Swinsburg
Hi all, I noticed that the wicketstuff JIRA has disappeared. It was taken down in April but has it come back, possibly in a new location? That XSS issue in JIRA was fixed quite some time ago. thanks, Steve - To unsubscribe, e

Re: objectautocomplete with first item selected

2010-11-07 Thread Steve Swinsburg
Ok this code allows a preselect: builder.preselect(); But tabbing away clears the field. I would like the selected option to be filled into the text field. thanks, Steve On 08/11/2010, at 10:14 AM, Steve Swinsburg wrote: Hi all, Using the ObjectAutocompleteTextField from Wicketstuff

Re: wicketstuff repo down again

2010-09-09 Thread Steve Swinsburg
Hi Mike, Excellent, thanks for the info. I was still on older versions of those artifacts (1.4.1). Will see about upgrading. regards, Steve On 08/09/2010, at 11:44 AM, Michael O'Cleirigh wrote: Hi Steve, Wicketstuff-core artifacts have been released through the oss.sonatype.org

wicketstuff repo down again

2010-09-07 Thread Steve Swinsburg
Hi all, The wicketstuff repo is down again. Is there any chance the tagged artifacts from the wicketstuff repo can be synced to a more reliable Maven repo (central even)? I have the ones I need in my own remote repo but this doesn't work for others that build my project. Thanks, Steve

Re: How to determine previous value in select after user change

2010-08-27 Thread Steve Mactaggart
. Is there anything like that around? I've looked through wicketstuff, but nothing jumped out at me. Cheers, Steve On Fri, Aug 27, 2010 at 4:35 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: class mydropdown extends dropdown { private object last; protected void updatemodel() { last

How to determine previous value in select after user change

2010-08-26 Thread Steve Mactaggart
in value? I hope that makes sense, if not let me know and I'll post a simple example. Cheers, Steve

Best Practice passing data between Bookmarkable pages

2010-08-17 Thread Steve Mactaggart
setting to null is right) Is this right or is there a more wicket way of doing this. Cheers, Steve

Re: Best Practice passing data between Bookmarkable pages

2010-08-17 Thread Steve Mactaggart
for setMetaData? or am I using it a dodgy way? I can forsee (fairly soon) a need to render more complex items than just a simple string and it seems that (as long as its Serializable) I can put anything in MetaData. Steve On Tue, Aug 17, 2010 at 7:23 PM, Josh Kamau joshnet2...@gmail.com wrote: HI Steve

Re: Remove support for Portlets in Wicket 1.5

2010-08-12 Thread Steve Swinsburg
-1 to removing it As soon as uPortal supports JSR-286 (and it does, just not in a release yet) I'll be using Wicket for my portlet development and have been training my team in readiness. At a minimum move it to wicketstuff. thanks, Steve On 12/08/2010, at 5:19 AM, Rodolfo Hansen wrote: I

Re: A beginner's tutorial

2010-08-05 Thread Steve Coughlan
I agree the 'model' is a very powerful concept that needs to be explained properly... However drawing on my own early experiences with with java frameworks I can say that the reasoning for why model's are valuable is difficult to understand until the principals of request lifecycle have been

KonaKart shopping cart integration

2010-08-02 Thread Steve Coughlan
I've been looking for a shopping cart solution that I can properly integrate with wicket. There's been a few threads on this list where people have indicated they were building one but as far as I know nothing has ever eventuated. I don't really want to build to whole engine from scratch so

Re: Forms in a base class

2010-08-01 Thread Steve Mactaggart
make sense. Steve On Wed, Jul 28, 2010 at 6:52 PM, Wolfgang wolfgang.bue...@exedio.comwrote: Jeremy Thomerson-5 wrote: you need to be adding the components to the form. you're currently adding them to the page itself. the component hierarchy is thus broken. on your child page

StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread Steve Swinsburg
bundle. I can't do this on the base page because the javascript component hasn't been added to the page at this stage. thanks, Steve smime.p7s Description: S/MIME cryptographic signature

Re: StringHeaderContributor from a panel added by AJAX

2010-07-02 Thread Steve Swinsburg
Thanks, but the ajax component is actually just a datepicker from jQuery so it's not Wicket related. I think I'll need to get my Javascript to load the message bundle directly so it doesn't need to go via Wicket. cheers, Steve On 02/07/2010, at 6:46 PM, nino martinez wael wrote: Im have you

Refreshing DataView fails if it was initially empty

2010-06-30 Thread Steve Hiller
suggestions on resolving this issue would be appreciated. Thanks so much, Steve - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: AjaxFormComponentUpdatingBehavior is not called when the textfield is set as required field.

2010-06-22 Thread Steve Mactaggart
The form will be validated first, and if there is no information entered the Required validation will fail and so the form will not be updated. Wicket ensures that the model object is always consistent by ensuring that the components are Validated before their value is pushed into the model. In

Re: FormComponentPanel's components onblur can't call validate?

2010-06-02 Thread Steve Mactaggart
changes the id and name it triggers the event which works, but the issue is that the AFCUB only submits the name textbox and not the id. Is there anyway (or another behaviour other than AjaxFormSubmitBehavior) that I can use to force BOTH inputs to be updated on the event? Cheers, Steve On Wed

Re: [announce] wicketstuff-core 1.4.7 released

2010-05-25 Thread Steve Mactaggart
Thanks for doing the work. Steve On Tue, May 25, 2010 at 1:48 AM, Michael O'Cleirigh michael.ocleir...@rivulet.ca wrote: Hello, Based on the positive reception for a 1.4.7 wicketstuff-core release, 4 positive votes (3 + mine) and no negative, I promoted the staged release

  1   2   3   4   >