How to render panel markup to string?

2009-10-30 Thread Martin Makundi
Hi! Can a wicket component be rendered to string in the following use case: 1. I have a table (multiple columns and rows). Each row corresponds to a person. The columns could represent for rexample a calendar for the person. Monda, tuesday, etc. 2. For each row, I have summary information. I hav

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Martijn Dashorst
I'm still eager to make WicketTester a first class citizen. Martijn On Thu, Oct 29, 2009 at 7:01 PM, dtoffe wrote: > >    Thanks for your answer, > > Daniel > > > igor.vaynberg wrote: >> >> the focus of this release is to rewrite url and page handling. the >> focus is on flexibility and pluggabi

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Haulyn R. Jason
I am care about Can I upgrade all my applications from 1.4.3 to 1.5 as easy as possible. On Fri, Oct 30, 2009 at 4:27 PM, Martijn Dashorst wrote: > I'm still eager to make WicketTester a first class citizen. > > Martijn > > On Thu, Oct 29, 2009 at 7:01 PM, dtoffe wrote: >> >>    Thanks for your

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Dave B
> I'm still eager to make WicketTester a first class citizen. I'm keen on this too -- is there a 'voting' mechanism in the bug tracker for this sort of thing? Cheers, Dave On Fri, Oct 30, 2009 at 7:27 PM, Martijn Dashorst wrote: > I'm still eager to make WicketTester a first class citizen. >

Re: AccessControlException with Wicket on Google App Engine (GAE)

2009-10-30 Thread A. Maza
yes, except the fact that I am trying to use a Memcache-based implementation of the IPageStore instead of the HTTPSessionStore (based on the TerracottaPageStore. However, in my case the exception occurs when I am trying to serialize the page using the provided method of the AbstractPageStore.

Re: Tree table with check box

2009-10-30 Thread vela
Hello again, I am getting only the check box and not the tree structure. Instead of markupcontainer i am using panels. Could you telll, how to get the tree structure along with check box in the same column. -- View this message in context: http://old.nabble.com/Tree-table-with-check

Re: Generate dynamic tables

2009-10-30 Thread vela
Hello again, Could you tell how to add dynamic column in the DefaultDataTable -- View this message in context: http://old.nabble.com/Generate-dynamic-tables-tp26080641p26127900.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: Generate dynamic tables

2009-10-30 Thread James Carman
When you construct it, you give it a list of columns. If the columns need to change, just reconstruct it and replace it. On Fri, Oct 30, 2009 at 6:37 AM, vela wrote: > > Hello again, > > Could you tell how to add dynamic column in the DefaultDataTable > > -- > View this message in context: > ht

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Richard Allen
Is the Wicket Ajax Next Generation work going into 1.5? Also, is there plans for an event bus, sort of like what you see in Jonathan Locke's 26 wicket tricks source code? I've seen some really nice use of event bus in GWT that I think Wicket could benefit from. -Richard On Fri, Oct 30, 2009 at

Re: Wicket Release Plans for 1.5

2009-10-30 Thread Martin Grigorov
Hi Martijn, What ideas do you have for this area ? I'll be glad to help if I can. El vie, 30-10-2009 a las 09:27 +0100, Martijn Dashorst escribió: > I'm still eager to make WicketTester a first class citizen. > > Martijn > > On Thu, Oct 29, 2009 at 7:01 PM, dtoffe wrote: > > > >Thanks for

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: Wicket Release Plans for 1.5

2009-10-30 Thread Martijn Dashorst
Mostly component selectors a la JDave/wicket, to ensure your tests don't fail when you modify your component hierarchy. Martijn On Fri, Oct 30, 2009 at 1:29 PM, Martin Grigorov wrote: > Hi Martijn, > > What ideas do you have for this area ? > I'll be glad to help if I can. > > El vie, 30-10-2009

Re: Date format in DataTable

2009-10-30 Thread Ernesto Reinaldo Barreiro
Are you using PropertyColumn? If yes... Why not override protected IModel createLabelModel(IModel rowModel) { return new PropertyModel(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 ou

Re: Date format in DataTable

2009-10-30 Thread zabian
I do use PropertyColumn. I will try it out and let you know. Thanks for help. Wojtek Ernesto Reinaldo Barreiro pisze: Are you using PropertyColumn? If yes... Why not override protected IModel createLabelModel(IModel rowModel) { return new PropertyModel(rowModel, propertyExpression); } and re

Re: Date format in DataTable

2009-10-30 Thread Ernesto Reinaldo Barreiro
or public void populateItem(Item> item, String componentId, IModel rowModel) { item.add(new Label(componentId, createLabelModel(rowModel))); } and you create directly a the label with the formated date Ernesto On Fri, Oct 30, 2009 at 1:55 PM, zabian wrote: > I do use PropertyColumn. I will t

problem with generation text in javascript code

2009-10-30 Thread pawel wolanski
Hello, Yesterday I've faced with problem with generating javascript code. On page I've inserted code: i.e.:

Re: problem with generation text in javascript code

2009-10-30 Thread Martin Grigorov
make element a Wicket citizen :-)