The Grid object stores information on a field the Edit form of an item (Defects, Releases and so on) contains.
Properties
ColName : string
The name of the field.
ColCaption : string
The caption of the field as it appears in QAComplete.
IsColLocked : string
Specifies whether the field is locked.
IsRequired : string
Specifies whether the field is required.
DefaultValue : string
The field’s default value.
DataType : string
The type of the field.
ListOfValues : array of KeyValueItem
If the field is a lookup field (a choice list), the array of KeyValueItem objects describes the values the field can take.
ColCaption : string
The caption of the field as it appears in QAComplete.
ColName : string
The name of the field.
DataType : string
The type of the field.
DefaultValue : string
The field’s default value.
IsColLocked : string
Specifies whether the field is locked.
IsRequired : string
Specifies whether the field is required.
ListOfValues : array of KeyValueItem
If the field is a lookup field (a choice list), the array of KeyValueItem objects describes the values the field can take.
Example
XML
							<Grid>
  <ColName>Title</ColName>
  <ColCaption>Title</ColCaption>
  <DataType>TextBox</DataType>
  <IsColLocked>N</IsColLocked>
  <IsRequired>Y</IsRequired>
							</Grid>
						
