Re: Persistence.xml problem

2010-04-26 Thread Nico Guba
I can assure you that there are no apparent problems/conflicts in using EclipseLink alongside Wicket. I'm doing it constantly :) It is likely that there is an issue with how your IDE is setup or packages the files. Some tools write their own META-INF directory in a war instead of using the

Re: Back button

2010-04-26 Thread Douglas Ferguson
So does this mean that if you won't true BackButtom support you should swallow all exceptions. That doesn't seem right.. D/ On Apr 25, 2010, at 11:26 AM, James Carman wrote: I meant page store, not session store. On Sun, Apr 25, 2010 at 12:26 PM, James Carman jcar...@carmanconsulting.com

RE: Back button

2010-04-26 Thread Martin Asenov
Hello, everyone! I was off during the weekend, that's the reason I didn't write. The issue occurs when: I've got a repeater with cells (a calendar). Every cell has its own day label (a link that opens a modal window). The modalwindowcallback is set on the modal window that refreshes the

Shadow text on input fields

2010-04-26 Thread Josh Kamau
Hi guys; I would like to put some shadow text on the form input fields that disappears when one starts editing the field. The kind that appears on facebook fields. How do i do it. Most likely its not a wicket issue but i really need assistance in this. Am not very good in javascript. Kind

RE: Back button

2010-04-26 Thread Martin Asenov
I found the solution https://issues.apache.org/jira/browse/WICKET-923 Best, Martin -Original Message- From: Martin Asenov [mailto:mase...@velti.com] Sent: Monday, April 26, 2010 9:36 AM To: users@wicket.apache.org Subject: RE: Back button Hello, everyone! I was off during the

Re: Shadow text on input fields

2010-04-26 Thread Martijn Dashorst
If you can get away with it, you can use HTML5's placeholder text: http://diveintohtml5.org/forms.html Martijn On Mon, Apr 26, 2010 at 9:19 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; I would like to put some shadow text on the form input fields that disappears when one starts

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
Thanks Marjtin On Mon, Apr 26, 2010 at 11:27 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: If you can get away with it, you can use HTML5's placeholder text: http://diveintohtml5.org/forms.html Martijn On Mon, Apr 26, 2010 at 9:19 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi

Re: Wicket and Guice / legup / warp persist?

2010-04-26 Thread nino martinez wael
I do it like this : http://pastebin.com/wcZ8XANh public class InjectorHolder { private static Injector injector; public InjectorHolder() { } @Inject public static void setInjector(Injector injector) { InjectorHolder.injector =

YUI 3 anyone?

2010-04-26 Thread Istvan Soos
Hi, Is there a cool best-practice or even better an integration library to use YUI 3? I know the standard generic way, I'm interested specifically in YUI 3... Thanks, Istvan - To unsubscribe, e-mail:

Re: Wicket and Guice / legup / warp persist?

2010-04-26 Thread nino martinez wael
I found out that If I injected in the constructor, when using inmethod grid hibernate would complain about a closed session. So solved it as the pastebin shows.. 2010/4/26 nino martinez wael nino.martinez.w...@gmail.com: I do it like this : http://pastebin.com/wcZ8XANh public class

Re: is there some Ajax behavior updating only a component internal state/data ?

2010-04-26 Thread Joseph Pachod
hi Martin I tried your code but had issues with it (bound to jetty + to instances of IOnChangeListener)). However, it made me look directly into AjaxFormComponentUpdatingBehavior.onEvent(..), where I ended keeping only formComponent.inputChanged(); . But then other issues started to rise:

Re: YUI 3 anyone?

2010-04-26 Thread danisevsky
I think wicket 1.5 will use YUI 3. You can look to svn: http://svn.apache.org/repos/asf/wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/_wicket/ajax/ 2010/4/26 Istvan Soos istvan.s...@gmail.com Hi, Is there a cool best-practice or even better an integration library to use

Re: YUI 3 anyone?

2010-04-26 Thread Ernesto Reinaldo Barreiro
Isn't this an experimental branch? Ernesto On Mon, Apr 26, 2010 at 12:34 PM, danisevsky danisev...@gmail.com wrote: I think wicket 1.5 will use YUI 3. You can look to svn: http://svn.apache.org/repos/asf/wicket/sandbox/knopp/experimental/wicket/src/main/java/org/apache/_wicket/ajax/

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-04-26 Thread Michał Letyński
I commited it to wicket-stuff tinymce project with proper example. W dniu 2010-04-21 10:23, Johan Haleby pisze: That would be really helpful. I'm struggling to get your example to work. - To unsubscribe, e-mail:

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
I wish we could have something like myTextField.setDefaultText(Type text here); On Mon, Apr 26, 2010 at 11:55 AM, Josh Kamau joshnet2...@gmail.com wrote: Thanks Marjtin On Mon, Apr 26, 2010 at 11:27 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: If you can get away with it, you

SV: Shadow text on input fields

2010-04-26 Thread Wilhelmsen Tor Iver
The problem is not the Wicket side of things, but the browser side. Should Wicket test for HTML 5 support, and fall back to a Javascript hack? - Tor Iver -Opprinnelig melding- Fra: Josh Kamau [mailto:joshnet2...@gmail.com] Sendt: 26. april 2010 13:29 Til: users@wicket.apache.org

Re: Shadow text on input fields

