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

2010-09-29 Thread Thierry Peng
It is ASL2 from the inmethod-grid-parent pom: The Apache Software License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt repo I don't know about the "state of the art" in terms of grids but I'm using this library in several proj

JFreeChart with clickable imagemap

2010-09-29 Thread James
Hi Guys, I followed the instructions in the wiki "JFreeChart with clickable imagemap" 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

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){ IChoiceRenderer

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

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: using link to open mail composer

2010-09-29 Thread James Carman
Try ExternalLink? On Wed, Sep 29, 2010 at 7:55 PM, fachhoch wrote: > > below are some links I want  , > > >                                                 >                                                         # ARTMS User > Guide >                                                         #

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

using link to open mail composer

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

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 wrote: > I am using LoadableDetachableModel's to load my persisted objects from the > database, but I am still gettin

Re: Lazy load exception with LoadableDetachableModel

2010-09-29 Thread Jeremy Thomerson
On Wed, Sep 29, 2010 at 4:53 PM, Matt Schmidt 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 has this propert

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

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 Set pr

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 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 will occu

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) { super.set

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 wrote: > > True - but neither Form.onSubmit or Form.onError give me an Ajax target > object so they are out

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: Save Data as CSV File

2010-09-29 Thread Antoine Angenieux
You can use the constructor that takes an IModel 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 with W

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" wrote: I've just stumbled

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 ha

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. R

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? ht

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 wrote: > Hi, > > where can I report bugs for wicketstuff components? > > Regards, > > Seb > > > -

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, 201

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

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: 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 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 cancel. > > There are

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

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 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 would like to not los

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 onl

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 like

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 come

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) this.getRequest()).getHttpServletRequest().ge

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 chang

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 unsubscr

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 wrote: > > It seems like AjaxEditableLabel uses wicketAjaxGet to send the input. This > might cause errors if the input is too large for a GET

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 b

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 t

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 mo

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 mak

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 displ

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: http://apache-wicket.1842946.n4.nabble.co

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 Tue, Sep 28

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

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

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 t

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 indexe

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 Tue, Sep 28, 2010 at 2:41 > PM: > >> > >> The 'popularity' test is very vague but I understand it's purpose, > >> they want

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

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