Displaying 1 result from an estimated 1 matches for "mypagemaj".
2008 Jan 21
4
Can't change paramName with InPlaceCollectionEditor
...d this simple code :
---------------------------------------------------------------------------------------------------
new Ajax.Request("myPageSel.asp", {
method: "get",
parameters: {r:$el.id},
onSuccess: function(xhr) {
new Ajax.InPlaceCollectionEditor($el.id, ''myPageMaj.asp'', {
paramName: $el.id,
collection: xhr.responseText.evalJSON()
});
alert($el.id);
}
});
---------------------------------------------------------------------------------------------------
Ajax.InPlaceCollectionEditor always sends paramName as "value".
alert($el.id...