Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/cp-ui5-webide-debug/cp-ui5-webide-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ onBeforeRendering: function() {
},
```

The controller code should like as follows now:
The controller code should look like this now:
![logger](./logger.png)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ handleListItemPress: function (oEvent) {
3. Open the new file `mta_app/app/webapp/view/Detail.view.xml`. In the file, replace the `<App>` tag with the following content:

```XML
<Page title="{i18n>DetailTitle}"
<Page title="Detail Page"
showNavButton="true"
navButtonPress="handleNavButtonPress" >
<VBox>
Expand All @@ -76,6 +76,7 @@ handleListItemPress: function (oEvent) {

[DONE]
[ACCORDION-END]

[ACCORDION-BEGIN [Step : ](Implement the controller logic)]

Open the file `mta_app/app/webapp/controller/Detail.controller.js`, and replace the code with the following:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Embed one view into another one with routing to prepare for later tutorials. Edi
```

```JavaScript
"id": "App"
"id": "app"
```

![Update manifest.json to use new view](5.png)
Expand Down