uncaught exception in wicket-ajax.js

2010-05-14 Thread Ivan Zinchenko
Hi all, I'm using ajax with wizard component and have a following problem. On one of my steps, I have a listview with check boxes inside and additional ajax link to submit. Everything works fine in chrome, but in firefox I usually get "chanel busy postponing..." in ajax debug. firebug shows some

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-14 Thread Muro Copenhagen
Hi Michal I appreciate you're effort spelling things out. I am still not sure on how to get it to work. When i add this dependency to my project it won't work: org.wicketstuff tinymce 1.4.7-SNAPSHOT And that makes sense since i can't find tha

proble with AjaxLazyLoad in IE7 and IE8

2010-05-14 Thread Yadav
Hi, I am using AjaxLazyLoad panel and it's working fine in mozilla firefox but in IE7 and IE8, it's not working. when i press F5 ( refresh page) than it's work. Please help !!! Thanks in advance. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/proble-with-AjaxLazyLoad

Re: AutoCompleteTextField uses wrong encoding?

2010-05-14 Thread Eike
Hi Matt some long time ago I had a similiar problem with AjaxEditableLabel. I used tomcat and there you need to configure the connector using "useBodyEncodingForURI=true" to make the ajax requests correctly encoded (using utf8). eike On 10.05.2010 15:27, Matthias Keller wrote: Hi I

wicket-event.js 404

2010-05-14 Thread Lorenzo Bolzani
Hi all, I have a quite simple composition of panels with the innermost panel containing a form. In the form there is an AjaxSubmitLink. In the onSubmit of the link there is this line target.addComponent(feedback); When I click the link using Firebug in Firefox I can see that a POST is sent to thi

Re: setter on model object not called

2010-05-14 Thread Douglas Ferguson
Yeah as I mentioned previously I am using a Property Model. I just think it is counter intuitive that the property model would bypass the setter and inject the value onto the field just because there was not getter! Seems like preferred behavior would be to do one of the following 1) use the se

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-14 Thread Michał Letyński
Hi. Yes you are right the last released version is 1.4.1. So you must build it localy. W dniu 2010-05-14 11:19, Muro Copenhagen pisze: Hi Michal I appreciate you're effort spelling things out. I am still not sure on how to get it to work. When i add this dependency to my project it won't wo

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-14 Thread Muro Copenhagen
Hi Michal Great thanks for the help.. Best Regards Muro 2010/5/14 Michał Letyński > Hi. > Yes you are right the last released version is 1.4.1. So you must build it > localy. > > W dniu 2010-05-14 11:19, Muro Copenhagen pisze: > > Hi Michal >> >> I appreciate you're effort spelling things out

Re: wicket-event.js 404

2010-05-14 Thread Jeremy Thomerson
Create a quickstart that demonstrates this and attach it to a JIRA. -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 7:31 AM, Lorenzo Bolzani wrote: > Hi all, > I have a quite simple composition of panels with the innermost panel > containing a form. > In the form ther

Re: wicket-event.js 404

2010-05-14 Thread Jeremy Thomerson
Also - what version of Wicket are you using? -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 10:48 AM, Jeremy Thomerson < jer...@wickettraining.com> wrote: > Create a quickstart that demonstrates this and attach it to a JIRA. > > -- > Jeremy Thomerson > http://www.wic

Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Hi all, Can anyone explain me how do I determine whether the checkbox is "checked"? Is the "modelObject" null if not or what? Don't understand that and javadoc's don't help :) What does the list in the CheckGroup model do? what does model in Check do? does the item in the check model require to b

Re: Check and CheckGroup

2010-05-14 Thread Jeremy Thomerson
Have you looked at the examples? http://wicketstuff.org/wicket/forminput/ -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 11:22 AM, Zilvinas Vilutis wrote: > Hi all, > > Can anyone explain me how do I determine whether the checkbox is "checked"? > Is the "modelObject"

Re: Check and CheckGroup

