访问 TitleBar 选项卡上的 Selected 属性
我正在使用应用程序布局控件,并在标题栏中有选项卡。如果选择了选项卡,我想更改选项卡的样式。我目前正在通过将选项卡的值与单击选项卡时设置的 sessionScope 变量进行比较来完成此操作。
我看到了一些关于使用我用于选项卡的基本节点的 Selected 属性的内容(尽管我现在找不到)。我如何在 SSJS 中访问它,以便我可以做这样的事情?
if(thisnode.selected) {
return "lotusTabs liActive";
} else {
return "lotusTabs li";
}
谢谢。
I am using the Application Layout control and have tabs in the TitleBar. I want to change the style of the tab if it is selected. I am currently doing it by comparing the value of the tab to a sessionScope variable I am setting when the tab is clicked.
I saw something (though I can't find it now) about using the Selected property of the Basic Node I am using for the tab. How would I access that in SSJS so that I can do something like this?
if(thisnode.selected) {
return "lotusTabs liActive";
} else {
return "lotusTabs li";
}
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以通过编程方式访问选项卡:
You can also access the tabs programmatically:
以下 CSS 规则将针对选定的标题选项卡:
The following CSS rule will target the selected title tab: