2010-03-19 4 views
0

Je possède une forme modale jqueryui. et im en utilisant jquery cluetip outil tip plugin mais la pointe de l'outil ne fonctionne pas de manière correcte sur la forme de fenêtre modale .. c'est la capture d'écran ...Astuce dans la fenêtre modale

Star montre l'endroit où la pointe de l'outil doit être là et les flèches sont montrant l'endroit où la pointe de l'outil est showin .. tout organisme peut me dire comment comprendre cela .. Screen Shot http://img15.imageshack.us/img15/2808/78241472.png

Edit: quelqu'un peut-il me dire comment augmenter l'indice z de la pointe de l'outil de pointe de la moindre idée ...

Répondre

0

Ici, je l'ai eu ... thnsk amis

$.fn.cluetip.defaults = { // set up default options 
width:   275,  // The width of the clueTip 
height:   'auto', // The height of the clueTip 
cluezIndex:  1970,  // Sets the z-index style property of the clueTip 
positionBy:  'auto', // Sets the type of positioning: 'auto', 'mouse','bottomTop', 'fixed' 
topOffset:  15,  // Number of px to offset clueTip from top of invoking element 
leftOffset:  15, 
0

Le plugin cluetip a un cluetipClass vous pouvez fournir. Utilisez-le pour définir une classe qui a l'index z souhaité.

$('selector').cluetip({ splitTitle: '|', arrows: true, dropShadow: true, 
    cluetipClass: 'classWithHighZIndex', showTitle: false, 
    onActivate: activateFunction}); 
Questions connexes