jqGrid - 如何聚焦单元格内联编辑

时间:2014-12-18 14:36:17

标签: jquery jqgrid

我找到了很多解决方案,但都不起作用。我有最新版本4.7.0。 例如:focus cell inline editing

我的解决方案是[代码在coffeescript ]:

ondblClickRow: (rowId, iRow, iCol, e) ->
        if rowId and rowId isnt lastSelectedRowId
            table.jqGrid 'editRow', rowId, true
            $("input, select, textarea", e.target).focus()
            lastSelectedRowId = rowId

在内联编辑期间,jqGrid是不是已经发现了如何选择单元格?

Oleg的注意事项:请再次查看我的上一条评论jqgrid (converting datatypes)

1 个答案:

答案 0 :(得分:0)

我找到了最佳解决方案,但仅限于4.7.0。版。

coffeescript代码,但解决方案是看。

ondblClickRow: (rowId, iRow, iCol, e) ->
    if rowId and rowId isnt lastSelectedRowId
        table.jqGrid 'editRow', rowId, {keys:true, focusField: iCol}
        lastSelectedRowId = rowId