我使用Twitter Bootstrap设置了表单输入。
我需要添加Kendo自动完成输入,但问题是每个初始化的自动完成输入都会覆盖我的CSS样式以进行输入(参见下图)。左输入使用Kendo自动完成设置样式,右侧输入由Bootstrap设置。
是否有可能在表单中禁用输入的Kendo输入样式?
感谢您的帮助。
答案 0 :(得分:2)
我也遇到了这个问题,找到下面的解决方案。
05 May 13:19:52 - info: compiling
05 May 13:19:54 - error: Resolving deps of web\static\js\app.js failed. Could not load module 'my-app.vue' from 'c:\Users\sadmin\Documents\Elixir\vuechat\web\static\js'. Possible solution: add 'my-app.vue' to package.json and `npm install`.
您的控件初始化
<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>
多数民众赞成......
由于 开发