Intersoft WebGrid Documentation
GroupTotalVisible Property
See Also  Send Feedback
ISNet.WebUI.WebGrid Namespace > WebGridTable Class : GroupTotalVisible Property






Determines whether total row for each GroupRow is shown.

Syntax

Visual Basic (Declaration) 
<ISNet.Serialization.BinarySerializableAttribute()>
<ISNet.Serialization.XmlSerializableAttribute()>
<DescriptionAttribute("Determines whether total row for each GroupRow is shown.")>
<NotifyParentPropertyAttribute(True)>
<DefaultValueAttribute()>
Public Property GroupTotalVisible As Boolean
Visual Basic (Usage)Copy Code
Dim instance As WebGridTable
Dim value As Boolean
 
instance.GroupTotalVisible = value
 
value = instance.GroupTotalVisible
C# 
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DescriptionAttribute("Determines whether total row for each GroupRow is shown.")]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public bool GroupTotalVisible {get; set;}
Delphi 
public read-write property GroupTotalVisible: Boolean; 
JScript 
ISNet.Serialization.BinarySerializableAttribute()
ISNet.Serialization.XmlSerializableAttribute()
DescriptionAttribute("Determines whether total row for each GroupRow is shown.")
NotifyParentPropertyAttribute()
DefaultValueAttribute()
public function get,set GroupTotalVisible : boolean
Managed Extensions for C++ 
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DescriptionAttribute("Determines whether total row for each GroupRow is shown.")]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public: __property bool get_GroupTotalVisible();
public: __property void set_GroupTotalVisible( 
   bool value
);
C++/CLI 
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DescriptionAttribute("Determines whether total row for each GroupRow is shown.")]
[NotifyParentPropertyAttribute(true)]
[DefaultValueAttribute()]
public:
property bool GroupTotalVisible {
   bool get();
   void set (    bool value);
}

Remarks

WebGrid's key strength is its advanced and sophisticated UI elements allowing users to work interactively with the information. WebGrid provides two types of GroupRow's info which both of them can be shown at the same time.

The first type is the row information that appear in the GroupRow's row. Although that you can put most of information such as group's recordcount, sum or average of a column; it is become unfeasible and not readable when you have many columns that need to be calculated.

By turning on GroupTotalVisible, you will be able to see each column's total at the bottom of its position. The GroupTotalRow takes the advantage of WebGrid's AutoLayout as its width will be synchronized as users resize column's width. This result in more readable and better understanding of delivered information.

The GroupTotal work in conjunction with WebGridColumn's AggregateFunction. To display Group's total for a column, you need to set how the column will be calculated through AggregateFunction property.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

©2012 Intersoft Solutions Corp. All Rights Reserved.