Looks to me like you need to include the script.aculo.us library,
which is found in your public/javascripts/ folder. However, add this
to the <head> of your application layout:

<%= javascript_include_tag :defaults %>

Then make sure that everything is in the javascripts folder.

On Nov 24, 1:34 am, Smarty 2k <[EMAIL PROTECTED]>
wrote:
> hi friends...
>
> Ajax problem....
> please help me.
> Ajax using delete the record
>
> Browser Mozilla
>
> my controller:
>
> def delete
>     Book.find(params[:id]).destroy
>     redirect_to :action =>'book'
>   end
>
> my view:
>
> <%= link_to_remote (image_tag("../images/delete_bt.gif", :border => 0)),
>       :url =>{
>            :controller=>"book",
>            :action => 'delete',
>            :id => s.id},
>        :update=>"book#{s.id}",
>        :loading=>"status('book#{s.id}')"
> %>
>
> Error....
> uncaught exception: controls.js requires including script.aculo.us'
> effects.js library
>
> Line 0
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to