Grids | DataValidation: RemoteValidation/CheckUniqueEmailAddress - post->get (#32241)#32261
Merged
mpreyskurantov merged 1 commit intoDevExpress:26_1from Jan 22, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the remote email validation endpoint calls from POST to GET across DataGrid and CardView DataValidation demos for all frameworks (jQuery, Angular, React, Vue). The change refactors URL handling by introducing a baseUrl constant and modifies the HTTP request method along with the data passing mechanism to use query parameters instead of JSON body.
Changes:
- Changed HTTP method from POST to GET for email validation requests
- Replaced JSON body serialization with query parameter encoding using URLSearchParams (or equivalent framework methods)
- Introduced
baseUrlconstant for better URL management in DataGrid demos
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| apps/demos/Demos/DataGrid/DataValidation/jQuery/index.js | Converted POST to GET, added baseUrl constant, removed JSON.stringify and contentType |
| apps/demos/Demos/DataGrid/DataValidation/Vue/App.vue | Converted POST to GET using URLSearchParams, added baseUrl constant |
| apps/demos/Demos/DataGrid/DataValidation/ReactJs/App.js | Converted POST to GET using URLSearchParams, added baseUrl constant |
| apps/demos/Demos/DataGrid/DataValidation/React/App.tsx | Converted POST to GET using URLSearchParams, added baseUrl constant |
| apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts | Converted POST to GET using HttpClient params option, added baseUrl property |
| apps/demos/Demos/CardView/DataValidation/jQuery/index.js | Converted POST to GET, removed JSON.stringify and contentType |
| apps/demos/Demos/CardView/DataValidation/Vue/App.vue | Converted POST to GET using URLSearchParams |
| apps/demos/Demos/CardView/DataValidation/ReactJs/App.js | Converted POST to GET using URLSearchParams |
| apps/demos/Demos/CardView/DataValidation/React/App.tsx | Converted POST to GET using URLSearchParams |
| apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts | Converted POST to GET using HttpClient params option |
Raushen
approved these changes
Jan 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherry-pick of: