RE: Bug in CharSetUtil/Map?

2010-09-29 Thread Jan Willem Janssen
Hi, From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] file a jira with a quickstart See Wicket-3084: http://issues.apache.org/jira/browse/WICKET-3084. Regards, -- Jan Willem Janssen, M.Sc. software engineer, Development __ Planon B.V. Wijchenseweg 8 6537

SV: Too frequent page creation in portlet environment

2010-09-29 Thread Wilhelmsen Tor Iver
We are running Glassfish 3.0.1 + Liferay 5.2.3 and have some portlets using Wicket 1.4.9 (in deployment mode). These work fine on the platform when running on our local Windows developer PCs, but when deployed onto a Solaris server running the same software, forms stop working. Turns out the

Re: Estimated number of developers in the Wicket community

2010-09-29 Thread Maarten Bosteels
http://people.apache.org/~coar/mlists.html#wicket.apache.org Maarten On Tue, Sep 28, 2010 at 10:49 PM, Frank Silbermann frank.silberm...@fedex.com wrote: Chris Colman chr...@stepaheadsoftware.com Tue, Sep 28, 2010 at 2:41 PM: The 'popularity' test is very vague but I understand it's

wicket and ext-js

2010-09-29 Thread Frank van Lankvelt
I'm in the process of integrating Ext-JS into our Wicket application. So there are a number of questions, such as: What are your experiences of using wicket and ext together? Do these projects help at all, or do you rather roll a custom behavior each time? Is there some project that is not

RE: Estimated number of developers in the Wicket community

2010-09-29 Thread Chris Colman
Is there a way a program could extract a count of the participants (i.e. distinct e-mail addresses) in the archived mailing list for a variety of time periods (to show growth in user base)? That sounds like a good idea. It looks like they're moving towards Wicket: I built a sample app and

Re: how to get resource path of files in server to be used by wicket

2010-09-29 Thread elesi
is that compatible with mp3s? and what does urlFor() do? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-get-resource-path-of-files-in-server-to-be-used-by-wicket-tp2717381p2718760.html Sent from the Users forum mailing list archive at Nabble.com.

Can we integrate iLog jviews within wicket framework?

2010-09-29 Thread NBSubbaiah
Hi, Can we integrate iLog jviews within wicket framework? I request you to respond with the details how we can achieve this. Thanks and Regards, NBSubbaiah.

Re: Can we integrate iLog jviews within wicket framework?

2010-09-29 Thread Martin Grigorov
Can you explain with details what is iLog and jview ? On Wed, Sep 29, 2010 at 1:21 PM, NBSubbaiah nbsubba...@gmail.com wrote: Hi, Can we integrate iLog jviews within wicket framework? I request you to respond with the details how we can achieve this. Thanks and Regards, NBSubbaiah.

RE: Estimated number of developers in the Wicket community

2010-09-29 Thread Chris Colman
http://people.apache.org/~coar/mlists.html#wicket.apache.org Wow, looks like Wicket is one of the most popular projects of the Apache Software Foundation! Maarten On Tue, Sep 28, 2010 at 10:49 PM, Frank Silbermann frank.silberm...@fedex.com wrote: Chris Colman

Re: wicket and ext-js

2010-09-29 Thread Alexander Morozov
Hi, the integration projects, you mention above, seems inactive for a long time. Is it critical for your project to use exactly the Ext-JS javascript framework ? Have you looked at WiQuery project (jQuery integration) ? -- View this message in context:

Re: Can we integrate iLog jviews within wicket framework?

2010-09-29 Thread NBSubbaiah
Hi, iLog JViews is a visualization development system based on Java allowing Java GUI programmers to develop far more intuitive displays of information. Examples of such types of displays include schematics, workflow and process flow diagrams, command and control displays, network management

Re: ChoiceRender and many property expressions

2010-09-29 Thread Wilhelmsen Tor Iver
I need to render options in a MultipleSelectList using more then one field from a POJO. Is possible to use ChoiceRender selecting more then one property (for example passing it more then one property expression)? ChoiceRenderer is a convenience implementation of IChoiceRenderer, just make

Re: wicket and ext-js

