Re: Property Expression Language : Combing bean value and string ?

2010-01-19 Thread Igor Vaynberg
you can easily create your own AbstractColumn that does the interpolation. -igor On Mon, Jan 18, 2010 at 10:55 PM, Ashika Umanga Umagiliya wrote: > Greetings all, > > In my Datatable , I use PropertyColumn to create my columns. > I want to know whether using Wicket EL  , I can do something like

Property Expression Language : Combing bean value and string ?

2010-01-18 Thread Ashika Umanga Umagiliya
Greetings all, In my Datatable , I use PropertyColumn to create my columns. I want to know whether using Wicket EL , I can do something like following: Input object has 'name' field. EL String : "Your name is ${name}" Output String : "Your name is Tom" Thanks in advance. ---