Examples of collapse()


Examples of com.sencha.gxt.widget.core.client.ContentPanel.collapse()

            activeWidget.setPixelSize(size.getWidth(), size.getHeight() - hh);
          } else {
            for (int i = 0, len = getWidgetCount(); i < len; i++) {
              ContentPanel c = (ContentPanel) getWidget(i);
              if (c != activeWidget) {
                c.collapse();
              }
              applyLayout(c, size.getWidth(), -1);
            }
          }
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.ContentPanel.collapse()

    } else {
      for (int i = 0, len = getWidgetCount(); i < len; i++) {
        ContentPanel c = (ContentPanel) getWidget(i);
        if (c != activeWidget) {
          c.collapse();
        }
      }
    }
  }
View Full Code Here

Examples of dovetaildb.bagindex.PrefixCompressedBagIndex.SlotBuffer.collapse()

    buf.slots.add(new SlotBufferItem(ArrayBytes.fromString("a"),    0));
    buf.slots.add(new SlotBufferItem(ArrayBytes.fromString("b"),    1));
    buf.slots.add(new SlotBufferItem(ArrayBytes.fromString(""),     2));
    buf.slots.add(new SlotBufferItem(ArrayBytes.fromString("f"),    8));
    buf.slots.add(new SlotBufferItem(ArrayBytes.fromString(""),     4));
    buf.collapse(4, 35);
    //System.out.println(buf.slots);
    List<SlotBufferItem> items = buf.slots;
    assertEquals(4, items.size());
    assertEquals(ArrayBytes.fromString(""), items.get(0).bytes);
    assertEquals(20, items.get(0).hits);
View Full Code Here

Examples of l2p.gameserver.model.Reflection.collapse()

        DimensionalRiftManager.getInstance().reload();
        GmListTable.broadcastMessageToGMs("Instanced zones reloaded");
        Reflection r = ReflectionTable.SOD_REFLECTION_ID == 0 ? null : ReflectionTable.getInstance().get(ReflectionTable.SOD_REFLECTION_ID);
        if(r != null)
        {
          r.collapse();
        }
        ServerVariables.unset("SoD_id");
        break;
      }
      case admin_reload_nobles:
View Full Code Here

Examples of lineage2.gameserver.model.entity.Reflection.collapse()

  @Override
  protected void onDeath(Creature killer)
  {
    Reflection reflection = getReflection();
    if(reflection != ReflectionManager.DEFAULT)
      reflection.collapse();

    super.onDeath(killer);
  }

  @Override
View Full Code Here

Examples of org.apache.myfaces.tobago.model.ExpandedState.collapse()

        final boolean newExpanded = expandedIndices.contains(rowIndex);
        if (newExpanded != oldExpanded) {
          if (newExpanded) {
            expandedState.expand(path);
          } else {
            expandedState.collapse(path);
          }
        }
      }

    }
View Full Code Here

Examples of org.apache.myfaces.tobago.model.ExpandedState.collapse()

      if (newExpanded != oldExpanded) {
//          new TreeExpansionEvent(node, oldValue, newValue).queue();
        if (newExpanded) {
          expandedState.expand(path);
        } else {
          expandedState.collapse(path);
        }
      }

    }
    data.setRowIndex(-1);
View Full Code Here

Examples of org.apache.myfaces.tobago.model.ExpandedState.collapse()

        final boolean newExpanded = expandedIndices.contains(rowIndex);
        if (newExpanded != oldExpanded) {
          if (newExpanded) {
            expandedState.expand(path);
          } else {
            expandedState.collapse(path);
          }
        }
      }

    }
View Full Code Here

Examples of org.apache.myfaces.tobago.model.ExpandedState.collapse()

        final boolean newExpanded = expandedIndices.contains(rowIndex);
        if (newExpanded != oldExpanded) {
          if (newExpanded) {
            expandedState.expand(path);
          } else {
            expandedState.collapse(path);
          }
        }
      }

    }
View Full Code Here

Examples of org.apache.myfaces.tobago.model.ExpandedState.collapse()

        final boolean newExpanded = expandedIndices.contains(rowIndex);
        if (newExpanded != oldExpanded) {
          if (newExpanded) {
            expandedState.expand(path);
          } else {
            expandedState.collapse(path);
          }
        }
      }

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.