jQuery UI Widgets Forums Grid clear and reset column

This topic contains 3 replies, has 4 voices, and was last updated by  OlgaKorneeva 2 years, 10 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • clear and reset column #54987

    jahnvi25
    Participant

    i have editable cell. what is the best way to clear value of all cells to default /. i am using following method

    var rows = $(‘#table’).jqxGrid(‘getrows’);
    $(‘#table’).jqxGrid(‘beginupdate’);
    for(var i=0;i<rows.length;i++){
    rows[i].callQty = null;
    rows[i].putQty = null;
    //also reset the blue color
    rows[i].hasQty = ‘no’;
    }
    $(‘#table’).jqxGrid(‘endupdate’);
    is there any other better solution ?

    clear and reset column #54997

    Dimitar
    Participant

    Hello jahnvi25,

    There is no built-in method for this functionality, because the “default” values are user-specific. Your approach is suitable and there should be no issues with it. Another idea is to load the grid with the default values, if possible.

    Best Regards,
    Dimitar

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

    clear and reset column #121385

    princegajjar
    Participant

    Hello, I want to restore my particular column from several columns whenever I click the different cells of that column. So Is it possible in jqxgrid to restore the previous cell for only a single column?

    clear and reset column #121387

    OlgaKorneeva
    Participant

    =)

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

You must be logged in to reply to this topic.