On Martes, 4 de diciembre de 2012 12:08:39 Jason Fleetwood-Boldt escribió: > I have an active scaffold page and I'd like my update action to NOT use > ajax, just go to a new URL using a get request. > > I tried this but it doesn't do anything: > > config.action_links.update.inline false > > Did I do something wrong?
Yes, you want to enable page instead of disabling inline, and use config.update.link: config.update.link.page = true -- You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" 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/activescaffold?hl=en.
