jQWidgets Forums

jQuery UI Widgets Forums Grid grid loads selected row and run event

This topic contains 3 replies, has 2 voices, and was last updated by  Peter Stoev 11 years ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • grid loads selected row and run event #51496

    Serdar
    Participant

    hello How do I run a grid event ?
    example

    var source =
    {
    url: ‘/Crew/Crew/CrewGridList’,
    datatype: “json”,
    type: ‘POST’,
    id: ‘c_ID’,
    cache: false,
    datafields: [

    { name: ‘C_ID’, type: ‘string’, },
    { name: ‘Name’, type: ‘string’, },
    { name: ‘LastName’, type: ‘string’, }

    ],
    };

    var dataAdapter = new $.jqx.dataAdapter(source);

    $(“#CrewGridList”).jqxGrid({
    width: 400,
    source: dataAdapter,
    editable: false,
    theme: ‘Summer’,
    pageable: true,
    selectedIndex:0, not working
    showfilterrow: true,
    filterable: true,
    selectedIndex: 0,
    keyboardnavigation: true,
    rendergridrows: function (params) {
    return params.data
    },
    columns: [{ text: ‘Id’, datafield: ‘c_ID’, width: 200, hidden: true },
    { text: ‘Name’, datafield: ‘Name’, width: 200 },
    { text: ‘Last Name’, datafield: ‘LastName’, width: 200 },
    //$(“.CrewList”).jqxGrid(‘hidecolumn’, ‘Id’)
    ]

    });

    $(“#CrewGridList”).jqxGrid(‘selectrow’, 0);

    $(“#CrewGridList”).on(‘rowselect’, function (event) { // First loading the Grid How do I run event ?
    var crewId = event.args.row.C_ID;
    alert(‘I first 0 row ‘+crewId);

    });

    grid loads selected row and run event #51504

    Peter Stoev
    Keymaster

    Hi Serdar,

    There is no such thing as selectedIndex.That is the reason why it is not working.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

    grid loads selected row and run event #51524

    Serdar
    Participant

    hello You did not understand me, My english is not good..

    $ (“# CrewGridList”) jqxGrid (‘selectrow’, 0).;
    this selected row is getting ok is working..
    and

    I want to run this event automatically
    . $ (“# CrewGridList”) ‘rowselect’, function (event) {(
    var crewId = event.args.row.C_ID;
    alert(‘I first 0 row ‘+crewId);

    or example
    How to get selected row ID from Gridview?

    $ (“# CrewGridList”) jqxGrid (‘selectrow’, 0).;
    alert(rowselectedIndex)

    grid loads selected row and run event #51533

    Peter Stoev
    Keymaster

    Hi Serdar,

    Yes, I understand you. There is no property called selectedIndex in jqxGrid. I hope you will understand my response as well.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com/

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

You must be logged in to reply to this topic.