selectedPaths may be null (and ? does not handle that).
authorJan Lahoda <jlahoda@netbeans.org>
Wed, 15 Aug 2012 21:28:38 +0200
changeset 8502cc1f5991f13
parent 849 41166974cf74
child 851 6e261fe869d7
selectedPaths may be null (and ? does not handle that).
remoting/server/web/web.ui/src/org/netbeans/modules/jackpot30/backend/ui/ui-findType.html
     1.1 --- a/remoting/server/web/web.ui/src/org/netbeans/modules/jackpot30/backend/ui/ui-findType.html	Wed Aug 15 20:57:46 2012 +0200
     1.2 +++ b/remoting/server/web/web.ui/src/org/netbeans/modules/jackpot30/backend/ui/ui-findType.html	Wed Aug 15 21:28:38 2012 +0200
     1.3 @@ -40,7 +40,7 @@
     1.4  <form method="get">
     1.5  <label>Projects:</label>
     1.6  <#list paths as path>
     1.7 -    <input type="checkbox" name="path" value="${path.segment}" <#if selectedPath?seq_contains(path.segment)> checked="yes"</#if>>${path.displayName}</input>
     1.8 +    <input type="checkbox" name="path" value="${path.segment}" <#if selectedPath?? && selectedPath?seq_contains(path.segment)> checked="yes"</#if>>${path.displayName}</input>
     1.9  </#list>
    1.10  <br>
    1.11  <label for="prefix">Symbol Prefix:</label><input type="text" name="prefix"<#if prefix??>value="${prefix}"</#if>/><br>