我正在尝试更改Kendo MaskedTextBox的默认promptChar。我尝试使用代码:
<div class="box-col" style="width: 300px">
<h4>Enter a number</h4>
<input data-role="maskedtextbox"
data-mask="(999) 000-0000"
data-promptChar="#"
data-bind="visible: isVisible,
enabled: isEnabled,
value: phoneNumber,
events: { change: onChange }"
style="width: 200px">
</div>
但是,文本框仍然以“_”作为提示字符。知道为什么会这样吗?我该如何解决?
提前致谢。
答案 0 :(得分:1)
将data-promptChar="#"
更改为data-prompt-char="#"