Kendo UI 屏蔽文本框 - 无法更改默认提示字符

Kendo UI masked textbox - unable to change default prompt char

我正在尝试更改 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>

但是,文本框仍然有'_'作为提示符。知道为什么会这样吗?我该如何解决?

提前致谢。

data-promptChar="#"更改为data-prompt-char="#"

查看工作示例 http://jsbin.com/xivede/1/edit?html,js,output