Search code examples
javatapestry

Tapestry 5.4 Beanedit form alert


How can I hide this alert in my beanedit form. It's really annoying.

enter image description here

I tried with this css code but it didn't work.

.alert-dismissable .alert .alert-danger{
    display: none !important;
}

Solution

  • I fixed it. In my css file I added

    .bean > .alert{
        display: none !important;
    }
    

    After that I just added the class bean to the form. Thats it no more alerts.