You need to look in the Confluence source code. If you haven't got it, spend 10 bucks to get a starter license.
The file you're looking for is page-move-dialog.js It has all you need to get going.
Here's where the business is to trigger it:
$("#action-move-page-dialog-link").click(function (e) { e.preventDefault(); if ($("#move-page-dialog").length > 0) { $("#move-page-dialog, body > .shadow, body > .aui-blanket").remove(); } new Confluence.MovePageDialog({ moveHandler: viewPageMoveHandler }); return false; });
Swap out the link click to be however you're triggering the screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you trying to do this remotely using web services or from within a plugin?
Remotely:
I normally take a look at the Confluence CLI in Atlassian CLI. If it's possible there, then, there's likely a SOAP API available.
To move a page under a new parent using Confluence CLI...
confluence --action movePage --space "zconfluencecli" --title "This Page Title" --parent "New Parent Page Title"
So, it's entirely possible using the Confluence remote APIs.
For more details check the movePage method on https://developer.atlassian.com/display/CONFDEV/Remote+Confluence+Methods#RemoteConfluenceMethods-Pages
- void movePage(String token, String sourcePageId, String targetPageId, String position)- moves a page's position in the hierarchy.
- sourcePageId - the id of the page to be moved.
- targetPageId - the id of the page that is relative to the sourcePageId page being moved.
- position - "above", "below", or "append". (Note that the terms 'above' and 'below' refer to the relative vertical position of the pages in the page tree.)
As a standard plugin:
Try something like this...
Page page = pageManager.getPage(spaceKey, pageTitle); Page newParent = pageManager.getPage(parentSpaceKey, parentPageTitle); page.setParentPage(newParent);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thanks for your answer, it's with a plugin but i now how to set a parent with the API, i just want to know if it's possible to get this screen in my plugin to let users choose a space and parent like we can do in confluence.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.