0

将焦点 onload 设置为 jQuery Handsontable 中的第一个字段的正确方法是什么?

这是示例链接http://jsfiddle.net/4kvMq/4/

$(function () {
  $(window).load(function () {
    $('#example10grid table tbody tr td:first-child').focus();
  });
});

甚至尝试手动设置焦点但没有运气!

$('#btnGo').click(function() {
    $(".dataTable table tbody tr td:first-child").focus();
});

非常感谢!

4

2 回答 2

2

谢谢你的要求。现在有一种公共方法可以做到这一点。

在按钮上使用它:

$('#btnGo').click(function(event) {
  setTimeout(function() {
      //timeout is needed because Handsontable normally deselects 
      //current cell when you click outside the table
      $("#example10grid").handsontable("selectCell", 0, 0);
  }, 10);
});

或 DOM 就绪:

$(function() {
  setTimeout(function() { 
      //timeout is needed because Handsontable normally deselects 
      //current cell when you click outside the table
      $("#example10grid").handsontable("selectCell", 0, 0);
  }, 10);
});

现场示例:http: //jsfiddle.net/warpech/4kvMq/35/

于 2012-06-15T18:47:49.000 回答
1

你不能这样做。问题在于handsontable 处理焦点事件的方式。它将一个单击处理程序绑定到hmtl元素,如果您的光标在桌子上,它会每毫秒检测一次。因此,您不能使用 aclick()focus()特定元素更改焦点。

此外,由于出于安全原因,您无法使用 JavaScript 更改光标位置(并且 jQuery 无法原生触发单击或焦点事件),因此您无法轻松更改单元格上的焦点。只能修改handsontable 本身以更改选定的表格单元格。

于 2012-06-13T07:30:53.610 回答