2 Replies Latest reply: May 19, 2011 8:21 PM by kodemonki RSS

    CFTooltip AutoDismissDelay Not Working

    kodemonki Community Member

      Here is my code:

       

      <td width="120">
                                        <p class="left_align">$</p> <p class="right_align"> <cftooltip autodismissdelay="30000" tooltip="When this number is adjusted it calculates the Wholesale Gross <br>
                                          using the Total Wholesale Gross Percent, then recalculates the sum for <br>
                                          Total Sales and Total Gross, etc."><cfinput
                                          class="numeric_input"
                                          id="wholesale_s"
                                          size="11"
                                          type="text"
                                          value="#grab_financial_data.value[99]#"
                                          style="background-color:##E6E6E6;"
                                          onFocus="this.style.background='##DBE8F9'"
                                          onBlur="this.style.background='##E6E6E6'"
                                          onKeyUp="s_wholesale(1);calculateDifferences(d_val_array)"
                                          name="o_wholesale_s" /></cftooltip></p><div style="clear:both;"></div></td>

       

      Here is the generated Yahoo script:

          YAHOO.util.Event.addListener("cf_tooltip_1305307919721","mouseover",ColdFusion.Tooltip.ge tToolTip,{"_cf_query":"","context":"cf_tooltip_1305307919721","hidedelay":"250","showdelay ":"200","autodismissdelay":"30000","preventoverlap":"true","text":'When this number is adjusted it calculates the Wholesale Gross <br>                                     using the Total Wholesale Gross Percent, then recalculates the sum for <br>                                     Total Sales and Total Gross, etc.'});

       

       

       

      It obviously sees that it is supposed to be 30000ms, not 5000ms, but it only stays open for 5000ms.  I thought maybe it was because it was wrapped in JQuery stuff, but I also put it in just a plain CFM page and the same problem happened.  How can I fix this?