Search code examples
javascriptreactjsdevextreme

How to change FilterRow language in devextreme-react/data-grid


How can i change devextreme FilterRow ui language. For examle : I want to change "Starts with" text to "New starts with" text.

enter image description here


Solution

  • I wonder if overriding the operationDescriptions config accomplishes what you're trying to achieve?

    Check out the docs: https://js.devexpress.com/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/filterRow/operationDescriptions/

    <DataGrid ... >
                <FilterRow ... >
                    <OperationDescriptions
                        startsWith="New starts with"
                    />
                </FilterRow>
    </DataGrid>