Displaying 1 result from an estimated 1 matches for "get_raw".
Did you mean:
net_raw
2007 Apr 09
0
Unobtrusive IPE -- comments, please
...editListing = new Ajax.InPlaceEditor("listing_body",
"ajax_update.php",
{rows:20,cols:50,
onComplete: function(transport, element) {
new Effect.Highlight(element,
{startcolor: this.options.highlightcolor});
editListing.dispose();
},
loadTextURL: "get_raw.php?id=<?= $id ?>&field=description",
ajaxOptions: {method: "post"},
callback: function(form, value) {
return "id=<?= $id ?>&field=description&myparam=" +
encodeURIComponent(value)
}
});
if(editListing) editListing.enterEditMode(...