Skip to main content
A newer version of this page is available.
All docs
V18.2

ASPxPivotGrid.CssPostfix Property

Gets or sets a CSS class name postfix that identifies style settings to be applied to the pivot grid.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v18.2.dll

Declaration

public override string CssPostfix { get; set; }

Property Value

Type Description
String

A String value that represents the required CSS class name postfix.

Remarks

Use the CssPostfix property, together with the ASPxPivotGrid.CssFilePath property, to define a pivot grid’s custom appearance via a separate CSS file. The CssPostfix property specifies a postfix (a custom style explanatory text) that identifies CSS class names whose settings define the grid’s appearance. The CSS class names specified by the postfix are intended to be contained within the CSS file referred to by the ASPxPivotGrid.CssFilePath property. In order to apply the appearance provided by the specified CSS file’s settings, default class names within the file should be supplemented with a postfix defined via the CssPostfix property. Note that a class name and a postfix provided should be separated by the underline symbol - this is our internal requirement, required for parsing reasons.

Using postfixes allows for differentiating class names which define the same appearance settings of controls in different ways, in a web browser. If postfixes are not used, each separate CSS file contains classes with the same default names (as can be seen in a sample CSS file invoked by a click on the “View CSS Sample” command in a pivot grid’s designer). In this case, a web browser cannot recognize and apply correct styles, since all CSS classes are named identically within different CSS files.

Note

When you set the CssPostfix property, you disable not only the default CSS styles, but also the default sprites. The ASPxPivotGrid control does not allow you to mix the default CSS sprite with a custom CSS. To retain the default sprite CSS, copy its code to your own CSS file.

To learn more about CSS sprites refer to Default Implementation of CSS Sprites in DevExpress Themes and Using Custom CSS Sprites topics.

See Also