> > troubleshooting
> > i'm looking at the log, and it seems to me that when i am at the
> > initial page (and surrounding pages), i am in the desired controller.
> > routing appears to be working as expected.  however, when i test my
> > drop-down menu, it appears as though 1) the :url => {:controller => ..
> > details are being ignored; and 2) the parent "admin" controller only
> > is getting processed rather than the supposed current "admin/assets"
> > controller.  it is as if the default, last route, " map.connect
> > ':controller/:action/:id' " is being consulted rather than the :url in
> > observe_field or anything else higher pertaining to admin and assets
> > in routes.  "assets" gets parsed as/demoted to an action rather than
> > as part of the controller.
>
> > <%= select_tag(:type, options_for_select(['[select
> > one]','page','program','event']), :id => 'type_selection') %>
>
> > <%= observe_field('type_selection',
> >   :frequency => 0.5,
> >   :update => 'page_selection',
> >   :url => {:controller => "admin/assets", :action => :set_pages},
> >   :with => "'type='+$('type_selection').value") %>
>
> > <div id="page_selection">
> > </div>
>
> What  is in the rendered html?

<script type="text/javascript">
//<![CDATA[
new Form.Element.Observer('type_selection', 0.5, function(element,
value) {new Ajax.Updater('page_selection', '/admin/assets/set_pages',
{asynchronous:true, evalScripts:true, parameters:'type='+$
('type_selection').value + '&authenticity_token=' +
encodeURIComponent('13b2be353ea3c336c4f8763a4dd2128383ec4d5f')})})
//]]>
</script>

-- 
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