2010-04-26 Thread Josh Kamau
Should Wicket test for HTML 5 support, and fall back to a Javascript hack? I would really be glad if it did this. Am working on a public facing web application and i cant be guaranteed that users' browsers will have HTML5 support. Kind regards. Josh On Mon, Apr 26, 2010 at 2:31 PM,

Re: Shadow text on input fields

2010-04-26 Thread Witold Czaplewski
If you don't want to use JavaScript, you can still try it with CSS and images, like HTML: input class=name / CSS: input.name {background:url(name.png)} input.name:focus {background:none} But the problem is, if you leave the field the image returns. :) Witold Am Mon, 26 Apr 2010 14:28:57 +0300

Form submit with tinymce

2010-04-26 Thread Robert Kimotho
Hello guys, I'm trying to submit a form (including tinymce content and an emoticon). The problem I'm having is that the emoticon does not get displayed at the destination only some text. does anyone know what to do. Thanks.

Re: Back button

2010-04-26 Thread Steve Swinsburg
Looks like an issue with Firefox only though, as per the JIRA [1]. If you follow the recommendation in the JIRA, does that fix the problem? cheers, Steve [1] https://issues.apache.org/jira/browse/WICKET-923 On 26/04/2010, at 5:56 PM, Pointbreak wrote: That browser cache issue is what I

DataView disappearing after AJAX update

2010-04-26 Thread Reinout van Schouwen
Hi, I'm having trouble figuring out the following problem. I have a div (coupled to a WebMarkupContainer) containing a form and a list. The list is populated with a DataView, which gets its data from a SortableDataProvider that I have implemented according to the repeater examples provided on

RE: Back button

2010-04-26 Thread Martin Asenov
Yes, it does... Best, Martin -Original Message- From: Steve Swinsburg [mailto:steve.swinsb...@gmail.com] Sent: Monday, April 26, 2010 3:19 PM To: users@wicket.apache.org Subject: Re: Back button Looks like an issue with Firefox only though, as per the JIRA [1]. If you follow the

Re: Form submit with tinymce

2010-04-26 Thread Steve Swinsburg
Whats the raw content behind the text containing the emoticon when you submit? Is the emoticon represented as just a :) for example? If so you'll need to parse the output and render as the images. A graphical editor is just a fancy wrapper around text. cheers, Steve On 26/04/2010, at 10:03

Re: Form submit with tinymce

2010-04-26 Thread Robert Kimotho
Thanks for the quick reply, I have used firebug to inspect the code, that tinymce saves. here it is :- img title=Cool src=resources/wicket.contrib.tinymce.InPlaceEditBehavior/tiny_mce/plugins/emotions/img/smiley-cool.gif border=0 alt=Cool / the only thing that gets displayed is the title and the

SOAP WS client gets less results when run through wicket

2010-04-26 Thread Omar Laurino
Hi, I am experiencing a quite weird problem with wicket. Notice that I'm working to a project which counts several thousands of lines of code, so unless I understand where should I look for the problem, I can't post any relevant code. However, I am pretty confident the problem is somehow wicket

inmethod grid / Delete/add a row?

2010-04-26 Thread nino martinez wael
Hi Are there any built in functionality to delete or add rows with inmethod grid? Or should I just roll my own? regards Nino - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

FileUploadField within RepeatingView

2010-04-26 Thread Giovanni Cuccu
Hi, I'm trying to build a form with multiple file upload fields. Each upload field has a companion text field used for describing the file content. I'm using a form with a RepeatingView: here is a simple code snippet: private FileUpload upload0; private

GAE loses shared resources

2010-04-26 Thread Jacob Brookover
Hello all, It’s been 2 weeks with no suggestions, so I figured I would give this another shot. I¹m running Wicket on Google App Engine. ?Things have been going fairly well, but I¹ve encountered a new issue. ?GAE, at any moment, can wipe and restart your application. ?In doing so, you lose

Re: GAE loses shared resources

2010-04-26 Thread Igor Vaynberg
see org.apache.wicket.extensions.Initializer for an example of how to registered sharedresources on startup -igor 2010/4/26 Jacob Brookover jbrooko...@cast.org: Hello all, It’s been 2 weeks with no suggestions, so I figured I would give this another shot. I¹m running Wicket on Google App

Re: Shadow text on input fields

2010-04-26 Thread Stefan Jozsa
CSS: .inputHint { color: #66; } Java: add(new AttributeModifier(value, true, new AbstractReadOnlyModelString() { @Override public String getObject() { return yourHintText; } })); add(new AttributeModifier(class, true, new

Asynchronous DataStore queries on GAE with Twig-persist and other DataStore related problems

2010-04-26 Thread Piotr Tarsa
Hello, I want to use Wicket with GAE and exploit all GAE features but some problems arise. 1. I'm looking for a good solution for asynchronous simulteanous queries in Wicket. DataStore has a functionality of asynchronous queries so I would want to be able to fire various queries before rendering

Re: WicketTester fails with a custom WebRequestCodingStrategy

2010-04-26 Thread Nikita Tovstoles
could you please post the value of Location (302) header? On Sat, Apr 24, 2010 at 8:41 PM, Kent Tong k...@cpttm.org.mo wrote: Hi Martin, You may take a look at http://wicketpagetest.sourceforge.net/ which will work for your case.