如何禁用RadNumeric TextBox,但使用工作旋钮?

时间:2012-08-08 15:30:33

标签: asp.net textbox telerik

我有一个Telerik RadNumericTextBox,它有旋钮来递增/递减值。我想阻止用户输入他们自己的输入并仅使用旋转按钮。当我尝试禁用textBox或使其成为只读时,按钮也被禁用。是否可以保持按钮功能并使textBox仅用于显示?

我在此控件上有某些属性,因此继续使用Telerk RadNumericTextBox比使用其他控件更方便。

1 个答案:

答案 0 :(得分:1)

$telerik.$($find("Numeric1").get_element())
.focusin(function(){ this.readOnly = true; })
.focusout(function(){ this.readOnly = false; });

在此页面http://demos.telerik.com/aspnet-ajax/input/examples/radnumerictextbox/firstlook/defaultcs.aspx

上工作