angucomplete-ALT无法键入文本框(angucomplete-alt unable to

2019-09-28 02:54发布

这里简单的问题 - 但不能似乎找到答案。 我已经加入了angucomplete-ALT到我的项目 - 我相信我已经正确地添加这一切 - 这意味着,注册并具有js文件可用时,页面加载。 但由于某些原因,当我点击输入,并开始类型 - 什么也没有发生。 我无法在文本框中键入/输入。 下面是我的控制代码。 - 即时双重检查的事情是如何有线了在后端。 - 提前致谢。

与此完全相同的代码在另一个项目 - 配置不同 - 但控件的标记是一样的

<angucomplete-alt id="searchGroupsAutoComplete"
                                          placeholder="{{searchPlaceholder}}"
                                          pause="400"
                                          text-searching="{{searchingText}}"
                                          selected-object="selectedAnObjectFn"
                                          remote-url="/api/search/SearchByQueryStrings"
                                          remote-url-request-formatter="formatSearchDataFn"
                                          remote-url-response-formatter="formatReturnDataFn"
                                          remote-url-data-field="Content"
                                          title-field="Name"
                                          description-field="EntityType"
                                          image-field="ThumbnailUrl"
                                          minlength="1" />

Answer 1:

Remove maxlength="{{maxlength}}" of INPUT tag in $templateCache.put(TEMPLATE_URL,..... (angucomplete-alt.js)

所以它的工作,但我不知道为什么。



文章来源: angucomplete-alt unable to type in textbox