Text wrap problem in FireFox
Hi Alex,
I'm using Firefox 3.5.3 with the example code given below.
If you initially load the page, the second column appears blank.
If you resize the second column to increase its width, the text shows up.
In other browsers, the long text of the email address is truncated, but in Firefox, it seems to disappear from the cell if the cell width is small.
Do you have any solution for this problem ?
Thanks,
Ankur
I'm using Firefox 3.5.3 with the example code given below.
If you initially load the page, the second column appears blank.
If you resize the second column to increase its width, the text shows up.
In other browsers, the long text of the email address is truncated, but in Firefox, it seems to disappear from the cell if the cell width is small.
Do you have any solution for this problem ?
Thanks,
Ankur
<script>
var obj = new AW.Grid.Extended;
obj.setCellText(["multi line<br>cell", "VeryLongEmailAddress@DomainName.com<br>a@a.com", "cell", "cell", "cell", "cell", "cell", "cell", "cell", "cell"]);
obj.setHeaderText(["header", "problem", "header", "header", "header", "header", "header", "header", "header", "header"]);
obj.setColumnCount(10);
obj.setRowCount(10);
obj.setRowHeight(40);
obj.getRowTemplate().setClass("text", "wrap");
obj.setCellTemplate(new AW.Templates.ImageText);
document.write(obj);
</script>
Ankur Motreja
September 17,