Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-19 Thread Igor Vaynberg
glad to hear it you are welcome -igor On 1/19/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote: Hi Igor It's now working fine, that's great ! And thanks for the wiki link, it's most instructing. Cheers ZedroS On 1/17/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > On 1/17/07, ZedroS Schwart <[

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-19 Thread ZedroS Schwart
Hi Igor It's now working fine, that's great ! And thanks for the wiki link, it's most instructing. Cheers ZedroS On 1/17/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > On 1/17/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote: > > Thanks again Igor ! > > > > You're most helpful. > > > > However, as a

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-17 Thread Igor Vaynberg
On 1/17/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote: Thanks again Igor ! You're most helpful. However, as a newbe I am, I still don't get it to work (but I try before posting again, I promise!). In fact, the issue now is with the path associated with my images. Indeed, for the cell image, I

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-17 Thread ZedroS Schwart
Thanks again Igor ! You're most helpful. However, as a newbe I am, I still don't get it to work (but I try before posting again, I promise!). In fact, the issue now is with the path associated with my images. Indeed, for the cell image, I used : Image test = new Image("image1", new Model("test.

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-16 Thread Igor Vaynberg
ah! thats easy! throught you were using datatable, not dataview ... populateitem(item) { WebMarkupContainer td1=new WebMarkupContainer("td1") { oncomponenttag(tag) { tag.put("background", "foo.jpg"); } } item.add(td1); td1.add(new myimage("image1")); } -igor On 1/16/07, Zedr

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-16 Thread ZedroS Schwart
Hi igor Thanks again, but I tried it but to no success. In fact, my issue is that I currently have something like : However, I would like to do something like this at rendering time: imageA1.png

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-15 Thread Igor Vaynberg
youve tried item.add(new SimpleAttributeModifier("style", "background-color:red;")) ? -igor On 1/15/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote: Hi igor Thanks a lot for your answer. Being a newbe and digging into the RepeatingPage example, I managed to define an image per cell. However,

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-15 Thread ZedroS Schwart
Hi igor Thanks a lot for your answer. Being a newbe and digging into the RepeatingPage example, I managed to define an image per cell. However, I didn't manage to set up the attribute "background" of the around my image... I tried various things like, among others : - to put some wicket id int

Re: [Wicket-user] How to do a table with cell specific background image and image ?

2007-01-14 Thread Igor Vaynberg
take a look at repeater examples in wicket-examples -igor On 1/13/07, ZedroS Schwart <[EMAIL PROTECTED]> wrote: Hi all I'm new to wicket and I'm looking for creating a table where each cell would have a specific background image and, as a content, a specific image with a link upon it. What'

[Wicket-user] How to do a table with cell specific background image and image ?

2007-01-14 Thread ZedroS Schwart
Hi all I'm new to wicket and I'm looking for creating a table where each cell would have a specific background image and, as a content, a specific image with a link upon it. What's the best way to do it in Wicket ? I've started looking at SimpleViewList but I'm not so sure it's the right thing to