jQWidgets Forums

jQuery UI Widgets Forums Grid How to hide a row

This topic contains 1 reply, has 2 voices, and was last updated by  Yavor Dashev 3 years, 10 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • How to hide a row #120644

    toonice
    Participant

    jqxgrid viersion 12.1.2

    How to hide a row #120645

    Yavor Dashev
    Participant

    Hi toonice,

    The jqxGrid has a deleterow method which may suit your needs which takes as parameter the row’s id:

    
    $('#jqxGrid').jqxGrid('deleterow', rowid);
    

    or another option for is if you just want to ‘hide’ the row is using the following approach:

    
                let allRows = document.querySelectorAll("div[role='row']");
                allRows[1].style.display = "none";
    

    Please, do not hesitate to contact us if you have any additional questions.

    Best Regards,
    Yavor Dashev
    jQWidgets team
    https://www.jqwidgets.com

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

You must be logged in to reply to this topic.