10-19-2009 07:31 AM
// store and path provided as args
if (args.s == null || args.s.length == 0) {
status.code = 400;
status.message = "Store is a required argument.";
status.redirect = true;
}
var store = avm.lookupStore(args.s);
if (store == null || store == undefined) {
status.code = 404;
status.message = "Store " + args.s + " not found.";
status.redirect = true;
}
[b]var avmResults = store.luceneSearch("@sim\:description:purple");
model.resultset = avmResults;
[/b]
10-19-2009 11:53 PM
10-20-2009 05:24 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.