Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #102167
    Mehran
    Member

    Hello,
    Can you tell me how I can make a column hidden /visible programatically, please?
    Thank you

    #102168
    YavorDashev
    Member

    Hi Mehran,
    By default the Kanban component doesn’t support this functionality, but I have created a quick ‘workaround’ on how to achieve the functionality you need.
    In your JS file:

    
    window.onload = function () {
        const kanbanColumns = document.querySelectorAll('.smart-kanban-column');
        kanbanColumns[0].style.visibility = 'hidden';
    }
    

    Let me know if that works for you!
    Please, do not hesitate to contact us if you have any additional questions.
    Best Regards,
    Yavor Dashev
    SmartUI Team
    https://www.htmlelements.com/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.