I've noticed some strangeness when using the InPlaceEditor.
Here's my code:

<p id="storyTitle"><%= storyTitle %></p>

<script type="text/javascript">                         
    new Ajax.InPlaceEditor('storyTitle', 
        'editBlog.jsp', {
            callback: function(value) { return 'v=edit&user=<%=
customerName %>&story=<%= storyID
%>&editItem=storyTitle&storyTitle=' + value.value;}, 
        }); 
</script>

The problem I'm having is with the callback function. In the
examples at script.aculo.us, they show assigning parameters the
new form value by simply saying:

"param=" + value;

For some reason hhis not working for me in Firefox (1.07).
Instead I have to do:

"param=" + value.value.value;

In IE (6.0) none of these work (value, value.value,
value.value.value).

I'm stumped -- anyone see what I'm mising?

Cheers,

Brandon

________________________________________________
Get your own "800" number
Voicemail, fax, email, and a lot more
http://www.ureach.com/reg/tag
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs@lists.rubyonrails.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to