How can set z-index in Tooltip?
If I customize the content in the menubutton by class 'menu-content' and tooltip a "<a>test</a>" in the content, '<a>test</a>''s tooltip can't been seen because it's zindex less than the menubutton zindex.
Now I deal it as follows:
onShow : function() {
$(this).tooltip('tip').css("z-index", 200000);
}
EasyUI