org.fujion.component.Grid.setVisible()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.fujion.component.Grid.setVisible()方法的一些代码示例,展示了Grid.setVisible()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.setVisible()方法的具体详情如下:
包路径:org.fujion.component.Grid
类名称:Grid
方法名:setVisible

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");

相关文章

微信公众号

最新文章

更多