Weblistbox cell: Text under picture

Hello everybody

I’m converting a desktop app to a webapp (first time I use webapps) and at this time, I seem to miss one thing:
A listbox cell with a picture in it, with some text under it.
Trough the searchmethod on the forum, I found that webcustomcontrols makes that possible, but that’s 150 dollar for only this small feature I need.
Is this possible in another way? Can anybody point me in the right direction?

Thanks in advance for tips or tricks.

Have you tried using CellPicture, how do your requirements differ from that?

There’s a couple of ways to accomplish this:

  1. Use the new tags to insert straight HTML into each line and do something like this: <raw><img src="URL"><br>yourtexthere</raw>
  2. Use a ContainerControl and create your own listbox type control

This works indeed, but I cannot put any text under/above in the cell, or it isn’t shown at least.

[quote=339748:@Greg O’Lone]There’s a couple of ways to accomplish this:

  1. Use the new tags to insert straight HTML into each line and do something like this: <raw><img src="URL"><br>yourtexthere</raw>
  2. Use a ContainerControl and create your own listbox type control[/quote]

That’s an amazing feature. Thanks. I Googled that raw tag, stumbled upon this blogtext and it’s exactly what I need.
For future reference: Link to blog