Blaster a écrit : > When you say editorid parameter? does it append a querystring at the > end in the form ?editorid=thread_25
Well, by default it will use a GET verb, so yes, you'd get something like this on your URL: http://blah/mysite/index.php/forum/simpleloadmsg/25?editorId=thread_25 If you can't change your server-side code, then you'll need to hack into Scripty's code to remove this parameter, which is currently forced onto the back-end (it is assumed an extra param doesn't break stuff…) Specifically, you'd need to strip the "parameters:..." line in the loadExternalText method of Ajax.InPlaceEditor (and perhaps Ajax.InPlaceCollectionEditor, if you use it too). However, I would recommend adjusting your server side so it does not b0rk just because the URI gets a query string… That's just not robust! 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ 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 [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-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
