I need to achieve something like this for a single line of text:
(c) has a max width and (b) is fixed.
It's possible to do this with an old-fashioned HTML table setting display: block on the (a) column but IE doesn't support that. It's also possible to do this with two divs and display:inline-block but IE only supports this in standard mode.
How would I go about this with pure SmartGWT? I tried a number of things but the ellipsis are the problem (basis is an HLayout)...
Code:
------------------------------ | Some text | fixed-teeeeext | ------------------------------ ----------------------------------- | Some long text | fixed-teeeeext | ------------------------------------ ----------------------------------------- | Some very long te... | fixed-teeeeext | ----------------------------------------- |<- a ->|<- b ->| |<- c ->|
It's possible to do this with an old-fashioned HTML table setting display: block on the (a) column but IE doesn't support that. It's also possible to do this with two divs and display:inline-block but IE only supports this in standard mode.
How would I go about this with pure SmartGWT? I tried a number of things but the ellipsis are the problem (basis is an HLayout)...
Comment