function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Raghvendra JhaRaghvendra Jha 

rollup summary fields are not missing

I'm making describe call related to page layout fields on object 'Account/Contact' so as to get all the page layout fields on our custom visual force page. As a result of that , I'm getting all the page layout fields except fields with data type "Roll up summary". Is this is the limitation of salesforce page layout describe call. I'm using the below code.
 
var ObjectName='Account';
var RecordTypeId='XXXXXXXXXXX';
var resultLayout = sforce.connection.describeLayout(ObjectName, new Array(RecordTypeId));//to fetch the page layout fields.