x-editable popover not shown completely

后端 未结 2 1095
你的背包
你的背包 2021-02-14 01:35

I am using x-editable js. My x-editable popover is not shown completely.

\"enter

2条回答
  •  难免孤独
    2021-02-14 02:24

    Hi the problem is that the tootltip is inside a table and with position:absolute so he was searching for his closest parent with position:relative to be positioned.

    The parent that he finds is the div with class .collapse. And this class has the property

    overflow:hidden;
    

    You have two solutions with css.

    One type this in your css. Enables the view of the overflow in the div.

    div.collapse {
     overflow:visible;
    }
    

    Two type this in your css. Remove this div as the relative parent.

    div.collapse {
     position:static;
    }
    

    Your Fiddle http://jsfiddle.net/kGQ2R/6/

提交回复
热议问题