1
|
<%@ page contentType="text/html; charset=UTF-8"%>
|
2
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
3
|
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
|
4
|
|
5
|
<s:url var="jsonList" value="/Recommender.action"/>
|
6
|
<head>
|
7
|
<sx:head parseContent="true"/>
|
8
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/personalization.js"></script>
|
9
|
</head>
|
10
|
|
11
|
<body>
|
12
|
<sx:autocompleter name="keyword"
|
13
|
href="%{#jsonList}"
|
14
|
loadOnTextChange="true"
|
15
|
autoComplete="true"
|
16
|
preload="false"
|
17
|
id = "keyword"
|
18
|
cssStyle="width: 50%;" />
|
19
|
|
20
|
</body>
|