RE: [Wicket-user] DataTable formatting

2006-04-11 Thread Frank Silbermann
I am building a Panel that is constructed with a PropertyModel.  It will use this PropertyModel to construct a RadioGroup.  (The PropertyModel will determine the initial selected value, and will store the result somewhere).   Another component in the panel should be enabled or not dependi

Re: [Wicket-user] DataTable formatting

2006-04-11 Thread Nick Heudecker
  -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Nick Heudecker Sent: Monday, April 10, 2006 4:12 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] DataTable formatting   Have you tried the CSS attribute 'empty-cells: show;&#x

RE: [Wicket-user] DataTable formatting

2006-04-11 Thread Frank Silbermann
Subject: Re: [Wicket-user] DataTable formatting   Have you tried the CSS attribute 'empty-cells: show;' ? On 4/10/06, Frank Silbermann <[EMAIL PROTECTED] > wrote: To draw lines separating every cell in my DataTable I tried:    as Igor recommended.  It worked fine, exc

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
Thank you!   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Heudecker Sent: Monday, April 10, 2006 4:12 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] DataTable formatting   Have you tried the CSS attribute '

Re: [Wicket-user] DataTable formatting

2006-04-10 Thread Nick Heudecker
Have you tried the CSS attribute 'empty-cells: show;' ?On 4/10/06, Frank Silbermann <[EMAIL PROTECTED] > wrote: To draw lines separating every cell in my DataTable I tried:  as Igor recommended.  It worked fine, except for when the IDataProvider provided either a null or an

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
To draw lines separating every cell in my DataTable I tried:  as Igor recommended.  It worked fine, except for when the IDataProvider provided either a null or an empty string for a particular cell.  Then the line separators were missing.  Do you think the more complex CSS approach wo

Re: [Wicket-user] DataTable formatting

2006-03-31 Thread Igor Vaynberg
or even -IgorOn 3/31/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote: table.datatable td { border:0; border-bottom: 1px solid black; border-right: 1px solid black; } . -IgorOn 3/31/06, Frank Silbermann < [EMAIL PROTECTED]> wrote: Is there a way to make the DataTable draw a lin

Re: [Wicket-user] DataTable formatting

2006-03-31 Thread Igor Vaynberg
table.datatable td { border:0; border-bottom: 1px solid black; border-right: 1px solid black; } . -IgorOn 3/31/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: Is there a way to make the DataTable draw a line between every row and column – like a grid?