-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathauto.html
More file actions
30 lines (22 loc) · 773 Bytes
/
auto.html
File metadata and controls
30 lines (22 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>TextArea Autocomplete</title>
<script id="sap-ui-bootstrap" src="sap-ui-core.js" data-sap-ui-theme="sap_belize"
data-sap-ui-libs="sap.m" data-sap-ui-bindingSyntax="complex" data-sap-ui-compatVersion="edge"
data-sap-ui-preload="async" data-sap-ui-resourceroots='{
"com.demo.textarea.autocomplete": "./"
}'>
</script>
<script>
sap.ui.getCore().attachInit(function () {
new sap.ui.core.ComponentContainer({
name: "com.demo.textarea.autocomplete"
}).placeAt("content");
});
</script>
</head>
<body class="sapUiBody" id="content">
</body>
</html>