Natvigation Master Page - Trying to convert a prior page into a child page

Tracy,

Not sure exactly what you mean by question 1… you just want your Skuid header to open SFDC pages that are not squidified, but retain your skuid header? Not sure if that’s possible. Why not just squidify your whole app and get rid of the SFDC layouts entirely?

If you just want your skuid header to be links to SFDC pages with a normal SFDC header, that’s totally possible.

If you post your XML we’ll take a look.

I want a Menu structure that will link to my pages in SFDC. I am looking for a way to do this with objects already built in SFDC and pages pre-built in Skuid. What is the best and easiest way? How?

I have already built the Navigation Menu in Skuid and saved as a Master Page.

Sounds like you want to migrate all of your pre-built skuid pages to child pages of your master/header. Which currently means a lot of copy+paste XML.

This is a possible alternative. This is the second question I had in my original correspondence. I followed the tutorial to merge my existing page XML into a child page that I created from the Navigation Master page but I am unable to see any child page fields. The child page only displays the menu from the master page. It should display my Navigation Menu and the child page models and components.

I followed the Master Page Tutorial instructions below:

Can I send you my child page XML? I’d like to know what I am doing wrong.

----see tutorial description below-------

First, copy the models you want into the section and rename any models that have the same name as any models on your Master Page. Then, in the section, paste in the components from your existing page and remap them to your new model names as necessary. (I learned that one the hard way too).
There will be a node for each of the Page Region components in the Master Page, so you can either paste all the component XML into one, Save, and then drag/drop components around in the App Composer, or go ahead and arrange them in the XML.

sure, my email is matt.sones@compasscare.info.

Send both your original page and your new child page.

okay, thanks!

Tracy,

Your components need to be inside the pageregioncontents tag, like so:

<pageregioncontents>
   <components>
          ....
    </components>
</pageregioncontents>

The updated XML you sent looks fine (at least on cursory glance).

Are the components visible in the builder?
Are you getting any console errors in runtime?

No, the components are not visible in the builder.
I am not getting any errors in runtime.

Oops… gave you the wrong syntax. Try this:

<pageregioncontents>
  <pageregioncontent>
   <components>
          ....
    </components> </pageregioncontent>
</pageregioncontents>

Tracy,

Were you ever able to get this to work?

If you have a working stand-alone page that you want to convert to a child page:

  1. Create a new page using the Master Page that you want.
  2. Save that page and click view/edit XML at the bottom of the builder.
  3. Open your working stand-alone page and view/edit XML.
  4. Copy the (with everything in between) from the stand-alone page, and replace in the new child page with it.
  5. If you have any models on your master page, make sure that none of the models of your new child page have the same name. If they do, rename them.
  6. Copy (with everything in between) from the stand-alone page, and replace the which comes after with it.
  7. Save and preview your work.

Hi,

I just followed the instructions again. Its not working for me. I did this several times the other day and provided my XML.

Tracy can you give Skuid login rights to your org and send an email to support@skuidify.com with your org iD and the page name of the page you are trying to convert and the initial attempts?   We can see where you’ve gone wrong… 

Here is a tutorial on how to give us login rights: http://help.skuidify.com/m/getting-started/l/182412-getting-help-how-to-grant-skuid-login-rights-to-…

Could you work around this with a page include? For example: -Master page name: MasterHeader -Existing stand along page name: ContactDetail -Create a new child page named: ContactDetailWithHeader that is a child of MasterHeader -add a page include to ContactDetail in your new ContactDetailWithHeader Page and pass in any URL Parameters needed. I haven’t tried it but it seems it would work…

I tired the page include solution (in my above comment). This seems to work for my use case, not sure if it will work for all use cases. I created a “junction” page which married my master page and my stand alone page using a page include. I passed in all the URL parameters that were needed for the stand alone page from the junction page. It seems to be working just like a standard master/child page coupling. It was a super easy way to convert stand alone to child, but I haven’t tested extensively.

To anyone who is trying to move an existing page to a child page via the XML copy+paste.

I was trying Matt’s syntax above, with no avail. Then I discovered that I was missing a ‘regionid’ and a ‘uniqueid’ as attributes of the like this:

To obtain it, I went into the page editor, dropped any random component into the new child’s pageregion, returned to the XML editor, and voila - the id’s are now populated.

Just remove the XML of the component you randomly selected, and follow the ‘Special Considerations’ here.

Thanks for passing this along Henry.  Your technique is absolutely correct.   I’ve passed your recommendation on to the documentation team for inclusion in the help document. 

I’d like to put in a vote for making existing pages page includes of master/child pages (as I described in other comments in this post). I have been using it for all master/child pages and it has advantages including being able to use the primary page with or without the Master. Plus for existing pages you don’t have to do any code conversion.

FYI, there’s now a child-normal page converter tool in Skuid Labs.https://github.com/skuid/skuid-labs/tree/master/experiments/pages/childNormalPageConverter