弹出窗口的自动更正只有一半

时间:2013-06-28 19:13:32

标签: javascript jquery autocomplete popup

这是自动纠正无效的图片。有谁知道为什么会这样?在我们将其移动到左侧的小箭头所示的侧边栏之前,它工作正常。是不是我们已经将弹出窗口置于一切之上?有时它也直接在弹出窗口后面完全展开。我认为这就是你可能需要的一切。

编辑:现在我在弹出窗口后面而不是在前面。

Half of the Auto-correct

enter image description here

@{
  if (Request.IsAjaxRequest()) { Layout = null; }
}
@section JavaScript {
  <script src="~/Content/jstree-v.pre1.0/jquery.jstree.js" type="text/javascript"></script>
  <script src="~/Scripts/VPS.PartTree.js" type="text/javascript"></script>
  <script>
    $(document).ready(function () {
      VPS.PartTree.Initialize('@Url.Action("DocumentSelector")');
    });

  </script>
}

@using (Html.BeginForm("BillOfMaterials", "MasterData")) {
  @Html.ValidationSummary()
  @Html.AutoEditorFor(model => model.Name)
  <div>
    <a class="btn btn-info" href="#" id="expand-all" style="float: right">Expand All</a>
  </div>
  if (ViewBag.PartFound != null && ViewBag.PartFound) {
  <div id="divtree">
    <ul id="tree">
      @Html.DisplayForModel()
    </ul>
  </div>
  }
}

0 个答案:

没有答案