Editing a page from outside that page
I recently had to code a little hack to be able to edit page fileds, from a custom view, or another page. There's a check in the javascript which makes sure that the inline editing form you're requesting matches the current page, so it doesn't work from any other place. It would be good if an option was added to do just that.
Comments
The javascript check I mentioned is on edit_mode.js, initMarkers(), line 63:
if (($this.attr('data-module') == 'pages' && pageId != 0) || $this.attr('data-module') != 'pages')
I can't really remember what what was wrong with the markers but it was something on render_marker() on Fuel_page.php.