Why I cant extends the width of a DialogBox more than 350px ?
The code:
DialogBox dialogBox = new DialogBox();
dialogBox.setWidth("600px");
Is the same result that:
DialogBox dialogBox = new DialogBox();
dialogBox.setWidth("350px");
But not the same that:
DialogBox dialogBox = new DialogBox();
dialogBox.setWidth("200px");
Thanks for help
.gwt-DialogBox {
width: 350px;
}
If there is, remove it.