IE issues

HI,
I released my project as LGPL:
http://rubyforge.org/projects/financasonrails/

So, It works great with Firefox but with IE visual_effects isn’t
working correctly! Does anyone know why?

demo site: http://demos.guzenski.com.br/for/categories

could you explain what does not work ?

This issue doesn’t appear to be related to the library itself but to the
DOM elements you’re updating. IE has serious limitations on this. For
instance you can’t add an option to a , you have to update the
entire select element.

Most likely you’re doing an update that IE won’t allow.

Tiago M.

Thre visual_effects.

Everytime that I insert a new data, the line into list shows highlight
effect. But only is working on FF

Everytime that I delete a row in list it shows FADE effect, but it is
only working on FF

It seams that you have a problem with AJAX update on a table id=“list”
element.
I take a look in a FireBug addin for FF and I have two table id =
“list” elements.


<tbody>

<tr id="list_category_2">
    <td align="left"> Saída</td>
    <td align="left"> Alimentacao</td>
    <td align="right">0</td>
    <td align="right">0,00</td>
    <td>
        <a href="#" onclick="new Ajax.Request('/for/categories/

edit/2’, {asynchronous:true, evalScripts:true}); return false;">
</
a>

<tr id="list_category_7">
    <td align="left"> Saída</td>
    <td align="left"> Esportes</td>
    <td align="right">2</td>
    <td align="right">15,65</td>
    <td>
        <a href="#" onclick="new Ajax.Request('/for/categories/

edit/7’, {asynchronous:true, evalScripts:true}); return false;">
</
a>

<tr id="list_category_4">
    <td align="left"> Saída</td>
    <td align="left"> Estudo</td>
    <td align="right">0</td>
    <td align="right">0,00</td>
    <td>
        <a href="#" onclick="new Ajax.Request('/for/categories/

edit/4’, {asynchronous:true, evalScripts:true}); return false;">
</
a>

<tr id="list_category_6">
    <td align="left"> Saída</td>
    <td align="left"> asd</td>
    <td align="right">0</td>
    <td align="right">0,00</td>
    <td>
        <a href="#" onclick="new Ajax.Request('/for/categories/

edit/6’, {asynchronous:true, evalScripts:true}); return false;">
</
a>

Tipo Categoria Quant. Lancamentos Balanco

I do not think it was you intention.
It seams to work in FF but I don’t think so, it just complain less.

wow, thanks a lot … I was using page.replace_html but correct is
page.replace

I didn’t know FireBug, I will install it… thanks again