|
#1
|
|||
|
|||
|
Is it possible to place an arbitrary widget or canvas into a ListGrid cell. Like CanvasItem allows you to place a custom widget into a Dynamic Form.
|
|
#2
|
|||
|
|||
|
In SmartClient core, in 7.0 beta there are "rollover controls" that appear on rollover. They are also some lower-level, not yet finalized APIs for the embedded arbitrary widgets inside records / cells. What's the specific usage you have in mind?
|
|
#3
|
|||
|
|||
|
Thanks for the response.
I am attempting to port an existing ExtGWT project over to SmartGWT. I had a ExtGWT Table that had some text and images cells, but also had a progress bar (the progress bar from the GWT Incubator project). The progress bar is the most interesting part of the table so I probably don't want to make it a roll over. I guess I will need to recreate something like a Table with normal layouts or redesign how this information is displayed to the user. |
|
#4
|
|||
|
|||
|
One approach here is to use a CellFormatter to output appropriate HTML, which you may be able to re-use from your existing implementation.
|