3 Replies Latest reply on May 24, 2007 8:05 AM by ilya_shaikovsky

    possible bug: in rich:tab

    jinson.abraham

      Hi all,
      the onmouseover attribute of rich:tab is not working properly:

      please look at the code given below:

      this code works:

      <rich:tabPanel onmouseover="alert('hi');">

      <rich:tab label="Tab1" id="richtab1" >

      </rich:tab>

      <rich:tab label="Tab2" title="Enterprise" id="richtab2">

      </rich:tab>

      <rich:tab label="Tab3" title="New Tab" id="richtab3">

      </rich:tab>
      </rich:tabPanel>

      but when we remove the "onmouseover" attribute from rich:tabpanel and put it in rich:tab (as shown below ) it does not work.

      ---> this does not work

      <rich:tabPanel >

      <rich:tab label="Tasks" id="richtab1" onmouseover="alert('hi');">

      </rich:tab>

      <rich:tab label="Enterprise" title="Enterprise" id="richtab2">

      </rich:tab>

      <rich:tab label="New Tab" title="New Tab" id="richtab3">

      </rich:tab>
      </rich:tabPanel>

      can anybody help me with this