Wicket on GAE with Facebook Connect - doesnt work after deploying / HTTP 500 error

2010-03-26 Thread christoph glass
Hi everyone, I'm trying to run a simple Wicket Application with Facebook Connect on Google App Engine. So far it runs local, but when I deploy to Google Facebook Connect wont work. I cant find any examples for using wicket with gae and facebook on the web. Is anyone here who successfully made it

Re: Wicket on GAE with Facebook Connect - doesnt work after deploying / HTTP 500 error

2010-03-26 Thread christoph glass
Christoph On Fri, 2010-03-26 at 14:32 +0100, Martin Funk wrote: > you are aware of this? > http://www.danwalmsley.com/2009/04/08/apache-wicket-on-google-app-engine-for-java/ > > 2010/3/26 christoph glass > > > Hi everyone, > > > > I'm trying to run a simple Wicke

Re: AJAXIFY Palette: Can't get to the Recorder

2010-04-01 Thread Christoph Glass
Hi, here is a (for me) working code snipplet populated from the example given by Igor: /** SelectedFields may be pojo or so */ /* data */ Selected Fields[] collector; /* list */ List dataList = Arrays.asList(collector); /* model to save selection */ final Model> fieldsModel; /* ichoice rend

DatePicker icon dont disappear when parent textfield is set to visible false

2010-04-09 Thread Christoph Glass
Hi, I have two textfields with date picker and a select box with onchange AjaxFormComponentUpdatingBehavior. When I set the textfields visible to true everything is fine, but when I set them to visible false after they was visible true the textfields are hidden but the icons are still visible. I

Re: DatePicker icon dont disappear when parent textfield is set to visible false

2010-04-09 Thread Christoph Glass
Thank you for your answer. It seems that I'm too stupid for getting it, I try to work with closures but now my textfields are always hidden. Can please anyone help again? Thank you and best regards Christoph /* bool */ boolean _bPause = false; /* selectbox */ _selectArt.add(new AjaxFormCompon

Re: DatePicker icon dont disappear when parent textfield is set to visible false

2010-04-12 Thread Christoph Glass
Hi, thank you all for your replies. The way with the WebMarkupContainer works for me so far (I modified the example from http://www.systemmobile.com/?page_id=253). Sadly it doesnt work with rows, but at the moment it suffices. Thanks and best regards Christoph On Sat, Apr 10, 2010 at 4:29 AM,

Help with ClientSideImageMap needed

2011-01-15 Thread Christoph Glass
Hello, could please any of you provide a working example with ClientSideImageMap? I dont get it to work, there are no error messages, the page leaves blank. My code example: Java: add(getPlzMap("plzmap"); private ClientSideImageMap getPlzMap(String id) { ClientSideImageMap csim=new ClientSideI

Re: Help with ClientSideImageMap needed

2011-01-17 Thread Christoph Glass
Thank you, this hint was very helpful, I was able to solve the problem. Best regards Christoph On Sat, Jan 15, 2011 at 2:59 PM, Martin Grigorov wrote: > Check in wicket-examples.jar > : org.apache.wicket.examples.linkomatic.Home.Home() > > On Sat, Jan 15, 2011 at 2:03 PM, Chr