05-13-2008 01:53 AM
05-13-2008 03:54 AM
nodes = search.luceneSearch("@cm\\:title:\""+args['query']+"\" OR @cm\\:description:\""+args['query']+"\"");
Cheers, 05-13-2008 06:22 AM
05-13-2008 06:47 AM
nodes = search.luceneSearch("@cm\\:title:\""+args['query']+"*\" OR @cm\\:description:\""+args['query']+"*\"");
did you call the webScript like this (will fail):/alfresco/service/opsoro/search?query={query}&start={start?}&limit={limit?}&l={language?}
or like this (should work):/alfresco/service/opsoro/search?query=Tutorial&start=0&limit=10
I want to clarify that you have to call the webScript with valid params and not with the url placeholders! 05-13-2008 07:37 AM
05-13-2008 08:03 AM
<html>
<body>
<table>
<p>total count: ${total}</p>
<th>
<td>Name</td>
<td>Title</td>
<td>Description</td>
</th>
<#list nodes as document>
<tr>
<td>${document.name}</td>
<td>${document.properties.title}</td>
<td>${document.properties.description}</td>
</tr>
</#list>
</table>
</body>
</html>
12-24-2010 03:50 PM
09-16-2013 07:19 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.