Skip to content

Commit 68bbf88

Browse files
authored
Update index.html
1 parent 02707c7 commit 68bbf88

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

WebContent/index.html

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,25 @@
66
<link rel="stylesheet" href="style.css">
77
<script src="resources/sap-ui-core.js"
88
id="sap-ui-bootstrap"
9-
data-sap-ui-libs="sap.m,sap.ui.layout"
9+
data-sap-ui-libs="sap.m,sap.ui.layout,sap.ui.table"
1010
data-sap-ui-theme="sap_bluecrystal">
1111
</script>
1212
<!-- only load the mobile lib "sap.m" and the "sap_bluecrystal" theme -->
1313

1414
<script>
1515
sap.ui.localResources("onclick");
16-
var app = new sap.m.App({initialPage:"idonclick1"});
17-
var page1 = sap.ui.view({id:"idonclick1", viewName:"onclick.onclick", type:sap.ui.core.mvc.ViewType.JS});
18-
var page2 = sap.ui.view({id:"idadmin", viewName:"onclick.admin", type:sap.ui.core.mvc.ViewType.JS});
19-
var page3= sap.ui.view({id:"idreader", viewName:"onclick.reader", type:sap.ui.core.mvc.ViewType.JS});
16+
var app = new sap.m.App({initialPage:"identry"});
17+
var page1= sap.ui.view({id:"identry", viewName:"onclick.entry", type:sap.ui.core.mvc.ViewType.JS});
18+
var page2 = sap.ui.view({id:"idonclick1", viewName:"onclick.onclick", type:sap.ui.core.mvc.ViewType.JS});
19+
var page3 = sap.ui.view({id:"idadmin", viewName:"onclick.admin", type:sap.ui.core.mvc.ViewType.JS});
20+
var page4= sap.ui.view({id:"idreader", viewName:"onclick.reader", type:sap.ui.core.mvc.ViewType.JS});
21+
var page5= sap.ui.view({id:"idreset", viewName:"onclick.reset", type:sap.ui.core.mvc.ViewType.JS});
22+
2023
app.addPage(page1);
2124
app.addPage(page2);
2225
app.addPage(page3);
26+
app.addPage(page4);
27+
app.addPage(page5);
2328
app.placeAt("content");
2429
</script>
2530

0 commit comments

Comments
 (0)