File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Binding MS SQL database using CustomAdaptor/Grid_MSSQL/Pages Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 64
64
let grid = document .getElementById (" Grid" ).ej2_instances [0 ];
65
65
if (grid) {
66
66
let dataManager = new ejs.data.DataManager ({
67
- url: " https://localhost:7018 /api/Grid" , // Corrected URL
68
- insertUrl: ' https://localhost:7018 /api/Grid/Insert' ,
69
- updateUrl: ' https://localhost:7018 /api/Grid/Update' ,
70
- removeUrl: ' https://localhost:7018 /api/Grid/Remove' ,
71
- // Enable batch URL when batch editing is enabled.
72
- // batchUrl: 'https://localhost:7018 /api/Grid/BatchUpdate',
67
+ url: " https://localhost:xxxx /api/Grid" , // Corrected URL
68
+ insertUrl: ' https://localhost:xxxx /api/Grid/Insert' ,
69
+ updateUrl: ' https://localhost:xxxx /api/Grid/Update' ,
70
+ removeUrl: ' https://localhost:xxxx /api/Grid/Remove' ,
71
+ // Enable batch URL when batch editing is enabled.
72
+ // batchUrl: 'https://localhost:xxxx /api/Grid/BatchUpdate',
73
73
adaptor: new CustomAdaptor (),
74
74
});
75
75
grid .dataSource = dataManager;
You can’t perform that action at this time.
0 commit comments