• Pavan Kumar 154
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Hi All,

I want to retrieve recordtype settings for only desired picklist fields. When I try to retrieve a custom field along with the recordtype in Package.xml, the Object file retreives recordtype settings for all the picklist fields related to that object which leaves me no other option but to remove those recordtype entries for these 'other' picklists manually from Object file which is really a painful task since there are lot of picklist fields and pickllst values. Is there a way to filter out and retrieve recordtype settings for only desired picklist fields listed in Package.xml file?

Thanks,
Pavan Kumar
Hi All,

I tried to execute the below code (taken from Lightning Developer's Guide) and i receive error message "Failed to save undefined: No COMPONENT named markup://auradocs:facetHeader found :[markup://MyLighteningApp:helloFacets]: Source"

Am i missing something here??
 
<aura:component>
    See how we set the header facet.<br/>

    <auradocs:facetHeader>

        Nice body!

        <aura:set attribute="header">
            Hello Header!
        </aura:set>
    </auradocs:facetHeader>

</aura:component>

- Pavan Renjal