"this" points to current wicket page. So wicket looks for "expiryDate" in the
wicket page. If you declare "expiryDate" within wicket page, you won't get
error message. Otherwise, as suggested by Mr Mean, instead of "this" you
should pass model which has getter/setters for "expiryDate".
Sanjeev
Thank you. I look into it.
Sanjeev
cblehman wrote:
>
> Look at the source of DefaultDataTableit's your perfect example.,
> just extend it and add another bottom toolbar.
>
> Clay Lehman
> Phone: (919) 882-2856
> [EMAIL PROTECTED]
>
> -----Original Mess
I'm using DefaultDataTable with sortable data provider in my project. All the
columns are sortable. This data table has few amount columns, which I need
to sum up and show as a last row (TotalRow) at the bottom of the table. This
last row (TotalRow) should not be part of sortable data provider. O