NO GRAMMER AVAILABLE FOR NAMESPACE
590463Jan 19 2008 — edited Jan 22 2008Hello, I am using a third party tool to implement menu tabs using java script and html.
As a part of this implementation, first it requires to define a namespace for this tool i.e. www.nitobi.com. However, in the <html> section, when i use the tags from this namespace, it is displaying a thin orange underline with following message
"no grammer available for namespace "http:\\www.nitobi.com" contents of tabstrip tag can not be validated"
And this is only happening in Jdeveloper. If i cut and paste this html code in a simple html file and run it on browser, it works just fine.
I think because of this error it is also not recognizing any classes from nitobi.
This is part of a JSPX page in jdeveloper.
Below is the code snippet. Any idea how can I resolve this issue?
Many thanks in advance for reading this post and helping.
code snippet
<jsp:root xmlns:ntb="http://www.nitobi.com">
<html xmlns:ntb="http://www.nitobi.com">
<head>
<link type="text/css" rel="stylesheet" href="./tabstrip_style/nitobi/nitobi.tabstrip.css"> </link>
</head>
<body onload="nitobi.loadComponent('SimpleTabstrip');">
<script type="text/javascript" src="./nitobitoolkit.js"></script>
<script type="text/javascript" src="./nitobitabstrip.js"></script>
<ntb:tabstrip id="SimpleTabstrip" width="800px" height="600px">
<ntb:tabs height="" align="center" overlap="15">
<ntb:tab width="190px" tooltip="Welcome." label="IFrame Tab" source="http://www.nitobi.com" containertype="iframe"></ntb:tab>
<ntb:tab width="190px" tooltip="Welcome." label="DOM Tab" source="tab2"></ntb:tab>
<ntb:tab width="190px" tooltip="Welcome." label="Ajax Tab" source="tab3.html" loadondemandenabled="true"></ntb:tab>
</ntb:tabs>
</ntb:tabstrip>
</body>
</html>
...
..