It's really strange. This is my code:

function topicAdd(){
    var params = $(form).serialize(true);
    new Ajax.Request('topic_add.php', {
        parameters: params,
        onCreate: onLoading,
        onComplete: onLoaded,
        onSuccess: function(transport){
            onSaved(transport);
        }
    });
}

function onLoading(){
    $('btn_add').disable();
    $('btn_add').insert({
        before: new Element('img', {id: 'loadIndicator', src: '/images/
indicator.gif'})
    });
}

function onLoaded(){
    $('loadIndicator').remove();
    $('btn_add').enable();
}


If I disable button, insert doesn't work. Is it bug, or some security
reason?


On Mar 26, 5:40 pm, Rauan Maemirov <[EMAIL PROTECTED]> wrote:
> I'm creating simple ajax request. but onCreate and onComplete doesn't
> work. Are this methods deprecated in 1.6.0.2? onLoading and onLoaded
> also doesn't work.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to rubyonrails-spinoffs@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to