This content has been marked as final.
Show 3 replies
-
1. Re: XML Update - Edit in Place
Poi Oct 13, 2008 12:25 PM (in response to oicram)Is seems like EditInPlace just isn't something spry can do. no one can answer these questions anywhere I look. -
2. Re: XML Update - Edit in Place
Arnout Kazemier Oct 13, 2008 12:31 PM (in response to oicram)..
Erm, its just really easy to do it your self. Spry provides all nessery tools within in the framework to build it your self..
heres full crud with cfusion..
http://www.coldfusionjedi.com/index.cfm/2008/5/13/Ask-a-Jedi-Complete-Spry-CRUD-Example -
3. Re: XML Update - Edit in Place
oicram Nov 30, 2008 8:21 AM (in response to Arnout Kazemier)Thanks for the replys.
Easy it isn't. "Just really easy" it isn't, for sure! :p
At least for me. :s
I'm on php not cf btw. :(
Till now I see the answer between this two posts. It could be possible. But it isn't easy.
Easy it will be the ability to add something like this:
<div id="unique_id">This is my text to modify with edit in place</div>
<script type="text/javascript">
new Ajax.InPlaceEditor('unique_id', 'save.php', {
callback: function(form, value) {
return 'name=' + escape(value)+'&id=unique_id'
}
});
</script>
Regards,
Oicram

