• Our product teams collect and evaluate feedback from a number of different sources. To learn more about how we use customer feedback in the planning process, check out our new feature policy.

      As a user, I would like to be able to switch between the new editing experience (narrow view) and the old one (wider view)

      Why this is important

      Documentation may not fit on the new page style, for both editing or viewing. Working can become cumbersome. Wasted space on higher resolution monitors (1080p, 4k).

        1. FabricEditor1080p.png
          298 kB
          Diego
        2. FabricEditor4k.png
          529 kB
          Diego

            [CONFCLOUD-65654] Choose Between Editor View Style

            Robert Gottesman added a comment - - edited

            I was using @Thomas Scully successfully, but today when creating pages with properties as above

            'metadata': { 'properties': { 'content-appearance-draft':
            { 'value': 'full-width' }
            , 'content-appearance-published':
            { 'value': 'full-width' }
             
            

            I'm getting an HTTP 400 (400 Client Error: Bad Request for url: xxx) error even though the page is successfully added with full width! Strange. So it appears the 400 error is being reported erroneously.

            If I remove the properties above, everything works fine, but of course, the page is now narrow in width.

            Any ideas?

             

             

            Robert Gottesman added a comment - - edited I was using @Thomas Scully successfully, but today when creating pages with properties as above 'metadata' : { 'properties' : { 'content-appearance-draft' : { 'value' : 'full-width' } , 'content-appearance-published' : { 'value' : 'full-width' }   I'm getting an HTTP 400 ( 400 Client Error: Bad Request for url: xxx ) error even though the page is successfully added with full width! Strange. So it appears the 400 error is being reported erroneously. If I remove the properties above, everything works fine, but of course, the page is now narrow in width. Any ideas?    

            Thanks a lot for sharing this Thomas!

            Alex Medved {ConfiForms} added a comment - Thanks a lot for sharing this Thomas!

            For those wondering if full-width is possible through the API, it seems that it is possible through the properties endpoints (here) and when you create new content (here) though the documentation for the create content endpoint does not say so.  I found this post which suggests that it is possible through the create content endpoint (here).  I made this work in my side project and will put an example of the body I sent below (python code) in case anyone makes it here and is looking.  The "content-appearance-draft" and "content-appearance-published" are the properties that need to be set for the page width to appear full. 

             

             

            body = {
              'space': {
                'key': confluence_space_key
              },
              'ancestors': [
                {
                  'id': confluence_ancestor_page_id
                }
              ],
              'type': 'page',
              'title': confluence_page_name,
              'metadata': {
                'properties': {
                  'content-appearance-draft': {
                    'value': 'full-width'
                  },
                  'content-appearance-published': {
                    'value': 'full-width'
                  }
                }
              }
            }

             

             

             

             

            Thomas Scully added a comment - For those wondering if full-width is possible through the API, it seems that it is possible through the properties endpoints ( here ) and when you create new content ( here ) though the documentation for the create content endpoint does not say so.  I found this post which suggests that it is possible through the create content endpoint ( here ).  I made this work in my side project and will put an example of the body I sent below (python code) in case anyone makes it here and is looking.  The "content-appearance-draft" and "content-appearance-published" are the properties that need to be set for the page width to appear full.      body = { 'space' : { 'key' : confluence_space_key }, 'ancestors' : [ { 'id' : confluence_ancestor_page_id } ], 'type' : 'page' , 'title' : confluence_page_name, 'metadata' : { 'properties' : { 'content-appearance-draft' : { 'value' : 'full-width' }, 'content-appearance-published' : { 'value' : 'full-width' } } } }        

            jim mason added a comment -

            Choosing between editors ( not just styles ) is one of the strengths I brag about with Confluence to others.

            I know from tracking this Confluence issue for 3 years, there is NOT agreement in the user community on what the "right, modern" editor should do clearly. 

            There are ( as correctly advertised by Confluence ) some good new features in the new editor.

            There are also some features in the old editor that are still far superior ( try adding 10 rows quickly in the older editor vs the new editor – the + sign to hover on at the row level is hopelessly inaccurate ).

            The fact that I can use one or the other editor for a page is very good.

            The fact that choosing the editor ( and a style ) are easy enough for the average user ( or admin ) to understand is an issue.

            Sometimes we have simple sites and the admin will not allow users to choose an editor or a style. In other cases we may want to allow authors a choice of editors or styles to meet their needs.

            Having that freedom to setup sites to fit a use case and the freedom to choose editors and styles to fit is a plus. Let's make it easier to do.

             

            jim mason added a comment - Choosing between editors ( not just styles ) is one of the strengths I brag about with Confluence to others. I know from tracking this Confluence issue for 3 years, there is NOT agreement in the user community on what the "right, modern" editor should do clearly.  There are ( as correctly advertised by Confluence ) some good new features in the new editor. There are also some features in the old editor that are still far superior ( try adding 10 rows quickly in the older editor vs the new editor – the + sign to hover on at the row level is hopelessly inaccurate ). The fact that I can use one or the other editor for a page is very good. The fact that choosing the editor ( and a style ) are easy enough for the average user ( or admin ) to understand is an issue. Sometimes we have simple sites and the admin will not allow users to choose an editor or a style. In other cases we may want to allow authors a choice of editors or styles to meet their needs. Having that freedom to setup sites to fit a use case and the freedom to choose editors and styles to fit is a plus. Let's make it easier to do.  

            Same question.  I'd like to know if this is possible via the REST API.

            Thomas Scully added a comment - Same question.  I'd like to know if this is possible via the REST API.

            Yes, same question as Lukas: how do I set the full-width view when creating a page via the Confluence Cloud REST API?

            Thomas Berger added a comment - Yes, same question as Lukas: how do I set the full-width  view  when creating a page via the Confluence Cloud  REST API ?

            Is there any parameter for setting the wider view when creating a page via the Confluence Cloud REST API?

            Lukas Gotter _ Meetical added a comment - Is there any parameter for setting the  wider view  when creating a page via the Confluence Cloud  REST API ?

            Is there any parameter for setting the wider view in the Confluence Cloud REST API?

            Lukas Gotter _ Meetical added a comment - Is there any parameter for setting the wider view in the Confluence Cloud REST API ?

            Thank you for making this happen Avinoam.

            Petros Demetriades added a comment - Thank you for making this happen Avinoam.

            Avinoam added a comment -

            Hi all,

            Thanks for the quick feedback!

            For more context on how Full Width works, what's changed, what's coming, and how to stay updated on the documentation around it (public roadmap) - please have a look at our recent Community post here: https://community.atlassian.com/t5/Confluence-discussions/Full-width-mode-is-now-available-for-the-new-editor-in/td-p/1138727#U1139686

            Thanks,

            Avinoam

            Avinoam added a comment - Hi all, Thanks for the quick feedback! For more context on how Full Width works, what's changed, what's coming, and how to stay updated on the documentation around it (public roadmap) - please have a look at our recent Community post here:  https://community.atlassian.com/t5/Confluence-discussions/Full-width-mode-is-now-available-for-the-new-editor-in/td-p/1138727#U1139686 Thanks, Avinoam

              Unassigned Unassigned
              drodrigues@atlassian.com Diego (Inactive)
              Votes:
              140 Vote for this issue
              Watchers:
              102 Start watching this issue

                Created:
                Updated:
                Resolved: