Hi Founders,
I don't want ANY of this.
If I want to edit a website I will use WordPress.
When doing Wiki I want the OLD editing experience.
I do NOT want fixed-width tables, which require me to spend effort on layout.
I do want the old data-width tables, so I can just CREATE the 1x1 table, paste the data I had prepared in Excel, and save the page.
The new experience is shit for Wiki users. Please immediately revert Confluence Cloud instances, and then provide the option to exploit new/old experiences. Or, even better, just remove the "new" experience altogether.
Same site, different pages, same content pasted from exactly the same Excel workbook.
How can I get tables to look like the bottom one (auto_suppliers) when working with the "New" Editor Experience (auto_suppliers_fullwidth)?
Is it time for a new Wiki?
I'm hugely unimpressed.
Kind regards, Robin.
Hello,
EDITED 2/2/2021 (since this seems to be still unclear):
Let me try to summarize what's been already written to everyone else asking the same question in here:
For more details, please see: How we roll out the new editor in Confluence
I hope this helps.
Sana,
many thanks. Sorry, I didn't reply to your hint.
Unfortunately that solution didn't work for me. I got an exception error.
So that request is still open (for me). Any idea (someone else)?
I have now a new similar task: I get the descendants of a given page in a user macro. I want to sort that pages by the last-modify-date. Again: how can that be done?
My user macro so far:
## Macro title: Page descendants
## Macro has a body: N
## List all descendant pages below a give page
## Developed by: Stefan Baader
## Date created: 13/10/2015
## Installed by: Stefan Baader
## @param Page:title=Page|type=confluence-content|required=true|desc=Select a page do use
#set( $pages = $pageManager.getPage($space.key, $paramPage).getDescendants() )
Descendants of page "${paramPage}"
<table>
<tr>
<th>Seite</th>
<th style="white-space:nowrap;">Vers. Nr.</th>
<th style="white-space:nowrap;">Aktualisiert am</th>
</tr>
#foreach( $page in $pages)
<tr>
<td>
<a href="$req.contextPath/pages/viewpage.action?pageId=$page.id">$page.title</a>
</td>
<td>
$page.getVersion()
</td>
<td style="white-space:nowrap;">
$page.getLastModificationDate()
</td>
</tr>
#end
</table>
Have you looked at this one: https://answers.atlassian.com/questions/218237/sort-list-of-objects-in-velocity
It helped me with my sorting issues :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.