I am using an ApplicationLayout control (8.5.3 UP1) and have added Basic Nodes to be displayed as tabs. I want the tabs to run JavaScript to set a sessionScope variable when clicked. I have a sessionScope.put in the onClick but the variable is not set properly when the tab is clicked.
Worse, when I look at the source of the page, this is what I see for the tabs:
<ul id="view:_id1:_id2:applicationLayout1_tb" class="lotusTabs lotusTabsIndented">
<li class="lotusTabs li">
<div>
<a style="text-decoration:none">Ft. Pierce</a>
</div>
</li>
<li class="lotusTabs li">
<div>
<a href="javascript:;" onclick="javascript:Ft. Pierce" style="text-decoration:none">Naperville</a>
</div>
</li>
<li class="lotusTabs li">
<div>
<a href="javascript:;" onclick="javascript:Naperville" style="text-decoration:none">Chicago</a>
</div>
</li>
</ul>
Notice how the first li does not have an href or onclick code and the other two li entries have what appears to be incorrect href and onclick parameters (and that the onclick does not match the label).
From what I can see in the control, this should work. It should execute the onClick code if there is nothing in the href property for the node. I'd appreciate any thoughts or ideas on getting this working. Thanks.