2010-05-14 Thread Michael O'Cleirigh
Hi Zilvinas, The Model for a CheckGroup is a Collection; I looked in Check.onComponentTag(...) in Eclipse and it shows that it emits the "checked" tag if the model object of the Check is contained in the CheckGroup's collection. But you should only really need to use the Collection returned

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Thanks for quick response! We'll try soon ;) Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:33 AM, Michael O'Cleirigh < michael.ocleir...@rivulet.ca> wrote: > Hi Zilvinas, > > The Model for a CheckGroup is a Collection; I looked in > Check.on

Re: Check and CheckGroup

2010-05-14 Thread Xavier López
If you hava a single checkbox, and only want to know if it's selected, I'd use a Checkbox component instead. You can put it a Boolean Model initialized to whatever and it will come back with the boolean value that will tell you if it's selected. Cheers, Xavier 2010/5/14 Michael O'Cleirigh > Hi

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
No, I've got a list http://pastebin.com/KwZq49uG So I add all the items to a collection which is used as a model object for CG, and each of the items to each check. When I call selectedImages.getModelObject() - I get the same list which contains all the items. Still don't get how to resolve a li

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Ok, I got it, the list contains only selected items after form submit :) Thank you! Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:48 AM, Zilvinas Vilutis wrote: > No, I've got a list http://pastebin.com/KwZq49uG > > So I add all the items t

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
The problem was that I was trying to get those values inside onClick method of an AjaxLink, but did not submit the form. I've switched the link to a button and its clear now. Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 9:54 AM, Zilvinas Vilu

Re: Check and CheckGroup

2010-05-14 Thread Jeremy Thomerson
or an ajaxsubmitlink -- Jeremy Thomerson http://www.wickettraining.com On Fri, May 14, 2010 at 11:59 AM, Zilvinas Vilutis wrote: > The problem was that I was trying to get those values inside onClick method > of an AjaxLink, but did not submit the form. > > I've switched the link to a button a

Re: Check and CheckGroup

2010-05-14 Thread Zilvinas Vilutis
Overall - the Javadoc does not explain how it supposed to be used, please create a ticket for that. Thank you Žilvinas Vilutis Mobile: (+370) 652 38353 E-mail: cika...@gmail.com On Fri, May 14, 2010 at 10:06 AM, Jeremy Thomerson < jer...@wickettraining.com> wrote: > or an ajaxsubmitlink >

Re: Help on multiple users implementation

2010-05-14 Thread Martijn Dashorst
clear out the markup cache when a new variation is added. Wicket caches markup resolving hits and misses iirc. If the cache is cleared, wicket will reload the markup and discover new styles and variations. Martijn On Thu, May 6, 2010 at 3:57 PM, Mathias Nilsson wrote: > Hi, I'm designing a Media

WicketFilter doesn't chain?

2010-05-14 Thread J
I'm having some problems with org.springframework.orm.hibernate3.support.OpenSessionInViewFilter in some cases. I did some debugging and found that org.apache.wicket.protocol.http.WicketFilter isn't doing ServletFilter chaining: when it is called when a Wicket page is requested, it is breaking

Re: WicketFilter doesn't chain?

2010-05-14 Thread James Carman
If it handles the request, it doesn't need to execute the rest of the chain. Put OSIV in front of WicketFilter. On Fri, May 14, 2010 at 5:19 PM, J wrote: > I'm having some problems with > org.springframework.orm.hibernate3.support.OpenSessionInViewFilter in some > cases. I did some debugging a

Re: Caching menu

2010-05-14 Thread Altuğ Bilgin Altıntaş
Hi; For distributed caching i can advice hazelcast.com, take a look. Cheers Altug. 2010/5/7 nino martinez wael > Id go for at "pojo" dao provider which then can cache the menu, and > just use that from your wicket menu components.. You could then use > something like ehcache, for caching.. >

src tag changing

2010-05-14 Thread hill180
I have searched the web and all example don't seem to match with what I need I have an application setup to have a web application with the wicket filter on app http://java.sun.com/xml/ns/j2ee"; xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=" http://java.sun.com/xml/n