2015-04-20 82 views
1

我們在我們的項目中使用Vaadin 7顏色選擇器。 Vaadin顏色選擇器在默認情況下在新的彈出窗口中打開。Vaadin顏色選擇器避免彈出

如何避免該彈出窗口並顯示我的垂直佈局中的顏色選擇區域?

回答

0

你可以嘗試使用:

ColorPickerPopup colorPickerPopup = new ColorPickerPopup(new Color(123, 131, 132)); 
mainLayout.addComponent(colorPickerPopup.getContent()); 

但該組件還包含2個按鈕可確定取消。 如果你想刪除這2個按鈕:

VerticalLayout content = (VerticalLayout) colorPickerPopup.getContent(); 
content.removeComponent(content.getComponent(3)); 
mainLayout.addComponent(content);