本文整理了Java中org.fujion.component.Grid.setVisible()
方法的一些代码示例,展示了Grid.setVisible()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.setVisible()
方法的具体详情如下:
包路径:org.fujion.component.Grid
类名称:Grid
方法名:setVisible
暂无
代码示例来源:origin: org.carewebframework/org.carewebframework.help.core
/**
* Displays the specified message. The list box is hidden if the message is not empty.
*
* @param message Message to display.
*/
private void showMessage(String message) {
message = message == null ? null : StrUtil.getLabel(message);
lblNoResultsFound.setLabel(message);
lblNoResultsFound.setVisible(!StringUtils.isEmpty(message));
tblSrchResults.setVisible(!lblNoResultsFound.isVisible());
}
代码示例来源:origin: org.carewebframework/org.carewebframework.ui.sharedforms
protected void status(String message) {
if (message != null) {
grid.setVisible(false);
status.setLabel(StrUtil.piece(message, "^"));
status.setHint(StrUtil.piece(message, "^", 2, 999));
status.setVisible(true);
} else {
status.setVisible(false);
status.setLabel(null);
status.setHint(null);
grid.setVisible(true);
}
}
代码示例来源:origin: org.carewebframework/org.carewebframework.shell
gridProperties.setVisible(true);
setPropertyDescription("@cwf.shell.designer.property.grid.propdx.some.caption",
"@cwf.shell.designer.property.grid.propdx.some.message");
} else {
gridProperties.setVisible(false);
setPropertyDescription("@cwf.shell.designer.property.grid.propdx.none.caption",
"@cwf.shell.designer.property.grid.propdx.none.message");
内容来源于网络,如有侵权,请联系作者删除!