Skip to content

Commit

Permalink
docs: Fix numbering (#343)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirthavalliG authored Jun 28, 2022
1 parent ee8371f commit ad36531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorials/4 Request Handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ Furthermore, you can mix the direct and bundle requests in one UI5 application w
```
With this declaration, all bindings assigned to the group `C` will trigger separate direct requests. Also, the submit of the changes with `this.getView().getModel().submitChanges("C");` will lead to multiple requests. The other bindings assigned to group `A` or `B` still send bundle requests.

### Step 4.3: Pagination Requests
### Step 4.4: Pagination Requests
By default the pagination requests are preprocessed and a new url along with the necessary parameters is prepared before sending the request. However this behaviour can be customised depending on how the server handles pagination requests. For example if the next link request should be sent without any processing then the application can overwrite the following method to return the next link appropriately.
This should happen in the Component.js of the application after the model is created but before the first next link is requested.
```javascript
Expand All @@ -188,4 +188,4 @@ sap.ui.define([
}
});
});
```
```

0 comments on commit ad36531

Please sign in to comment.