最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Setting focus to kendo numeric textbox - Stack Overflow

programmeradmin3浏览0评论

I am using the following code to create a kendo numeric textbox.

Html

<input type='text' name='num_wks_or_mons' id='num_wks_or_mons' tabindex='5'/>

Jquery

$("#num_wks_or_mons").width(295).kendoNumericTextBox({
            min:0,
            max:99,
            step:1,
            format: "n0"
        });

Evenif i am setting the tabindex attribute as 5 the element will not get the focus if if tabout from elemnent with tabindex = 4.When i tabout from element with tabindex = 4 the focus is going to the next element which is not a kendo numeric textbox.

I am using the following code to create a kendo numeric textbox.

Html

<input type='text' name='num_wks_or_mons' id='num_wks_or_mons' tabindex='5'/>

Jquery

$("#num_wks_or_mons").width(295).kendoNumericTextBox({
            min:0,
            max:99,
            step:1,
            format: "n0"
        });

Evenif i am setting the tabindex attribute as 5 the element will not get the focus if if tabout from elemnent with tabindex = 4.When i tabout from element with tabindex = 4 the focus is going to the next element which is not a kendo numeric textbox.

Share Improve this question asked Sep 20, 2013 at 8:14 웃웃웃웃웃웃웃웃웃웃 12k15 gold badges62 silver badges94 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 7

Set focus like this,

 $('#num_wks_or_mons').siblings('input:visible').focus();

The Kendo UI Numeric Text Box widget has it's own focus method. Get the instance of the widget and call that.

var numerictextbox = $("#num_wks_or_mons").data("kendoNumericTextBox");
numerictextbox.focus();

https://docs.telerik./kendo-ui/api/javascript/ui/numerictextbox/methods/focus

Try to this:

var $nodeNumeric = $nodeImput.kendoNumericTextBox().data("kendoNumericTextBox");
$($nodeNumeric._text).focus();

Set focus like this,

   setTimeout("$('#num_wks_or_mons').focus();", 500);
<script type="text/javascript">
    $(document).ready(function () {
      setTimeout(function() {
          $('#txtThresholdAmount').siblings('input:visible').focus();
      }, 1000);
  });
</script>
发布评论

评论列表(0)

  1. 暂无评论