• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

PivotGridConfiguratorEditorProps

Represents the props of the KendoReact PivotGridConfiguratorEditor component.

NameTypeDefaultDescription

allowSubmit

boolean

Indicates if the Form is ready to be submitted.

  • If allowSubmit is set to true and the Form is valid, the user will be able to submit the form.
  • If allowSubmit is set to true and the Form is not valid, the user will be able to set the touched and visited state of all fields to true.

touched and visited state to true.

Useful for toggling the disabled state of the Submit button.

columnAxesEditor?

CustomComponent<PivotGridAxesEditorProps>

Overrides the default columnAxesEditor component.

The default component is: PivotGridAxesEditor.

columnAxesLabel?

CustomComponent<FieldProps intersected with LabelProps>

Overrides the default columnAxesLabel component.

The default component is: KendoReactLabel.

data

PivotGridField[]

Sets the data of the PivotGridConfiguratorEditor.

The data represents all fields available in the configurator.

errors

KeyValue<string>

The key-value pair containing the current errors by field path, combined from both field and form level validators.

fieldsEditor?

CustomComponent<PivotGridFieldsEditorProps>

Overrides the default fieldsEditor component.

The default component is: PivotGridFieldsEditor.

fieldsLabel?

CustomComponent<FieldProps intersected with LabelProps>

Overrides the default fieldsLabel component.

The default component is: KendoReactLabel.

horizontal?

boolean

Renders the PivotGridConfiguratorEditor in horizontal orientation.

measureAxesEditor?

CustomComponent<PivotGridAxesEditorProps>

Overrides the default measureAxesEditor component.

The default component is: PivotGridAxesEditor.

measureAxesLabel?

CustomComponent<FieldProps intersected with LabelProps>

Overrides the default measureAxesLabel component.

The default component is: KendoReactLabel.

modified

boolean

Indicates if the Form is modified. If any field is modified, modified is set to true. The modified state of field is set to true when the onChange callback of the Field component is called for first time.

onAxisFilterFieldExpand?

(event: PivotGridAxisFilterFieldExpandEvent intersected with { currentTarget: [PivotGridConfiguratorEditorHandle]({% slug api_pivotgrid_pivotgridconfiguratoreditorhandle %}); }) => void

A callback, fired whenever an AxisFilterField is expanded.

onAxisFilterFieldsExpandChange?

(event: PivotGridAxisFilterFieldsExpandChangeEvent) => void

A callback, fired whenever expanded state of the AxisFilterFields is changed.

onChange

(name: string, options: { value: any; }) => void

A callback for emiting changes to a specific field without using the Field component (see example).

Use onChange only if you cannot achieve the desired behavior through the Field component.

onFieldsEditorFieldCheck?

(event: PivotGridFieldsEditorFieldCheckEvent intersected with { currentTarget: PivotGridConfiguratorEditorHandle; }) => void

A callback, fired whenever a FieldEditorField is checked.

onFieldsEditorFieldExpand?

(event: PivotGridFieldsEditorFieldExpandEvent intersected with { currentTarget: PivotGridConfiguratorEditorHandle; }) => void

A callback, fired whenever a FieldEditorField is expanded.

onFormReset

() => void

A callback for resetting the Form.

onSubmit

(event: SyntheticEvent<any>) => void

A callback for submitting the Form. Can be passed to the onClick property of the Submit button.

rowAxesEditor?

CustomComponent<PivotGridAxesEditorProps>

Overrides the default rowAxesEditor component.

The default component is: PivotGridAxesEditor.

rowAxesLabel?

CustomComponent<FieldProps intersected with LabelProps>

Overrides the default rowAxesLabel component.

The default component is: KendoReactLabel.

submitted

boolean

Indicates if the Form is successfuly submitted. Useful for detecting if user is leaving the form before saving changes.

touched

boolean

Indicates if the Form is touched. If any field is touched, touched is set to true. The touched state of field is set to true when the onBlur callback of the Field component is called or when the user tries to submit the form.

valid

boolean

Indicates if the Form is valid. If any field is invalid, valid is set to false.

valueGetter

(name: string) => any

A callback for getting the value of a field without using the Field component (see example). Useful for creating and modifying the UI based on the field values.

visited

boolean

Indicates if the Form is visited. If any field is visited, visited is set to true. The visited state of field is set to true when the onFocus callback of the Field component is called or when the user tries to submit the form.