Static Groups XML

Use this property to control any static groups you want displayed within the Grid Display.  

XML Property Example:

<StaticGroups>

          <StaticGroup>

                   <Display><![CDATA[Company Contains Microsoft AND Status = Not Started]]></Display>

                   <Condition><![CDATA[Company LIKE '%Microsoft' AND Status = 'Not Started']]></Condition>

          </StaticGroup>

</StaticGroups>

 

For each static group you want to have displayed in the grid, you must provide a StaticGroup child member of the StaticGroups parent node.  The StaticGroup child node has two child node members, Display and Condition.

      Display: This node controls the text that will be displayed in the static groups row header.

      Condition:  This node controls the filter that will group the grid items into any static groups.

Back to Top