Re: org.omg.CORBA.BAD_OPERATION: The delegate has not been set! - exception on back button

2009-11-09 Thread zabian
serialized. A possible solution is to inject your ejb (by using for example @SpringBean). This makes serializable proxies, so your page can be serialized... 2009/11/9 zabian Hi there, I am working on the project using Wicket and EJB3.0 on Glassfish AS. I've got such case: There is a page

org.omg.CORBA.BAD_OPERATION: The delegate has not been set! - exception on back button

2009-11-09 Thread zabian
Hi there, I am working on the project using Wicket and EJB3.0 on Glassfish AS. I've got such case: There is a page with some test, using Sateful bean. When you press a start button, the model using the bean is created, bean is beeing looked up on each start button pressed. When I change the page

Re: Date format in DataTable

2009-10-30 Thread zabian
l(rowModel, propertyExpression); } and return a model that formats the date as you need? Best, Ernesto 2009/10/30 zabian Hi there, i would like to find out if the date format for java.util.Date property is customizable in DataTable. Could anyone point me how to set it? Regar

Re: Date format in DataTable

2009-10-30 Thread zabian
return a model that formats the date as you need? Best, Ernesto 2009/10/30 zabian Hi there, i would like to find out if the date format for java.util.Date property is customizable in DataTable. Could anyone point me how to set it? Regards, Wojtek

Date format in DataTable

2009-10-30 Thread zabian
Hi there, i would like to find out if the date format for java.util.Date property is customizable in DataTable. Could anyone point me how to set it? Regards, Wojtek - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Multiple AttributeModifier-s on a single tag

2009-10-23 Thread zabian
Sorry for the mess, my fault of course. It was working from the beginning, just my css was not in the scope and I couldn't see any results. Sorry once again and thanks for commitment. Regards, Wojtek Michael O'Cleirigh pisze: Hi Wojtek, Use the SimpleAttributeAppender from wicketstuff-misc

Multiple AttributeModifier-s on a single tag

2009-10-23 Thread zabian
Hi there, I'm trying to add two AttributeModifiers on WebMarkupContainer and it doesn't work. Only one of them is working, the last added one. Could anybody show me how to do it properly? Regards, Wojtek - To unsubscribe, e-ma

streaming charts in wicket

2009-10-09 Thread zabian
Hi there, another problem on my way... I want to implement a dynamic chart, ie. refreshing its model every 5 sec and showing updated values. I found nice solution for charts - open flash charts and would be great if i use it. There is wicket integration solution over here: http://cwiki.apache.o

wicketstuff-progressbar and Wicket 1.4.1 problem

2009-10-08 Thread zabian
Hi there, I'm working on progress bar in my app, i'm trying to use wicketstuff-progressbar project and get: java.lang.NoSuchMethodError: org.wicketstuff.progressbar.ProgressBar.add(Lorg/apache/wicket/behavior/IBehavior;)Lorg/apache/wicket/Component; at org.wicketstuff.progressbar.ProgressBar

Re: AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread zabian
rson http://www.wickettraining.com 2009/10/7 zabian Hi, I want to add self-updating panel which displays some nested properties ie. two coordinates (x,y - let's say the Point class object). The point is updated by ejb or webservice. I tried to use the example from wicket-example

AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread zabian
Hi, I want to add self-updating panel which displays some nested properties ie. two coordinates (x,y - let's say the Point class object). The point is updated by ejb or webservice. I tried to use the example from wicket-examples page - clock using AjaxSelfUpdatingBehavior. But example case upd