本文整理了Java中com.vaadin.ui.Button.setWidthUndefined()
方法的一些代码示例,展示了Button.setWidthUndefined()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Button.setWidthUndefined()
方法的具体详情如下:
包路径:com.vaadin.ui.Button
类名称:Button
方法名:setWidthUndefined
暂无
代码示例来源:origin: com.github.markash/components
public static Button CLEAR_ALL(final ClickListener listener, final String...styles) {
Button button = ButtonBuilder.build(I8n.Button.CLEAR_ALL, null, listener, styles);
button.setWidthUndefined();
return button;
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
private void updateComponentWidth() {
if (container == null)
return;
if (getWidth() >= 0) {
container.setWidth(100, Unit.PERCENTAGE);
if (isShowFileName()) {
container.setExpandRatio(fileNameButton, 1);
fileNameButton.setWidth(100, Unit.PERCENTAGE);
uploadButton.setWidthUndefined();
clearButton.setWidthUndefined();
} else {
container.setExpandRatio(fileNameButton, 0);
fileNameButton.setWidthUndefined();
if (isShowClearButton() && !isRequiredIndicatorVisible()) {
uploadButton.setWidth(100, Unit.PERCENTAGE);
clearButton.setWidth(100, Unit.PERCENTAGE);
} else {
uploadButton.setWidth(100, Unit.PERCENTAGE);
}
}
} else {
container.setWidthUndefined();
fileNameButton.setWidthUndefined();
uploadButton.setWidthUndefined();
clearButton.setWidthUndefined();
}
}
代码示例来源:origin: com.haulmont.cuba/cuba-web-widgets
countButton.setWidthUndefined();
countButton.setStyleName(ValoTheme.BUTTON_LINK);
countButton.addStyleName("c-paging-count");
内容来源于网络,如有侵权,请联系作者删除!