使用 Java 展开和折叠 Ajax 工具包手风琴
Expand and Collapse Ajax ToolKit Accordion using Java
我需要使用 Java 展开和折叠 Ajax ToolKit 手风琴。
为了折叠我正在使用这个代码:
function collapse() {
$find('HeaderPane_AccordionExtender').get_Pane(0).content.style.display = "none";
}
但是有一个问题,我已经为手风琴面板设置了淡入淡出效果,但是在使用时不会影响java。如何 expand/collapse 手风琴及其定义的属性?
试试这个:
$find('HeaderPane_AccordionExtender')._changeSelectedIndex(index, true);
其中 index
是您需要打开的从零开始的窗格索引。
我需要使用 Java 展开和折叠 Ajax ToolKit 手风琴。
为了折叠我正在使用这个代码:
function collapse() {
$find('HeaderPane_AccordionExtender').get_Pane(0).content.style.display = "none";
}
但是有一个问题,我已经为手风琴面板设置了淡入淡出效果,但是在使用时不会影响java。如何 expand/collapse 手风琴及其定义的属性?
试试这个:
$find('HeaderPane_AccordionExtender')._changeSelectedIndex(index, true);
其中 index
是您需要打开的从零开始的窗格索引。