Hi, I'm creating a Grid in React Typescript and I'm looking for the documentation about the DataManager and about the WebApiAdaptor for React.
I found the documenation about the DataManager for JavaScript, but it does not correspond perfectly to the React implementation of the React DataManager.
For the WebApiAdaptor I could not find any documenation.
Where can I find them?
Basically, I have this piece of code for a Grid Component and I need more options (or the documentation to look for further possibilities):
const data: DataManager = new DataManager({
adaptor: new WebApiAdaptor(),
url: "https://localhost:44340/api/tasks",
crossDomain: true
});