Popup without close and resize buttons

1
Hi, Is it possible to show a form as a popup without the close and resize button in the titlebar? regards, Arjan
asked
1 answers
2

You could do this with styling. The only problem is that in every popup the close & resize button will be gone, you cannot specify the popup with a Class.

.default .mendixWindow_buttonClose {
       display: none; 
}
.default .mendixWindow_buttonMaximize { 
      display: none; 
}
answered