我正尝试使用文档中的清除按钮将值重置为Kendo UI颜色选择器:
https://docs.telerik.com/kendo-ui/api/javascript/ui/colorpicker/configuration/clearbutton
我制作了一个片段:
HTML
<label for="colorPicker">Color value: [{{item.color}}]</label>
<input id="colorPicker" kendo-color-picker ng-model="item.color" k-buttons="false" k-clear-button="true" />
JS
.controller("MyCtrl", function($scope){
$scope.item = {
color: '#00ff00'
};
})
https://dojo.telerik.com/ifOCUDAb
但是您只能在第一次单击时使用清除按钮,否则清除该值无效。
我该如何解决?