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

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

本文整理了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

  1. /**
  2. * Displays the specified message. The list box is hidden if the message is not empty.
  3. *
  4. * @param message Message to display.
  5. */
  6. private void showMessage(String message) {
  7. message = message == null ? null : StrUtil.getLabel(message);
  8. lblNoResultsFound.setLabel(message);
  9. lblNoResultsFound.setVisible(!StringUtils.isEmpty(message));
  10. tblSrchResults.setVisible(!lblNoResultsFound.isVisible());
  11. }

代码示例来源:origin: org.carewebframework/org.carewebframework.ui.sharedforms

  1. protected void status(String message) {
  2. if (message != null) {
  3. grid.setVisible(false);
  4. status.setLabel(StrUtil.piece(message, "^"));
  5. status.setHint(StrUtil.piece(message, "^", 2, 999));
  6. status.setVisible(true);
  7. } else {
  8. status.setVisible(false);
  9. status.setLabel(null);
  10. status.setHint(null);
  11. grid.setVisible(true);
  12. }
  13. }

代码示例来源:origin: org.carewebframework/org.carewebframework.shell

  1. gridProperties.setVisible(true);
  2. setPropertyDescription("@cwf.shell.designer.property.grid.propdx.some.caption",
  3. "@cwf.shell.designer.property.grid.propdx.some.message");
  4. } else {
  5. gridProperties.setVisible(false);
  6. setPropertyDescription("@cwf.shell.designer.property.grid.propdx.none.caption",
  7. "@cwf.shell.designer.property.grid.propdx.none.message");

相关文章