问题标签 [kendo-combobox]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jquery - Kendo UI,可搜索的组合框
我正在使用免费的 Kendo UI Core Framework。我正在寻找一个可搜索的组合框,它在插入例如 2 个字母后触发 sql。在我的列表框后面有超过 10000 个项目,现在加载或刷新页面需要太多时间。
是否可以仅通过像自动完成小部件那样的用户输入来触发 sql 查询?
我的代码是:
javascript - 剑道组合框完成过滤器后如何触发事件
我的组合框完成过滤器后,我需要触发一个事件
我已经扩展了小部件,并试图在通话结束时放弃 .done。
我需要知道何时返回一个值,以便一旦我知道输入与值服务器端匹配,我就可以在我的页面上做一些其他的事情。
任何人都可以想出一种方法来实现这一目标吗?:)
一旦数据源发生变化,有没有办法触发事件?
jquery - kendo ComboBox 查找并选择值(如果存在)
我有一个剑道组合框,还有一个带值的变量。如何在组合框中搜索值,如果存在,选择它?全部使用 javascript/Jquery
http://jsfiddle.net/mspasiuk/8HnnZ/
我找不到如何设置具有和 Id 的值。所以我的问题是如何将 selectedIndex 或 Value 设置为我拥有的,如果不存在,将 selectedIndex 设置为 -1
kendo-ui - kendo ui组合框不发送请求
我正在尝试让 Kendo UI 组合框在我键入时从服务器加载数据。#Client 是一个输入框。我需要保存文本框中项目的 ID,这就是我使用组合框而不是自动完成的原因。当我在组合框中键入时,它总是在输入框中的数据后面发送 1 个按键的字符串。我认为发生这种情况是因为“阴影”Kendo UI 输入框在调用服务器之前不会更新原始输入框。
此外,如果我不使用 parameterMap 代码,则在输入框中键入的任何内容都不会发送到服务器。而且,我希望过滤条件也会被发送。我查看了 Telriks 站点上的示例,它们显示使用请求参数中的过滤器来查看数据,但是当我使用 fiddler 或任何其他跟踪工具时,我可以看到请求中没有发送任何内容处理来自 Kendo UI 服务器调用的数据。这应该是相对容易的事情,但我很难过。
编辑:我将其更改为 kendoAutoComplete 并且一切正常,因为我期望 AutoComplete 可以正常工作。除了返回 dataValueField 之外,它与 ComboBox 的实现应该没有什么不同。
javascript - How do you prevent a Kendo UI combobox from refilling on Data Read?
I am using Kendo UI to implement a couple of comboboxes on my page. The second combobox relies on the value of the first to populate, but I do not want to use the "Cascade" option, since the second combobox should not ever be disabled.
My issue is the following:
On change of combobox A, combobox B should populate with appropriate values in its dropdown, but the box itself should be clear. I clear the text and value of Combobox B, but when I run a datasource Read or anything, the combobox is refilled with old text.
Subentity is Combobox B:
I have tried several options, and moving where the values are cleared around, and can't seem to get it to work.
Any ideas? Thank you!
EDIT: Combobox B (subentity) is initialized as follows:
angularjs - 如何从 KendoComboBox 获取所有列表项
我正在尝试从 KendoComboBox 中获取所有列表项。
该列表是使用自定义 angularjs 指令构建的:
html
/li>sgComboBoxField 指令:
/li>
我的问题是,一旦将组合框加载到 DOM 上,如何从组合框中获取所有列表项?
javascript - 如何在 Kendo UI 中设置组合框的自动宽度?
我想根据绑定到组合框的最长文本自动设置组合框宽度,所以我尝试如下,但我只能看到下拉菜单的自动大小(宽度)(单击时下拉combo) 的组合框,长度仍然大于预期,总长度应该减少到只能容纳 3 个字符,我在这里遗漏了什么吗?
kendo-ui - 在 Kendo UI kendoComboBox 对象中设置 dataTextField 值
我有一个类似这样的 Kendo UI 组合框对象:
我可以安排模板,但我不能 dataTextField 值取决于该模板。可以将其设为“userId”等。但似乎无法将所选值设置为#:userFirstName# #:userLastName#。(dataTextFieldTemplate 不起作用。)
你能帮我解决这个问题吗?
kendo-ui - 剑道组合框不同的CSS替代项目
我有一个 mvc kendo CombBox 声明为
有没有办法让替代项目有不同的css。
我在剑道文档中找不到任何东西。我也尝试过使用 JQuery,但失败了。谁能告诉我是否有解决方案。
谢谢。
javascript - Kendo ComboBox inside a bootstrap dropdown
I am trying to use a kendo combo-box inside a bootstrap dropdown.
I have created a sample fiddle..
http://jsfiddle.net/w32LvL18/3/
The problem is, when I try to type something in the combo-box, I could not browse to the other options using down arrow key. As soon as I try to use down arrow key, it jumps to dropdowns first option instead of combo-box options.. How can I change this...