com.vaadin.v7.ui.Table.changeVariables()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(383)

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

Table.changeVariables介绍

[英]Invoked when the value of a variable has changed.
[中]当变量的值更改时调用。

代码示例

代码示例来源:origin: viritin/viritin

  1. @Override
  2. public void changeVariables(Object source,
  3. Map<String, Object> variables) {
  4. clientSideChange = true;
  5. super.changeVariables(source, variables);
  6. clientSideChange = false;
  7. }

代码示例来源:origin: de.mhus.lib/mhu-lib-vaadin

  1. @SuppressWarnings({ "rawtypes", "unchecked" })
  2. @Override
  3. public void changeVariables(Object source, Map variables) {
  4. super.changeVariables(source, variables);
  5. // Notification.show("You are scrolling!\n " + variables);
  6. // System.out.println(variables);
  7. if (variables.containsKey("lastToBeRendered")) {
  8. int last = MCast.toint(variables.get("lastToBeRendered"), -1);
  9. int first = MCast.toint(variables.get("firstToBeRendered"), -1);
  10. if (last >= 0) {
  11. renderEventHandler.fire(null, first, last);
  12. }
  13. }
  14. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-widgets

  1. @Override
  2. protected boolean changeVariables(Map<String, Object> variables) {
  3. boolean clientNeedsContentRefresh = super.changeVariables(variables);
  4. if (variables.containsKey("resetsortorder")) {
  5. resetSortOrder();
  6. markAsDirty();
  7. }
  8. if (specificVariablesHandler != null) {
  9. clientNeedsContentRefresh = specificVariablesHandler.handleSpecificVariables(variables) || clientNeedsContentRefresh;
  10. }
  11. return clientNeedsContentRefresh;
  12. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-widgets

  1. @Override
  2. public void changeVariables(Object source, Map<String, Object> variables) {
  3. if (Page.getCurrent().getWebBrowser().isIE() && variables.containsKey("clickEvent")) {
  4. focus();
  5. }
  6. super.changeVariables(source, variables);
  7. if (shortcutActionManager != null) {
  8. shortcutActionManager.handleActions(variables, this);
  9. }
  10. if (variables.containsKey("updateAggregationRow")) {
  11. Boolean updateAggregationRow = (Boolean) variables.get("updateAggregationRow");
  12. if (updateAggregationRow) {
  13. markAsDirty();
  14. }
  15. }
  16. }

代码示例来源:origin: info.magnolia.ui/magnolia-ui-vaadin-common-widgets

  1. @Override
  2. public void changeVariables(Object source, Map<String, Object> variables) {
  3. super.changeVariables(source, variables);
  4. if (variables.containsKey("selectAll")) {
  5. boolean selectAll = (Boolean) variables.get("selectAll");
  6. if (selectAll) {
  7. Collection<?> ids = getItemIds();
  8. for (final Object id : ids) {
  9. select(id);
  10. }
  11. } else {
  12. setValue(null);
  13. }
  14. }
  15. if (variables.containsKey("toggleSelection")) {
  16. boolean selected = (Boolean) variables.get("toggleSelection");
  17. String key = String.valueOf(variables.get("toggledRowId"));
  18. final Object id = itemIdMapper.get(key);
  19. if (selected) {
  20. select(id);
  21. } else {
  22. unselect(id);
  23. }
  24. }
  25. }
  26. }

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. @Override
  2. public void changeVariables(Object source, Map<String, Object> variables) {
  3. super.changeVariables(source, variables);
  4. if (variables.containsKey("toggleCollapsed")) {
  5. String object = (String) variables.get("toggleCollapsed");
  6. Object itemId = itemIdMapper.get(object);
  7. toggledItemId = itemId;
  8. toggleChildVisibility(itemId, false);
  9. if (variables.containsKey("selectCollapsed")) {
  10. // ensure collapsed is selected unless opened with selection
  11. // head
  12. if (isSelectable()) {
  13. select(itemId);
  14. }
  15. }
  16. } else if (variables.containsKey("focusParent")) {
  17. String key = (String) variables.get("focusParent");
  18. Object refId = itemIdMapper.get(key);
  19. Object itemId = getParent(refId);
  20. focusParent(itemId);
  21. }
  22. }

相关文章

Table类方法