JavaScript/jQuery DataGrid - summary.texts
Contains properties that specify text patterns for summary items.
Depending on their type, summary items use one of predefined text patterns specified in the summary.texts object. For example, summary items of the "avg" type use the pattern specified by the avg field of the texts object.
By default, a summary item is located in the column that provides data for it. This column is called the "parent column". However, a summary item may be located in any other column or in a group row. To specify text patterns for such summary items, use properties with the OtherColumn addition in their name. For example, summary items of the "avg" type located outside their parent column use the pattern specified by the avgOtherColumn field of the texts object.
When implementing a pattern, you can access the summary item value with applied format using position marker 0. If the summary item is placed outside its parent column, you can also access the caption of the parent column using position marker 1. Place each of these position markers within curly brackets.
avg
Specifies a pattern for the "avg" summary items when they are displayed in the parent column.
avgOtherColumn
Specifies a pattern for the "avg" summary items displayed in a group row or in any other column rather than the parent one.
See Also
max
Specifies a pattern for the "max" summary items when they are displayed in the parent column.
maxOtherColumn
Specifies a pattern for the "max" summary items displayed in a group row or in any other column rather than the parent one.
min
Specifies a pattern for the "min" summary items when they are displayed in the parent column.
minOtherColumn
Specifies a pattern for the "min" summary items displayed in a group row or in any other column rather than the parent one.
See Also
sum
Specifies a pattern for the "sum" summary items when they are displayed in the parent column.
sumOtherColumn
Specifies a pattern for the "sum" summary items displayed in a group row or in any other column rather than the parent one.