FolderItem
Applies To: System Center Service Manager 2010
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Represents the association between a view element and its parent folder.
Schema Hierarchy
ManagementPack
Presentation
FolderItems
FolderItem
Syntax
<FolderItem ElementID="ViewID" Folder="FolderID"></FolderItem>
Attributes and Elements
The following sections describe attributes, child elements, and the parent element of the FolderItem element.
Attributes
Attribute | Description |
---|---|
ElementID |
Required attribute. The View element that is to be the child of the folder specified in the Folder attribute. |
Folder |
Required attribute. The ID of the Folder element that is to be the parent of the View element specified in the ElementID attribute. |
Child Elements
None.
Parent Elements
Element | Description |
---|---|
Contains all folder item definitions to be displayed in the Operations console. |
Remarks
FolderItem elements are used to specify under which folder a view will be displayed in the console.
Example
The following XML sample illustrates how to associate a View element with a Folder element by using the FolderItem definition. In this case, the Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.View.Overview
view will be placed under the top-level administration folder in the console.
<View ID="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.View.Overview" Target="System!System.Entity" Enabled="true" TypeID="OverviewType" Accessibility="Public">
<Category>Overview</Category>
...
</View>
…
<Folder ID="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.Folder.Root" ParentFolder="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.Folder" Accessibility="Public" />
…
<FolderItem ID="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.FolderItem.Overview" ElementID="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.View.Overview" Folder="Microsoft.EnterpriseManagement.ServiceManager.UI.Administration.Folder.Root" />