2006/11/3, Karl Guertin <[EMAIL PROTECTED]>:

On 11/3/06, Javier Rojas <[EMAIL PROTECTED]> wrote:
>  actual_ctr = table.rows.length;
>  last_row = table.rows[actual_ctr - 1];

The table.rows isn't standard and isn't implemented on firefox.

rows = MochiKit.DOM.getElementsByTagAndClassName('tr',null,table);
actual_ctr = rows.length;
last_row = rows[actual_ctr -1];

same behaviour. The rows are added and the elements below the widget don't get pushed downwards (in firefox)





--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups "TurboGears" group.
To post to this group, send email to turbogears@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to