Skip to content

Commit

Permalink
Cannot find concept by id in concept auto complete - TRUNK-3893(cherr…
Browse files Browse the repository at this point in the history
…y picked from commit ea4e844)
  • Loading branch information
dkayiwa committed Jul 1, 2013
1 parent 89cef52 commit 46d1bfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webapp/src/main/webapp/WEB-INF/tags/conceptField.tag
Expand Up @@ -30,10 +30,10 @@
$j(document).ready( function() {
var includeC = "${includeClasses}".split(",");
var excludeC = "${excludeClasses}".split(",");
var includeD = "${includeDatatypes}".split(",");
var excludeD = "${excludeDatatypes}".split(",");
var includeC = <c:choose> <c:when test="${not empty includeClasses}"> "${includeClasses}".split(",") </c:when> <c:otherwise> null </c:otherwise> </c:choose>;
var excludeC = <c:choose> <c:when test="${not empty excludeClasses}"> "${excludeClasses}".split(",") </c:when> <c:otherwise> null </c:otherwise> </c:choose>;
var includeD = <c:choose> <c:when test="${not empty includeDatatypes}"> "${includeDatatypes}".split(",") </c:when> <c:otherwise> null </c:otherwise> </c:choose>;
var excludeD = <c:choose> <c:when test="${not empty excludeDatatypes}"> "${excludeDatatypes}".split(",") </c:when> <c:otherwise> null </c:otherwise> </c:choose>;
// the typical callback
var callback = new CreateCallback({includeClasses:includeC, excludeClasses:excludeC, includeDatatypes:includeD, excludeDatatypes:excludeD}).conceptCallback();
Expand Down

0 comments on commit 46d1bfb

Please sign in to comment.