2010-09-29 Thread Frank van Lankvelt
I haven't; the main reason being that we are using Ext-JS for another application we're developing and we'ld like to limit the number of technologies in our stack. We are already using a mix of custom developed javascript functionality and some standard YUI 2 components. A major motivation for

Re: wicket and ext-js

2010-09-29 Thread Fabio Fioretti
Hi, I am one of the developers behind wicket-ext. The project hasn't been updated lately even though it is still used, maintained and developed behind closed doors. We stopped updating it both because of lack of public interest (we have received only few external contributions) and because of

Re: wicket and ext-js

2010-09-29 Thread Frank van Lankvelt
hi Fabio, good to hear it is in active use and development! There might be more users than you think; perhaps you can get them to voice their enthousiasm. Might help to find the time to publish the changes? Concerning your example, some behaviors are definitively offered best as actual wicket

Re: AjaxEditableLabel uses wicketAjaxGet

2010-09-29 Thread Martin Grigorov
Then maybe you should use AjaxEditableMultiLineLabel (textarea behind) ;-) This is supposed to bring more data. On Wed, Sep 29, 2010 at 4:36 PM, cretzel mailinglists...@gmail.com wrote: It seems like AjaxEditableLabel uses wicketAjaxGet to send the input. This might cause errors if the input

Re: AjaxEditableLabel uses wicketAjaxGet

2010-09-29 Thread cretzel
Stupid me. Thx. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxEditableLabel-uses-wicketAjaxGet-tp2719139p2719168.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: wicket-auth-roles and spring security 3.x

2010-09-29 Thread yferahi
Hi James, I am trying to migrate your Wicket-advanced example to use Spring Security 3 and the Pre-authentication scheme (Letting SiteMinder do the authentication). Since it is in development mode, I configured a filter to mock siteMinder by setting some headers (SM_User, SM_Role).. I have

Re: Prevent guest session from expiring

