:. NEWS .:. ABOUT .:. TRACK RECORD .:. BLOG .:. MUSIC .:. LINKS .:. GUESTBOOK .:
subscribe to feed via email

List of Entries ...

(1) [ActionScript3 - Array Clear Performance Test (AS3)]
(2) [Flash-AS3 ByteArray Beats Array Class On Handling Large Data]
(3) [Overheating Acer AMD Turion 64x2 TL-58 Notebook problem]
(4) [Strange table behavior in Chromium / Google Chrom]
(5) [Getting Started With AsUnit 3.0 and FlashDevelop3 in AS3 (Unit Tests)]
(6) [Javascript Pixel Canvas]
(7) [3D-Visualisierung auf Mobiltelefonen mit J2ME]
(8) [Voice Over IP (VoIP)]
(9) [Parallele Schnittstelle]

- Strange table behavior in Chromium / Google Chrom

Mein Javascript-Tablecanvas funktionierte nicht in mit den Browsern Chromium, bzw. Google Chrome: Leere Tabellenzellen werden n?mlich nicht angezeigt. Nachdem ich ein leeres img-tag in die Zellen einf?gt hatte, wurden sie wieder sichtbar. Ein ?hnliches Problem gab es fr?her schon mit den alten Netscape-Browsern (z.B. beim 4.7).

My javascript table canvas did not work with the browsers Chromium and Google Chrome: The reason is that these browsers do not tolerate empty table cells. Putting empty img-tags into the cells makes them appear again, though! This reminds me on the old Netscape browsers (say 4.7), which had a similar problem.

Postet on 2009/1/18


Kommentare / Comments:

(2009.01.13 20:03:37) andi:
you con also do that:

[table]
[tr]
[td]
 
[/td]
[/tr]
[/table]

(2009.01.13 20:06:28) Manuel:
Yes, that is correct, but in some browsers the cell-height changes to the line height of the standard font. That's not what I wanted.

Cheers and thanks,
Manuel

(2009.01.13 20:09:24) andi:
<table>
<tr>
<td>
 
</td>
</tr>
</table>

(2009.01.13 20:10:22) andi:
use nbsp (f****g no html-allowed) ;)

(2009.01.13 20:11:58) Manuel:
Yeah, gotta test my stuff some more. I'm gonna fix it.

(2009.01.13 21:21:56) Manuel:
This was what you probably wanted to post.
Well, it is now possible to do that!

<table>
    <tr>
        <td>
            &nbsp;
        </td>
    </tr>
</table>

Cheers,
Manuel


Kommentieren / Comment:

Name:

Email (optional):

 Wird nicht angezeigt. Will not be shown.

Kommentar/
Comment:

      

Note: Use plain text only. Javascript, html or css are not allowed.
Hinweis: Nur Klartext verwenden. Javascript, html und css sind nicht erlaubt.


(c)1999-2009 ruelke_net. Alle Rechte vorbehalten.