jQuery UI Widgets Forums Grid Drop Down select in Jqxgrid for Action perform on change event

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 10 years, 6 months ago.

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

  • Meharwan Singh
    Participant

    Thank you but i didn’t get source of that grid also exactly what i need I have Four field
    1)View
    2)Delete
    3)Edit
    4)Print
    These four option i want to Show on Action Column of jQxGrid Which used by Select like this

    var renderlist = function (row, column, value) {
    var buildList = ‘<select id=”Select’ + row + ‘” onChange=”selectionChanged(event)”>’;
    for (var i = 0; i < productNames.length; i++) {
    if (value == productNames[i]) {
    buildList += ‘<option selected=”true”>’ + productNames[i] + ‘</option>’;
    }
    else {
    buildList += ‘<option>’ + productNames[i] + ‘</option>’;
    }
    }
    buildList += ‘</select>’;
    return buildList;
    }

    And These options are static not dynamic.
    On Selection Change Event I want to perform task by their related function.
    Even i am success to do this and working fine in previous version of Jqxgrid but here new updated version sucked us and getting problem on this dropdwon select please help me out its urgent.

    Thanks and Regard
    Meharwan Singh


    Dimitar
    Participant

    Hello Meharwan Singh,

    Please provide us with a larger code sample, including your grid initialization and remember to format it by selecting it and pressing the code button in the toolbar. You may also consider using a custom cell editor.

    Best Regards,
    Dimitar

    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.