users@woodstock.java.net

Accordion Questions

From: Stephan Bardubitzki <bardu55_at_gmail.com>
Date: Mon, 7 Jan 2008 22:18:32 -0800

>Accordion component is AJAX enabled. So you must be able to do it in
>combination of javascript and component<br>
>refresh method.

I intended to do this:

function refreshAccordion(tab) {
      var accordion = document.getElementById("form1:accordion1");
      document.getElementById("form1:accordion1:" +
tab).setProps({selected: true});
      accordion.refresh();
      return false;
}

but in the Visual Web designer there are no javascript properties,
such as onMouseOver, for the accordion tab component.

Stephan