apply this patch:
................
var table = new Element('table',{styles : {'border' : '1px solid
black'}}).inject(dasviech);
var tbody = new Element('tbody');
        tbody.inject(table);
      for(var y=0;y<10;y++){
      var tr = new Element('tr').inject(tbody);
...............

the idea is tbody.
somehow firefox does the job for you, but Ie doesn't.

jgabios

On Mon, Mar 16, 2009 at 1:02 PM, Ingrater <[email protected]> wrote:
>
> I want to create some page content with data from a Request. I already
> implemented everything and it works fine on Firefox. Now I've tested
> it in IE7 and the content doesn't show up. The data and everyinthing
> is progressed correctly but the created elements are not drawn.
>
> I wrote a small example how I do things. In Firefox a the Title and
> the Table with all its td's shows up. In IE only the Title shows up.
> The table and all it contents are not drawn. I think that the table is
> injected but as it goes on level deeper the inject failes somehow.
>
> The Example Code can be found at
> http://paste.mootools.net/m59febe46
>
> I would be very glad if some one could tell me what I'm doing wrong,
> or if this is a bug in mooTools.
>
> Regards
> Ingrater

Reply via email to