单击鼠标时的jqxgrid行选择也不起作用

时间:2013-06-05 04:53:00

标签: php jqxgrid

我正在使用jqwidjets jqxgrif作为我的一个项目。 在网格中我想要选择一行并在另一页(href链接)中编辑它。网格外的EDIT链接。

目前我正在使用以下代码进行行选择。但它仅用于键盘导航而不用于鼠标select.how我是否启用鼠标选择并将行索引传递给外部编辑链接onclick事件。

    $("#jqxgrid").jqxGrid(
        {   width : '100%',
            source: dataadapter,
            selectionmode: 'singlerow',
            altrows: true,
            theme: theme,
            filterable: true,
            autoheight: true,
            pageable: true,
            columnsresize: true,
            //virtualmode: true,
            pagesizeoptions: ['10', '15', '20'],
            pagesize:20,
            sortable: true,

            ready: function () {
                           //$("#jqxgrid").jqxGrid('sortby', 'ObjectId', 'asc');
                            //$("#jqxgrid").jqxGrid('selectionmode', 'singlerow');
                           $("#jqxgrid").jqxGrid('selectrow', 0);
                       },


            rendergridrows: function () {
                return dataadapter.records;
            },
            columns: [

2 个答案:

答案 0 :(得分:0)

我使用以下内容获取点击和键盘,希望这会有所帮助。

$('#jqxgrid').bind('rowselect', function(event)  {
  var current_index = event.args.rowindex;
  var datarow = $('#jqxgrid').jqxGrid('getrowdata', current_index);

  // Use datarow for display of data in div outside of grid
});

答案 1 :(得分:0)

$("#jqxgrid").bind('rowselect', function (event) {                
});