Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Configures the grid to display a second pane on right pane. This pane can be a fixed multiple of rows for each row in the left pane.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub EnablePivotedGridPane ( _
pivotedColumns As IEnumerable(Of PivotedGridColumn) _
)
'Usage
Dim instance As GridSerializer
Dim pivotedColumns As IEnumerable(Of PivotedGridColumn)
instance.EnablePivotedGridPane(pivotedColumns)
public void EnablePivotedGridPane(
IEnumerable<PivotedGridColumn> pivotedColumns
)
Parameters
pivotedColumns
Type: System.Collections.Generic.IEnumerable<PivotedGridColumn>A collection of pivoted grid columns. Each pivoted column must contain the number of grid field references specified by the row multiple.
Remarks
If all passed-in columns don’t specify the same number of fields, a Exception is thrown.
//add pivoted view
gds.EnablePivotedGridPane(utils.GetPivotedGridColumns(data));
'add pivoted view
gds.EnablePivotedGridPane(utils.GetPivotedGridColumns(data))