Hi, I''m trying to integrate movtable to display some data. The file that lists out the partials to display the data looks like this: <html> <head> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <title>Movtable - List</title> <%= stylesheet_link_tag ''movtable'' %> <%= sort_generateJS %> </head> <body onload="sortableInit()" onmousemove="mouseMove(event)" onmouseup="mouseUp(event)"> <%= render_partial ''../../lib/movtable/table'' %> <%= render_partial ''../../lib/movtable/navigation'' %> <%= render_partial ''../../lib/movtable/filter'' %> </body> </html> I want to use my own application.rhtml layout, but leaving this code as-is replaces all of my standard layout code. When I just use the render_partial code it displays the data, but I also need to have the onload, onmousemove, and onmouseup function calls for full functionality. I don''t want to have the onload/onmousemove/onmouseup code handlers running for every single view on my site (or I would add these event handlers to application.rhtml), so I need a way to properly load the event handlers only when this view is needed. Any thoughts? Thanks in advance. -- Posted via http://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---