Skip to content

Commit 1d23072

Browse files
Demos | DataGrid - BatchUpdateRequest: Support BackEnd / EndPoint Anti Forgery (all frameworks) (#32057)
Co-authored-by: Tom <[email protected]> # Conflicts: # apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts # apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/App.vue # apps/demos/Demos/DataGrid/CollaborativeEditing/jQuery/index.js # apps/demos/utils/visual-tests/matrix-test-helper.ts
1 parent d1c5c81 commit 1d23072

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

apps/demos/Demos/DataGrid/BatchUpdateRequest/jQuery/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
$(() => {
2-
const URL = 'https://js.devexpress.com/Demos/NetCore/api/DataGridWebApi';
2+
const BASE_PATH = 'https://js.devexpress.com/Demos/NetCore';
3+
const URL = `${BASE_PATH}/api/DataGridBatchUpdateWebApi`;
34

45
$('#gridContainer').dxDataGrid({
56
dataSource: DevExpress.data.AspNet.createStore({

apps/demos/testing/common.test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ const getTestSpecificSkipRules = (testName) => {
6464

6565
const SKIPPED_TESTS = {
6666
jQuery: {
67+
DataGrid: [
68+
{ demo: 'BatchUpdateRequest' }
69+
],
6770
Charts: [
6871
{ demo: 'ServerSideDataProcessing', themes: [THEME.material] },
6972
],
@@ -80,6 +83,7 @@ const SKIPPED_TESTS = {
8083
},
8184
Angular: {
8285
DataGrid: [
86+
{ demo: 'BatchUpdateRequest' },
8387
{ demo: 'EditStateManagement', themes: [THEME.generic] },
8488
{ demo: 'MultipleRecordSelectionModes', themes: [THEME.fluent] },
8589
{ demo: 'ToolbarCustomization', themes: [THEME.fluent, THEME.material] },
@@ -167,6 +171,7 @@ const SKIPPED_TESTS = {
167171
{ demo: 'DoughnutWithCustomLabelInCenter', themes: [THEME.material] },
168172
],
169173
DataGrid: [
174+
{ demo: 'BatchUpdateRequest' },
170175
{ demo: 'SignalRService', themes: [THEME.material, THEME.fluent] },
171176
{ demo: 'EditStateManagement', themes: [THEME.material] },
172177
{ demo: 'MultipleRecordSelectionModes', themes: [THEME.fluent] },
@@ -246,6 +251,7 @@ const SKIPPED_TESTS = {
246251
{ demo: 'TopOrBottomPosition', themes: [THEME.material] },
247252
],
248253
DataGrid: [
254+
{ demo: 'BatchUpdateRequest' },
249255
{ demo: 'SignalRService', themes: [THEME.fluent, THEME.material] },
250256
{ demo: 'EditStateManagement', themes: [THEME.material] },
251257
{ demo: 'ToolbarCustomization', themes: [THEME.fluent, THEME.material] },

0 commit comments

Comments
 (0)