user1383163
user1383163

Reputation: 597

Wicket Modal Window, any way to close it if i click outside of the modal window?

As the title says, i am working using wicket 6 and it would be very useful if the modal window was to close when i clicked outside of the bounds of the modal window, anyone have any idea on how i might go about this?

Upvotes: 1

Views: 387

Answers (1)

martin-g
martin-g

Reputation: 17513

Try by adding this JS to your page:

$(function() {
    $('.wicket-mask-dark').click(function() {
        $('.w_close').click();
    });
});

Upvotes: 1

Related Questions