Re: Safari and AjaxEditableMultiLineLabel incompatibility?

2010-10-22 Thread Jeremy Thomerson
There were ajax bugs in either 1.4.10 or 1.4.11 (can't remember at this point). Please upgrade to 1.4.12 and tell us if you still have the problem. On Thu, Sep 30, 2010 at 10:43 PM, Arturo Perez art...@pleeque.com wrote: Using wicket 1.4.10 and Safari 5.0.1. I'm using the AjaxEditableLabel

Re: using link to open mail composer

2010-10-22 Thread Jeremy Thomerson
add a target attribute to your html or use PopupSettings. I'd suggest adding the target to your HTML. On Wed, Sep 29, 2010 at 9:07 PM, fachhoch fachh...@gmail.com wrote: what about open an external link in new window -- View this message in context:

Re: AjaxButton documentation error?

2010-10-22 Thread Jeremy Thomerson
It will lie no more. I just fixed it in 1.4.x and trunk. Thanks Chris and Craig! On Mon, Jul 12, 2010 at 7:03 AM, Craig McIlwee craig.mcil...@openroadsconsulting.com wrote: Yeah, that's been wrong for a really long time, maybe always. Whenever I point coworkers to that class I tell them to

RE: AjaxLazyLoadPanel IE and chrome

2010-10-22 Thread Stefan Lindner
Are you using jQuery? Yesterday I would have answered that I never had any problems with AjaxLazyLoadPanel in IE/chrome. And we make heavy use o fit. But today we moved from jQuery 1.4.2 to 1.4.3 and now we have the same problem. Sometimes a AjaxLazyLoadPanel loads until eternity. Hitting f5

Re: Accessing the cells in a row of a DataTable

2010-10-22 Thread Mark Doyle
Thanks Mike, this was definitely a great pointer in the right direction; I'm beginning to grasp the column system now. I do have some issues though as detailed below. Firstly, my business model is out of my control so I had to wrap that in a class that contains the editable state. I don't like

Re: Accessing the cells in a row of a DataTable

2010-10-22 Thread Mark Doyle
Oh and the table isn't the parent: // get the table to rerender target.addComponent(this.getParent()); I had to do a six step parental grab; I'm sure there is a better way! :D On Fri, Oct 22, 2010 at 11:54 AM, Mark Doyle markjohndo...@googlemail.comwrote: Thanks Mike, this was definitely a

Re: Check on LoadabledetachableModel

2010-10-22 Thread Marek Šabo
Thanks, seems to work as it's supposed to now. Just for the record, de-implementing the Serializable interface from entities/objects is a good hint whether the object was undergoing the serialization process (a spam of NotSerializableExceptions will follow). Regards, -- Marek Šabo On

back-button causes Wicket state and page displayed to be out of synch

2010-10-22 Thread drf
I have encountered the following serious issue: My application consists of one WebPage which has an AjaxTabbedPanel. Each tab has an associated panel which includes several menu items (links) which can be selected. This works well. However, if the user selects the back-button (once back, then

Re: back-button causes Wicket state and page displayed to be out of synch

2010-10-22 Thread Martin Grigorov
Wicket does not support back button for Ajax application out of the box. Search in Google/Nabble for suggestions how to make it working for your application. On Fri, Oct 22, 2010 at 12:53 PM, drf davidrfi...@gmail.com wrote: I have encountered the following serious issue: My application

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread fachhoch
yes , I did not had this problem with 1.4.8, I wanted to try 1.4.12 and I got this error. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-push-upgrade-to-1-4-12-ContinuationCometdServlet-class-not-found-tp3006617p3007084.html Sent from the Users forum mailing

RE: AjaxLazyLoadPanel IE and chrome

2010-10-22 Thread fachhoch
yes I am using jquery , the version if have is 1.4.8, -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-IE-and-chrome-tp3006112p3007091.html Sent from the Users forum mailing list archive at Nabble.com.

AjaxTabbedPanel and location line

2010-10-22 Thread Alexander Monakhov
Hi, guys. I've got one page that contains AjaxTabbedPanel component. Each ITab contains AjaxTabbedPanel. So, page contains tabs and subtabs. When different tabs selected, location path isn't changed. Could you suggest me how to change location for every selected tab? For example, there are

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread Michael O'Cleirigh
Hi, The wicketstuff push in 1.4.8 used jetty 6 (with the org.mortbay... package naming) where as the 1.4.12 release uses jetty 7 (with the org.eclipse.jetty ... package naming. I don't think the exact class you are looking for exists anymore. Here is the relevant section from the

sending ajax response part by part

2010-10-22 Thread Altuğ Bilgin Altıntaş
Hi all; username.add(new AjaxFormComponentUpdatingBehavior(onblur) { @Override public void onUpdate(AjaxRequestTarget target) { String thisUsername = username.getModelObject(); username.add(new SimpleAttributeModifier(class, thinking)); //

Re: AjaxLazyLoadPanel IE and chrome

2010-10-22 Thread Martin Grigorov
I bet even John Resig doesn't use 1.4.*8* :-) On Fri, Oct 22, 2010 at 2:14 PM, fachhoch fachh...@gmail.com wrote: yes I am using jquery , the version if have is 1.4.8, -- View this message in context:

Re: AjaxTabbedPanel and location line

2010-10-22 Thread Martin Grigorov
Changing the location will reload the page. The only part that can be changed is the location.hash: #something via javascript. On Fri, Oct 22, 2010 at 2:26 PM, Alexander Monakhov domin...@gmail.comwrote: Hi, guys. I've got one page that contains AjaxTabbedPanel component. Each ITab contains

Re: sending ajax response part by part

2010-10-22 Thread Martin Grigorov
No. The parsing on the client part (wicket-ajax.js) will not start until the whole XML response is delivered. You can use AjaxTimerBehavior to check whether the *slow* calculation is finished and then deliver its response 2010/10/22 Altuğ Bilgin Altıntaş alt...@gmail.com Hi all;

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread fachhoch
please give me the svn repostiroy url for 1.4.12 wicket-push examples or url to download wicket-push 1.4.12 examples -- View this message in context:

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread Martin Grigorov
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jdk-1.6-parent/push-parent/push-examples This is current trunk. They are similar. navigate to branches to get 1.4.12 if you need them exactly On Fri, Oct 22, 2010 at 3:40 PM, fachhoch fachh...@gmail.com wrote:

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread fachhoch
resolved the servlet issue, but found new problem. the same code I have used to work with wicket-push1.4.8 after upgrading to 1.4.12 I got this error 2010-10-22 10:31:08,270 [qtp27288505-25] ERROR org.apache.wicket.RequestCycle - java.lang.NullPointerException at

Re: GridView for A-Symmetric tables - issues

2010-10-22 Thread Alexander Morozov
Arjun Dhar wrote: Hi, I've solved this problem by writing a new implementation of DataViewBase. GridView did not seem appropriate to simply extend due to a few reasons. (It assumes Symmetry for the most in its code). This Code can merge areas within the GRID and extract data from the

HeaderContributor wicket 1.5 dissapeared?

2010-10-22 Thread Tito
Hello! I have a short question. Does IHeaderContributor interface dissapeared in wicket 1.5 version? Or only dissapeared HeaderContributor class? I'm ussing headerContributor to add javascript code in header and if it's true I don't know how to migrate. I use it for GoogleMaps javascript code.

Re: HeaderContributor wicket 1.5 dissapeared?

2010-10-22 Thread Martin Grigorov
https://cwiki.apache.org/WICKET/migration-to-wicket-15.html#MigrationtoWicket1.5-ComponentandIBehaviorimplementIHeaderContributor On Fri, Oct 22, 2010 at 4:53 PM, Tito njyt...@gmail.com wrote: Hello! I have a short question. Does IHeaderContributor interface dissapeared in wicket 1.5

Re: HeaderContributor wicket 1.5 dissapeared?

2010-10-22 Thread Tito
Thank you! It is easyer that I'm hoped! 2010/10/22 Martin Grigorov mgrigo...@apache.org https://cwiki.apache.org/WICKET/migration-to-wicket-15.html#MigrationtoWicket1.5-ComponentandIBehaviorimplementIHeaderContributor On Fri, Oct 22, 2010 at 4:53 PM, Tito njyt...@gmail.com wrote: Hello!

Fwd: Nested CompoundModel

2010-10-22 Thread Jan Ferko
Hi, I am doing on form which consists of multiple panels and data object hierarchy to them. For example: class Data1 { Data2 data2; } class Data2 { Data3 data3; } class Data3 { String str; } class MyForm extends Form{ public MyForm(id, model){ super(id, model);

Re: Fwd: Nested CompoundModel

2010-10-22 Thread Sven Meier
Hi Jan, when are data2 and data3 initialized? They seems to be null when you put up your models. Most of the time it's a bad idea to pull something out of a model and put it back into another model. Do this instead: this.add(new MyPanel(id2, new PropertyModel(model, data2))); Then in

Re: Fwd: Nested CompoundModel

2010-10-22 Thread Jeremy Thomerson
On Fri, Oct 22, 2010 at 11:38 AM, Sven Meier s...@meiers.net wrote: Hi Jan, when are data2 and data3 initialized? They seems to be null when you put up your models. Most of the time it's a bad idea to pull something out of a model and put it back into another model. Do this instead:

Re: wicket-push upgrade to 1.4.12 ContinuationCometdServlet class not found

2010-10-22 Thread Rodolfo Hansen
As Michael pointed out; after version 1.4.11 we upgraded to version 2.0 of cometd and replaced the dojo clientside code with our own implementation. I've tested most of these changes, but there may still be some kinks that need to be ironed out. Can you add an issue here:

Re: Wicket Merchandise store back in action

2010-10-22 Thread nino martinez wael
ok i'll look into it.. 2010/10/21 Jeremy Thomerson jer...@wickettraining.com Nino, I want a Wicket sticker that I can stick on the back of my laptop display! On Mon, Oct 13, 2008 at 7:31 AM, Nino Saturnino Martinez Vazquez Wael nino.marti...@jayway.dk wrote: Hi Guys The store are

Re: Wicket Merchandise store back in action

2010-10-22 Thread nino martinez wael
and great idea :) 2010/10/22 nino martinez wael nino.martinez.w...@gmail.com ok i'll look into it.. 2010/10/21 Jeremy Thomerson jer...@wickettraining.com Nino, I want a Wicket sticker that I can stick on the back of my laptop display! On Mon, Oct 13, 2008 at 7:31 AM, Nino Saturnino

Re: Wicket Merchandise store back in action

2010-10-22 Thread nino martinez wael
done and say if its ok 2010/10/22 nino martinez wael nino.martinez.w...@gmail.com and great idea :) 2010/10/22 nino martinez wael nino.martinez.w...@gmail.com ok i'll look into it.. 2010/10/21 Jeremy Thomerson jer...@wickettraining.com Nino, I want a Wicket sticker that I can stick

Wicket 1.5: IPageFactory and IAuthorizationStrategy.isInstantiationAuthorized related question

2010-10-22 Thread Vytautas Racelis
Hi, wicket 1.4.x IPageFactory has a method: C extends Page Page newPage(final ClassC pageClass); wicket 1.4.x IAuthorizationStrategy has a method: T extends Component boolean isInstantiationAuthorized(ClassT componentClass); So, i was implementing IPageFactory.newPage(...) and such action

Re: Wicket Merchandise store back in action

2010-10-22 Thread Jeremy Thomerson
Just bought one. On Fri, Oct 22, 2010 at 12:52 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: done and say if its ok 2010/10/22 nino martinez wael nino.martinez.w...@gmail.com and great idea :) 2010/10/22 nino martinez wael nino.martinez.w...@gmail.com ok i'll look

Re: Wicket 1.5: IPageFactory and IAuthorizationStrategy.isInstantiationAuthorized related question

2010-10-22 Thread Martin Grigorov
On Fri, Oct 22, 2010 at 7:59 PM, Vytautas Racelis turi...@gmail.com wrote: Hi, wicket 1.4.x IPageFactory has a method: C extends Page Page newPage(final ClassC pageClass); wicket 1.4.x IAuthorizationStrategy has a method: T extends Component boolean isInstantiationAuthorized(ClassT

Re: GridView for A-Symmetric tables - issues

2010-10-22 Thread Arjun Dhar
Hi, sorry was really busy with stuff and I didnt no want to put the code into JIRA or anywhere till I cleaned it out aor matured it enough for the more senior members to do code review. But who can say No to a thirsty man :)) ..so I've made some changes all over but the most important change is

Re: Wicket 1.5: IPageFactory and IAuthorizationStrategy.isInstantiationAuthorized related question

2010-10-22 Thread Martin Grigorov
Update to r1026443 and should be better On Fri, Oct 22, 2010 at 8:18 PM, Martin Grigorov mgrigo...@apache.orgwrote: On Fri, Oct 22, 2010 at 7:59 PM, Vytautas Racelis turi...@gmail.comwrote: Hi, wicket 1.4.x IPageFactory has a method: C extends Page Page newPage(final ClassC pageClass);

Re: AjaxLazyLoadPanel load asynchronously

2010-10-22 Thread Jeremy Thomerson
On Fri, Oct 22, 2010 at 1:07 PM, fachhoch fachh...@gmail.com wrote: I have a datatable each row has a AjaxLazyLoadPanel. When the page is loading I see each Ajaxlazyloadpanel from each row loads in order from top to bottom, can I make is asynchronous? I doubt it. Each will be in the

ArrayList, Label and Model

2010-10-22 Thread Zeldor
Hi, I am trying to make an ArrayList, populate it and then display them [and do other stuff later, but I did not get so far]. It does not work though, so what I am missing? My code looks like that: ... ArrayListDouble house_cost = new ArrayListDouble(5); ... [adding some data

Re: ArrayList, Label and Model

2010-10-22 Thread Sven Meier
Hi, according to the API PropertyModel(this, house_cost.4) should work: http://wicket.apache.org/apidocs/1.4/org/apache/wicket/util/lang/PropertyResolver.html Sven Am 22.10.2010 22:39, schrieb Zeldor: Hi, I am trying to make an ArrayList, populate it and then display them [and do other

Re: Wicket 1.5: IPageFactory and IAuthorizationStrategy.isInstantiationAuthorized related question

2010-10-22 Thread Vytautas
Thanks, update from trunk did help;) On 10/22/2010 09:47 PM, Martin Grigorov wrote: Update to r1026443 and should be better On Fri, Oct 22, 2010 at 8:18 PM, Martin Grigorovmgrigo...@apache.orgwrote: On Fri, Oct 22, 2010 at 7:59 PM, Vytautas Racelisturi...@gmail.comwrote: Hi, wicket

Re: Wicket 1.5: IPageFactory and IAuthorizationStrategy.isInstantiationAuthorized related question

2010-10-22 Thread Vytautas
It would be great to have the same with org.apache.wicket.authorization.UnauthorizedInstantiationException, which currently uses Component: public T extends Component UnauthorizedInstantiationException(final ClassT componentClass) On 10/22/2010 09:47 PM, Martin Grigorov wrote: Update to

Re: ArrayList, Label and Model

2010-10-22 Thread Zeldor
Nope, it still does not work, so it must be something else. I have tried searching here, but I have only found people using ArrayList as whole, for dropdownmenus etc, not pointing to one specific data. It should be quite simple... On Fri, Oct 22, 2010 at 11:17 PM, Sven Meier [via Apache Wicket]

Re: ArrayList, Label and Model

2010-10-22 Thread Jeremy Thomerson
On Fri, Oct 22, 2010 at 4:17 PM, Sven Meier s...@meiers.net wrote: according to the API PropertyModel(this, house_cost.4) should work: try new PropertyModel(this, house_cost[4]) -- Jeremy Thomerson http://wickettraining.com *Need a CMS for Wicket? Use Brix! http://brixcms.org*

Re: back-button causes Wicket state and page displayed to be out of synch

2010-10-22 Thread Alexander Morozov
Check wicketstuff's jquery project for HistoryAjaxBehavior. May be it helps. drf wrote: I have encountered the following serious issue: My application consists of one WebPage which has an AjaxTabbedPanel. Each tab has an associated panel which includes several menu items (links) which

Re: ArrayList, Label and Model

2010-10-22 Thread Ernesto Reinaldo Barreiro
Can you try PropertyModel(this, house_cost[4])? Ernesto On Fri, Oct 22, 2010 at 10:39 PM, Zeldor pgronkiew...@gmail.com wrote: Hi, I am trying to make an ArrayList, populate it and then display them [and do other stuff later, but I did not get so far]. It does not work though, so what I am