jQWidgets Forums

jQuery UI Widgets Forums TreeGrid jqxTreeGrid rowBeginEdit args list

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • jqxTreeGrid rowBeginEdit args list #52112

    DavidSimmons
    Participant

    Can someone give me a list of properties available to args like row and key? I am assuming there are more.

    I am really looking for a way to obtain the current columnName being edited and new cellValue.

    $(jqxgrid).on(‘rowBeginEdit’, function (event) {
    var args = event.args;
    var row = args.row;
    var key = args.key;

    });

    $(jqxgrid).on(‘rowEndEdit’, function (event) {
    var args = event.args;
    var row = args.row;
    var key = args.key;

    });

    jqxTreeGrid rowBeginEdit args list #52114

    Peter Stoev
    Keymaster

    Hi David,

    That is not possible, because the widget support row editing, not cell editing. In general, all columns are current in that edit mode. There aren’t other properties. All of them are documented and you already listed them in your post.

    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.