Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want something like the Facebook actions tooltip, that you can see in Facebook when you want to delete any post from feeds. It gives you the options in the tooltip. So for this, I am working with the Tipsy widget of Yii.

I have implemented and it's normally working fine, but if I want to apply some options like DelayIn and DelayOut or Trigger mannual, it never has any effect...

An example of that I did:

<?php
    $this->widget('application.extensions.tipsy.Tipsy', array(
        'trigger'  => 'manual',
        'fade'     => true,
        'delayIn'  => '5000',
        'delayOut' => '1000',
        'title'    => 'Here to test',
        'items'    => array(
            array(
                'id' => '#element_id',
                'gravity' => 'sw' ,
                'fallback' => 'Put <i>custom</i> <strong>tooltip </strong> here.' ,
                'html' => true,
            ),
        ),
    ));
?>

<div id="elemets">
    <a original-title="testng title" rel="tipsy">This is Cool1</a>
    <a href='#' onclick='$("#elemets a[rel=tipsy]").tipsy("show"); return false;'>Show</a>
    <br />
    <a href='#' onclick='$("#elemets a[rel=tipsy]").tipsy("hide"); return false;'>Hide</a>
</div>

How do I fix this problem?

share|improve this question

closed as not a real question by Robert Harvey Apr 6 '12 at 17:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I got another tooltip library for Yii, Yii-Bootstrap. That library gives me more options as well. See also the author's site for Yii-Bootstrap.

Maybe this will helpful for you and give you more things...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.