ASPxPivotGrid.HtmlFieldValuePrepared Event
Enables the settings of individual field value cells to be changed.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event PivotHtmlFieldValuePreparedEventHandler HtmlFieldValuePrepared
#Event Data
The HtmlFieldValuePrepared event's data class is PivotHtmlFieldValuePreparedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cell | Gets the processed data cell. |
Custom |
Gets the custom total that corresponds to the currently processed column/row header.
Inherited from Pivot |
Data |
For internal use.
Inherited from Pivot |
Data |
Gets the data field that specifies the processed value.
Inherited from Pivot |
Field |
Gets the field being processed.
Inherited from Pivot |
Field |
Gets the field position among the visible fields within the header area.
Inherited from Pivot |
Is |
Gets whether the processed field value is collapsed.
Inherited from Pivot |
Is |
Gets whether the field is displayed within the Column Header Area.
Inherited from Pivot |
Is |
Gets or sets whether the current header corresponds to the “Others” row/column.
Inherited from Pivot |
Item |
For internal use.
Inherited from Pivot |
Max |
Gets the maximum row index (for row fields) or column index (for column fields) that corresponds to the processed field value.
Inherited from Pivot |
Min |
Gets the minimum row index (for row fields) or column index (for column fields) that corresponds to the processed field value.
Inherited from Pivot |
Value |
Gets the column field or row field value that corresponds to the currently processed column/row header.
Inherited from Pivot |
Value |
Gets the type of the currently processed header of a column or a row.
Inherited from Pivot |
The event data class exposes the following methods:
Method | Description |
---|---|
Change |
Changes the expanded state of the field value currently being processed.
Inherited from Pivot |
Create |
Returns data records that are used to calculate a summary value for the specified cell.
Inherited from Pivot |
Create |
Returns data records that are used to calculate a summary value for the specified cell.
Inherited from Pivot |
Create |
Returns data records used to calculate a summary value for the specified cell in OLAP and server mode.
Inherited from Pivot |
Create |
Returns data records that are used to calculate a summary value for the specified cell.
Inherited from Pivot |
Create |
Obsolete. In OLAP mode, returns a list of records used to calculate a summary value for the specified cell.
Inherited from Pivot |
Create |
Obsolete. In server mode, returns a list of records used to calculate a summary value for the specified cell.
Inherited from Pivot |
Get |
Returns a value displayed in the specified cell.
Inherited from Pivot |
Get |
Returns the specified column or row field value for the cell, addressed by its zero-based index in the Data Area.
Inherited from Pivot |
Get |
Returns the parent field for the field value currently being processed.
Inherited from Pivot |
Get |
Returns the value of a specific parent field corresponding to the field value currently being processed.
Inherited from Pivot |
#Remarks
The HtmlFieldValuePrepared event is raised for each field value cell within the ASPxPivotGrid when the corresponding table cell has been created. You can handle this event to change the style settings of individual cells.
The processed cell is identified by the event parameter’s PivotHtmlFieldValuePreparedEventArgs.Cell property.
#Example
This example demonstrates how to use the ASPxPivotGrid.HtmlFieldValuePrepared
event to customize the appearance of a specific Field Value.
- If the Country field value is equal to ‘Brazil’, the background color is set to LightGreen.
- If the Country field value is equal to ‘Argentina’, the background color is set to LightBlue.
- In other cases, the background color of the Country field values is set to LightYellow.
The image below shows the result.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="FormatCellValues._Default" %>
<%@ Register Assembly="DevExpress.Web.ASPxPivotGrid.v__, Version=__,
Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web.ASPxPivotGrid"
TagPrefix="dx" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<dx:ASPxPivotGrid ID="ASPxPivotGrid1" runat="server"
DataSourceID="AccessDataSource1" Theme="Metropolis"
onhtmlfieldvalueprepared="ASPxPivotGrid1_HtmlFieldValuePrepared">
<Fields>
<dx:PivotGridField ID="fieldCountry" Area="RowArea"
AreaIndex="0" FieldName="Country">
</dx:PivotGridField>
<dx:PivotGridField ID="fieldYear" Area="ColumnArea"
AreaIndex="0" FieldName="Year">
</dx:PivotGridField>
<dx:PivotGridField ID="fieldTotal" Area="DataArea"
AreaIndex="0" FieldName="Total">
</dx:PivotGridField>
</Fields>
</dx:ASPxPivotGrid>
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
DataFile="~/App_Data/nwind.mdb"
SelectCommand="SELECT Customers.Country, Year([OrderDate]) AS [Year], Sum([UnitPrice]*[Quantity]) AS Total
FROM (Customers INNER JOIN Orders ON Customers.CustomerID = Orders.CustomerID) INNER JOIN [Order Details] ON Orders.OrderID = [Order Details].OrderID
GROUP BY Customers.Country, Year([OrderDate])
HAVING (((Customers.Country) In ('Brazil','Argentina','Germany','USA', 'UK')));
">
</asp:AccessDataSource>
</div>
</form>
</body>
</html>