• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

"reportlayout" MDO List

Some tooltip text!
• 1 minute to read
 • 1 minute to read

ReportCategoryProvider creates an MDO list that consists of the values in . In the MDO list the following enumeration values are omitted: All, Person and Diary.

Implemented by the ReportLayoutProvider class. The name of the MDO list is 'reportlayout'.

Sample Request

GET /api/v1/MDOList/reportlayout
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("reportlayout", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
    Console.WriteLine("{0} {1} {2} {3}", 
         item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}

Sample Output

Id Name StyleHint ExtraInfo
1 List
2 Label
3 Group List
4 Cross Table
5 Calendar week-5
6 Calendar week-7
7 Calendar month
8 Text

Related MDO Lists

  • "reportlayoutheadings"
  • "reportlayoutheadingswithallitem"
  • "reportlayoutheadingswithallitemwithnoselection"
  • "reportlayoutheadingswithnoselection"
  • "reportlayoutwithallitem"
  • "reportlayoutwithallitemwithnoselection"
  • "reportlayoutwithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top