Starts a drop down tab
Parameters
Usage:
[{StartDropTab title="My Title" id="myTab"}]
Some content\\
to be hidden\\
in here
[{EndDropTab}]
My Title
Some content
to be hidden
in here
|
renderer.sjsvar title = extension.getAttributeValueByName("title");
var id = extension.getAttributeValueByName("id");
if(title!=null && id!=null)
{
title = new String(title);
id = new String(title);
data = " "+title+"";
data += "";
return data;
}
else
{
return "Invalid Menu. Missing title, id or options attribute.";
}
by Anon on 21/04/2008 at 10:08 PM |
|
| |
| |
| | |
 |