Trying to open a dialog from a grid renderer which contain a button. The problem is that the dialog isn\'t respecting the specified size.
I\'ve tried setting the width a
Faced same case recently. You can disable width limit by styling your dialog using @HtmlImport :
@HtmlImport("styles/order-edit.html") class OrderEdit(val orderId: String, okHandler: (Order)->Unit): Dialog() { ... }
with following content: