Hey Daniel,

2010/6/2 Ginsburg, Daniel <[email protected]>:
>
> I have upgraded to Wt 3.1.3, but am still seeing an issue related to this bug 
> that I filed (http://redmine.webtoolkit.eu/issues/354).  One issue is that if 
> I have text in the DisplayRole of the WTreeView elements that contains a "-", 
> then IE8 is truncating the contents.  You can easily see this in the example 
> program I submitted in that bug if you change the entries in the WTreeView to 
> something like 
> "watch-how-I-get-truncated-in-IE8-if-I-have-dashes-inside-of-me" :)  I 
> remember this was an issue way back in Wt 3.1.1 and you had me workaround it 
> by modifying my .Wt-treeview CSS to have "white-space: nowrap;", but even 
> with that there is this problem in IE8 (although not in Firefox, Safari, 
> Konquerer, etc.).

I could indeed reproduce this. Apparently there is yet-another bug in
IE where "white-space" is ignored when set on a table or td.

The following CSS fixes this:

.Wt-treeview div, .Wt-treeview span {
    white-space: nowrap;
}

Another thing I noted in your styles.css is that you have:

.suggest span {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

This should be changed to:

.suggest div span {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

> The other problem, which I suppose I will have to create another reproducer 
> for, is that when I have a WGridLayout with two columns where the column 1 
> has a stretch of 1 and column 0 has no stretch, then the "setMinimumSize()" 
> for the width of the item in column 0 appears to be ignored and it gets 
> cropped.  This only seems to happen in IE8.

This sounds like something I should be able to easily reproduce
though. Just submit a bug for it and I will take a look at it ?

Regards,
koen

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to