jquery – Kendo自动完成如何禁用默认的CSS样式

我使用Twitter Bootstrap设置了表单输入.

我需要添加Kendo自动完成输入,但问题是每个初始化的自动完成输入都会覆盖我的CSS样式以进行输入(参见下图).左输入使用Kendo自动完成设置样式,右侧输入由Bootstrap设置.

有可能在表单中禁用Kendo输入样式的输入吗?

谢谢你的帮助.

最佳答案 我也遇到了这个问题,找到下面的解决方案.

<style type="text/css">
/*The below is to remove the css for the autocomplete control - Job Title */
        .autocomplete {
            display: inline-block !important;
            border: 0 !important;
            background: none !important;
            box-shadow: none !important;
        }
</style>

你的控件初始化

$("#title").kendoAutoComplete({
                    dataSource: data.Sample,
                    dataTextField: "title_Cd",
                    filter: "startswith"
                }) .parent()
                    .addClass('autocomplete');

而已..

谢谢
开发

点赞