jQWidgets Forums

jQuery UI Widgets Forums Grid Row select on mouse click not working

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 11 years, 10 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author

  • madhu
    Member

    In grid i want select a row and edit it in another page(href link).the EDIT link in outside the grid.

    currently im using following code to row select.but its only working for keyboard navigation not for mouse select.how do i enable mouse select and pass row index to outside edit link onclick event.

    $(“#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: [

    …….continue


    Peter Stoev
    Keymaster

    Hi,

    I cannot reproduce such issue with the current version of jqxGrid. Rows selection works as expected on our side. Please, make sure that you use the latest version of jQWidgets.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.