How can i change devextreme FilterRow ui language. For examle : I want to change "Starts with" text to "New starts with" text.
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>