11

我正在使用x-editable js。我的 x-editable popover 未完全显示。

在此处输入图像描述

我认为 z-index 有问题,我在超链接上尝试过,但没有运气。

<script type="text/javascript">
  $(function () {
    $('.extraSectionTitle').editable({
        success: function (response, newValue) {
            if (response.status == 'error') {
                return response.msg;
            }
        }
    });
    $('.extraSectionDescription').editable({
        success: function (response, newValue) {
            if (response.status == 'error') {
                return response.msg;
            }
        }
    });
  });
</script>

<div class="row-fluid">
  <div class="span7">
    <div class="accordion-body collapse in">
        <div class="row-fluid" id="myDiv">
            <div class="box box-color box-bordered">
                <div class="box-title">
                     <h3><i class="icon-th-list"></i> Hi</h3>

                </div>
                <div class="box-content nopadding">
                    <table class="table table-hover table-nomargin table-bordered">
                        <thead>
                            <tr>
                                <th>Title</th>
                                <th>Description</th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <td> 
                                    <a class="editable editable-click extraSectionTitle" data-original-title="Edit Title" data-pk="1" data-type="text" href="#" data-url="#" data-placement="right" title="Edit Title">ASD ASD ASD ASD ASD </a>
                                </td>
                                <td> 
                                  <a class="editable editable-click extraSectionDescription" data-original-title="Edit Description" data-pk="${extra?.id}" data-type="text" href="#" data-url="#" data-placement="right" title="Edit Description">DSA DSA DSA DSA DSA </a>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
  </div>
  <div class="span5">
    <div class="box box-color box-bordered">
        <div class="box-title">
             <h3><i class="icon-th-list"></i> Hi</h3>

        </div>
        <div class="box-content nopadding">Hello Hi Hello Hi Hello Hi</div>
    </div>
  </div>
</div>

DEMO FIDDLE

4

2 回答 2

61

我知道这有点迟到了,但我只是在努力解决这个问题,并以不同的方式解决了它,这可能会帮助其他人。

X-editable 基于 Bootstrap 的 Popover 插件,因此添加container: 'body'到您的.editable()设置(或任何其他不在您的overflow:hidden元素中的容器)也将解决此问题。

这很可能只适用于 X-editable 的 Bootstrap 版本,但我没有检查过。

编辑:

只需添加该容器选项..

$('#username').editable({ container: 'body', type: 'text', pk: 1, url: '/post', title: 'Enter username' });

于 2014-07-22T07:48:58.657 回答
6

嗨,问题是tootltip在一张桌子里面,position:absolute所以他正在寻找他最近的父母position:relative来定位。

他找到的父级是带有 class 的 div .collapse。而这个类有属性

overflow:hidden;

您有两个使用 css 的解决方案。

在你的 CSS 中输入一个。启用 div 中的溢出视图。

div.collapse {
 overflow:visible;
}

在你的css中输入两个。删除此 div 作为相对父级。

div.collapse {
 position:static;
}

你的小提琴http://jsfiddle.net/kGQ2R/6/

于 2013-10-23T13:51:12.823 回答