2010-09-29 Thread Alec Swan
Hello, I decided to set MaxInactiveInterval to 0 in onAfterRender in order to prevent guest sessions from expiring. So, my code looks like this: @Override protected void onAfterRender() { super.onAfterRender(); ((ServletWebRequest)

Add Scrollbart to AjaxFallbackDefaultDataTable?

2010-09-29 Thread Shelli Orton
I am using an AjaxFallbackDefaultDataTable and would like to have vertical and horizontal scrollbars as part of the table component itself. One reason for this is we would like to not lose the column headers when scrolling vertically as we do with the browser scroll bars. Has anybody else

How to use jWicket ResizableBehavior

2010-09-29 Thread Sebastian
Hi, I'd like to make a DIV resizable. The JavaDoc of ResizableBehavior says I just need to add a new behavior instance to a Wicket component (in my case a WebMarkupContainer) to make it resizable. Doing so results in my HTML output referencing the minified jquery libs and containing code

Wicket Push for Java 5?

2010-09-29 Thread Sebastian
Hi, why is the wicket push module available in the Maven repo1 compiled with Java 6? I checked out the code and cannot find a single usage of any new Java 6 features (except the @Override annotation used on methods of implemented interfaces). I'm currently working in an environment where

Re: Add Scrollbart to AjaxFallbackDefaultDataTable?

2010-09-29 Thread Igor Vaynberg
you can probably accomplish this with css -igor On Wed, Sep 29, 2010 at 10:04 AM, Shelli Orton shelli.or...@sjrb.ca wrote: I am using an AjaxFallbackDefaultDataTable and would like to have vertical and horizontal scrollbars as part of the table component itself.  One reason for this is we

Basic validation question

2010-09-29 Thread LutherBaker
I am using a ModalWindow with a page containing a feedback panel, a form and several AjaxButtons (that close the ModalWindow) on submission or cancel. There are two required text fields. When I submit the form with empty fields (fails validation), I get a warning in the logs:

Re: Basic validation question

2010-09-29 Thread Igor Vaynberg
things that submit a form have both onsubmit and onerror handlers -igor On Wed, Sep 29, 2010 at 10:40 AM, LutherBaker lutherba...@gmail.com wrote: I am using a ModalWindow with a page containing a feedback panel, a form and several AjaxButtons (that close the ModalWindow) on submission or

Re: Wicket Push for Java 5?

2010-09-29 Thread Michael O'Cleirigh
Hi Sebastian, Its related to the dependencies of the wicketstuff-push. When I switched the wicketstuff build to use a real JDK 5 instead of JDK 6 in compatibility mode errors like this were seen: [INFO] [INFO] Error

Re: Wicket Push for Java 5?

2010-09-29 Thread Sebastian
Hi Mike, thanks for your resoponse. Maybe you can just have the push-comet module being compiled with Java 6? I am using the push.timer implementation currently. I recompiled it using Java5 and it works fine. Regards, Seb On 29.09.2010 19:55, Michael O'Cleirigh wrote: Hi Sebastian, Its

Reporting bugs for Wicketstuff components

2010-09-29 Thread Sebastian
Hi, where can I report bugs for wicketstuff components? Regards, Seb - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket Push for Java 5?

2010-09-29 Thread Rodolfo Hansen
The current comet code is reliant on servlet 3.0 which in turn requires java 6. You are correct regarding the timer implementation, If you send a patch separating the cometd out, so the rest of push can be java5. I'll push it, but push-parent trunk compiles against wicket 1.5 On Wed,

Re: Reporting bugs for Wicketstuff components

2010-09-29 Thread Martin Grigorov
Since wicketstuff.org/jira is not there anymore, can't we use some sf.netservice for this ? wicketstuff's svn is sf.net On Wed, Sep 29, 2010 at 8:02 PM, Sebastian nospam...@gmx.net wrote: Hi, where can I report bugs for wicketstuff components? Regards, Seb

Which component to use for Data Grid's with selectable items?

2010-09-29 Thread Chris Colman
I've just stumbled upon the inMethod Data Grid components in Wicket Stuff and they look and operate very nicely. Are they the current state of the art in terms of data grids with selectable rows or is there a native Data grid that supports selectable rows in the main wicket distribution now?

Bug in Wicket Push TimerChannelService when used with background threads

2010-09-29 Thread Sebastian
Hi, there is a problem in the Push TimerChannelService implementation: Callbacks do not work reliable when they are invoked from non-Web threads. The There is no application attached to current thread WicketRuntimeException will occur in such a case. The attached patch fixes this issue.

Save Data as CSV File

2010-09-29 Thread Shelli Orton
I have a data table and would like the user to be able to save the data locally as a csv file when they click a link or button. The docs for DownloadLink state that it will generate a save as dialog which is exactly what I want, but, it appears to only work with a file that already exists. I

Re: Which component to use for Data Grid's with selectable items?

2010-09-29 Thread Jeremy Thomerson
They're the best I've seen for this. I believe they're ASL2, but you can check the source to see. Jeremy Thomerson http://wickettraining.com -- sent from my smart phone, so please excuse spelling, formatting, or compiler errors On Sep 29, 2010 2:37 PM, Chris Colman chr...@stepaheadsoftware.com

Re: Save Data as CSV File

2010-09-29 Thread Antoine Angenieux
You can use the constructor that takes an IModelFile and pass a LoadableDetachableModel or AbstractReadOnlyModel in which you generate your file. Don't Forget to call setDeleteAfterDowload(true) on your DownloadLink to avoid filling your drive too fast! I do that all the times and as usually

Re: Basic validation question

2010-09-29 Thread LutherBaker
True - but neither Form.onSubmit or Form.onError give me an Ajax target object so they are out. I'm already handling onError for the AjaxFormComponentUpdatingBehavior but that only gets invoked onblur. Am I mistaken in thinking that the FeedbackPanel must be added to the target in order for it

Re: Basic validation question

2010-09-29 Thread Igor Vaynberg
ajaxbutton.onerror() is where you wabt to repaint the ajax target, inside form.onerror you can get the target via ajaxrequesttarget.get() -igor On Wed, Sep 29, 2010 at 1:40 PM, LutherBaker lutherba...@gmail.com wrote: True - but neither Form.onSubmit or Form.onError give me an Ajax target

Re: Save Data as CSV File

2010-09-29 Thread Peter Karich
Hi, this worked for me: WebResource export = new WebResource() { @Override public IResourceStream getResourceStream() { return new StringResourceStream(getTweetsAsString(), text/plain); } @Override protected void setHeaders(WebResponse response) {

Re: Bug in Wicket Push TimerChannelService when used with background threads

2010-09-29 Thread Jeremy Thomerson
On Wed, Sep 29, 2010 at 2:39 PM, Sebastian nospam...@gmx.net wrote: Hi, there is a problem in the Push TimerChannelService implementation: Callbacks do not work reliable when they are invoked from non-Web threads. The There is no application attached to current thread WicketRuntimeException

Lazy load exception with LoadableDetachableModel

2010-09-29 Thread Matt Schmidt
I am using LoadableDetachableModel's to load my persisted objects from the database, but I am still getting a lazy load exception when accessing a property that is a Set. For example: take persistent POJO Product that has this property, where ProductType is another persistent POJO: private

Re: Lazy load exception with LoadableDetachableModel

2010-09-29 Thread Igor Vaynberg
you need open-session-in-view filter -igor On Wed, Sep 29, 2010 at 2:53 PM, Matt Schmidt mschmid...@gmail.com wrote: I am using LoadableDetachableModel's to load my persisted objects from the database, but I am still getting a lazy load exception when accessing a property that is a Set. For

Re: Lazy load exception with LoadableDetachableModel

2010-09-29 Thread Jeremy Thomerson
On Wed, Sep 29, 2010 at 4:53 PM, Matt Schmidt mschmid...@gmail.com wrote: I am using LoadableDetachableModel's to load my persisted objects from the database, but I am still getting a lazy load exception when accessing a property that is a Set. For example: take persistent POJO Product that

Re: Lazy load exception with LoadableDetachableModel

2010-09-29 Thread James Carman
Are you detaching your model? If not, it could be returning a Product object that was obtained during a different Hibernate session. On Wed, Sep 29, 2010 at 5:53 PM, Matt Schmidt mschmid...@gmail.com wrote: I am using LoadableDetachableModel's to load my persisted objects from the database,

using link to open mail composer

2010-09-29 Thread fachhoch
below are some links I want , ul li # ARTMS User Guide /li li # ACF Audit Resolution Manual /li

StaticImage, Weblogic 10.3 and fast swap

2010-09-29 Thread N. Metzger
Hi all, I recently had to convert to weblogic 10.3 to run my project. I'd like to use its fast swap feature to get rid of constant redeploys while developing. Now, without fast swap, everything works fine. My project includes the StaticImage class proposed on this forum. The method that gives

Re: using link to open mail composer

2010-09-29 Thread James Carman
Try ExternalLink? On Wed, Sep 29, 2010 at 7:55 PM, fachhoch fachh...@gmail.com wrote: below are some links I want  ,                                                ul                                                        li # ARTMS User Guide /li                                          

Re: using link to open mail composer

2010-09-29 Thread fachhoch
what about open an external link in new window -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-link-to-open-mail-composer-tp2719980p2720084.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Basic validation question

2010-09-29 Thread LutherBaker
Thanks - works exactly as you said. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Basic-validation-question-tp2719449p2720103.html Sent from the Users forum mailing list archive at Nabble.com. -

Re Palette

2010-09-29 Thread Nivedan Nadaraj
Hi All, I have used the Palette successfully in another scenario where it was pretty straightforward, in that the bean/pojo has a selectedItmes and availableItems property on the bean. That was nice and clean and would like to do the same in the scenario below. If someone has any ideas do let me

Re: Re Palette

2010-09-29 Thread nivs
Hi Just wanted to make some corrections to the above snippet. private Palette initialiseRolePalette(ContainerForm containerForm, ModuleVO selectedModuleVO, ModuleVO availableModuleVO){

JFreeChart with clickable imagemap

2010-09-29 Thread James
Hi Guys, I followed the instructions in the wiki JFreeChart with clickable imagemaphttps://cwiki.apache.org/WICKET/jfreechart-with-clickable-imagemap.html to create a chart. I have a requirement whereby the chart has to be generated dynamically based on certain inputs. I managed to create the