<%@ page language="java" contentType="text/html;charset=UTF-8"%> <%@ taglib prefix="netui" uri="http://beehive.apache.org/netui/tags-html-1.0"%> <%@ taglib prefix="netui-data" uri="http://beehive.apache.org/netui/tags-databinding-1.0"%> <%@ taglib prefix="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0"%>

The JavaScript lookupIdScope method required a separator character. Now it should default to the empty string. You see this below, in the second test, the value "one".

Form JS Output Test -- JIRA169


var p = document.getElementById("javaOut"); var val = "Document Access
"; var formTag = document.getElementById(lookupIdByTagId("form", p)); val = val + "Form Scope Id (Legacy Get): " + getScopeId(formTag) + "
"; val = val + "Form Scope Id (non-Legacy Lookup): " + lookupIdScope(formTag) + "
"; val = val + "Form Name: " + getNetuiTagName("form", formTag) + "
"; val = val + "Form ID: " + lookupIdByTagId("form", formTag) + "
"; val = val + "Form Name By Lookup: " + lookupNameByTagId("form", formTag) + "

"; val = val + "Lookup by lookup*(\"tagId\") signature:
"; val = val + "Form ID: " + lookupIdByTagId("form") + "
"; val = val + "Form Name: " + getNetuiTagName("form",p) + "
"; val = val + "Form Name By Lookup: " + lookupNameByTagId("form",p) + "
"; p.innerHTML = val;