Kendo UI Combobox - Dropdown立刻在firefox中关闭

时间:2016-01-14 08:59:30

标签: javascript html kendo-ui

这是我的代码。它在chrome上工作正常,但是在firefox中点击下拉列表它会出现一秒然后消失。我错在哪里?

<div class="form-group">
  <label for="deliveryaddress">Adress 
    <span id="limitMsg" style="font-size:12px !important; font-weight: bold !important; color:red !important;"></span>
  </label>
  @(Html.Kendo().ComboBox()
  .Name("deliveryadress")
  .DataTextField("Text")
  .DataValueField("Value")
  .Filter(FilterType.Contains)
  .MinLength(3)
  .Placeholder("Börja skriva gatuadress för att söka...")
  .Suggest(true)
  .AutoBind(false)
  .HtmlAttributes(new { style = "width:100%;", @class = "deliveryformclass" })
  .DataSource(source =>
  {
  source.Read(read =>
  {
  read.Action("SearchAdress", "Home");
  })
  .ServerFiltering(true);
  })
  )
</div>

1 个答案:

答案 0 :(得分:0)

我有一个类似的问题但是在chrome中,我注意到当你的组合框在底部没有足够的空间让下拉打开时会发生这种情况。尝试在底部添加一个带有空div的空格,看看它是否有效。它对我有用。

希望这会有所帮助:)