Examples of IValueMap


Examples of org.apache.wicket.util.value.IValueMap

   */
  public String getAttribute(String attribute)
  {
    String value = null;

    IValueMap attributeMap = openTag.getAttributes();

    if (attributeMap != null)
    {
      for (String attr : attributeMap.keySet())
      {
        if (attr.equalsIgnoreCase(attribute))
        {
          value = attributeMap.getString(attr);
        }
      }
    }

    return value;
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

        {
          XmlTag xmlTag = elm;

          if (openTag == null)
          {
            IValueMap attributeMap = xmlTag.getAttributes();

            for (Map.Entry<String, Object> entry : attributeMap.entrySet())
            {
              String attr = entry.getKey();
              if (attr.equals(attribute) && value.equals(entry.getValue()))
              {
                if (xmlTag.isOpen())
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

        while ((elm = parser.nextTag()) != null)
        {
          XmlTag xmlTag = elm;
          if (openTag == null)
          {
            IValueMap attributeMap = xmlTag.getAttributes();
            for (Map.Entry<String, Object> entry : attributeMap.entrySet())
            {
              if (entry.getKey().equals(attribute) && value.equals(entry.getValue()))
              {
                if (xmlTag.isOpen())
                {
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

        }
      }

      // Allows user to add attributes to the <input..> tag
      {
        IValueMap attrs = getAdditionalAttributes(index, choice);
        if (attrs != null)
        {
          for (Map.Entry<String, Object> attr : attrs.entrySet())
          {
            buffer.append(' ')
              .append(attr.getKey())
              .append("=\"")
              .append(attr.getValue())
              .append('"');
          }
        }
      }

      if (getApplication().getDebugSettings().isOutputComponentPath())
      {
        CharSequence path = getPageRelativePath();
        path = Strings.replaceAll(path, "_", "__");
        path = Strings.replaceAll(path, ":", "_");
        buffer.append(" wicketpath=\"")
          .append(path)
          .append("_input_")
          .append(index)
          .append('"');
      }

      buffer.append("/>");

      // Add label for radio button
      String display = label;
      if (localizeDisplayValues())
      {
        display = getLocalizer().getString(label, this, label);
      }

      CharSequence escaped = display;
      if (getEscapeModelStrings())
      {
        escaped = Strings.escapeMarkup(display);
      }

      buffer.append("<label for=\"")
        .append(idAttr)
        .append('"');

      // Allows user to add attributes to the <label..> tag
      {
        IValueMap labelAttrs = getAdditionalAttributesForLabel(index, choice);
        if (labelAttrs != null)
        {
          for (Map.Entry<String, Object> attr : labelAttrs.entrySet())
          {
            buffer.append(' ')
                .append(attr.getKey())
                .append("=\"")
                .append(attr.getValue())
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

  protected void onComponentTag(ComponentTag tag)
  {
    checkComponentTag(tag, "select");

    super.onComponentTag(tag);
    IValueMap attrs = tag.getAttributes();

    attrs.put("multiple", null);
    attrs.put("size", new Integer(getPalette().getRows()));

    if (!palette.isPaletteEnabled())
    {
      attrs.put("disabled", "disabled");
    }


    // A piece of javascript to avoid serializing the options during AJAX
    // serialization.
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

   */
  public final void replaceAttibuteValue(final Component component, final ComponentTag tag)
  {
    if (isEnabled(component))
    {
      final IValueMap attributes = tag.getAttributes();
      final Object replacementValue = getReplacementOrNull(component);

      if (VALUELESS_ATTRIBUTE_ADD.equals(replacementValue))
      {
        attributes.put(attribute, null);
      }
      else if (VALUELESS_ATTRIBUTE_REMOVE.equals(replacementValue))
      {
        attributes.remove(attribute);
      }
      else
      {
        if (attributes.containsKey(attribute))
        {
          final String value = toStringOrNull(attributes.get(attribute));
          if (pattern == null || value.matches(pattern))
          {
            final String newValue = newValue(value, toStringOrNull(replacementValue));
            if (newValue != null)
            {
              attributes.put(attribute, newValue);
            }
          }
        }
        else if (addAttributeIfNotPresent)
        {
          final String newValue = newValue(null, toStringOrNull(replacementValue));
          if (newValue != null)
          {
            attributes.put(attribute, newValue);
          }
        }
      }
    }
  }
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

  @Override
  protected void onComponentTag(ComponentTag tag)
  {
    super.onComponentTag(tag);
    IValueMap attrs = tag.getAttributes();

    String onFocus = getPalette().getSelectionOnFocusJS();
    if (onFocus != null)
    {
      attrs.put("onFocus", onFocus);
    }

    tag.getAttributes().put("ondblclick", getPalette().getRemoveOnClickJS());
  }
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

  protected void onComponentTag(ComponentTag tag)
  {
    checkComponentTag(tag, "select");

    super.onComponentTag(tag);
    IValueMap attrs = tag.getAttributes();

    attrs.put("multiple", null);
    attrs.put("size", new Integer(getPalette().getRows()));

    if (!palette.isPaletteEnabled())
    {
      attrs.put("disabled", "disabled");
    }


    // A piece of javascript to avoid serializing the options during AJAX
    // serialization.
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

   */
  public String getAttribute(String attribute)
  {
    String value = null;

    IValueMap attributeMap = openTag.getAttributes();

    if (attributeMap != null)
    {
      for (Iterator<String> iter = attributeMap.keySet().iterator(); iter.hasNext();)
      {
        String attr = iter.next();

        if (attr.equalsIgnoreCase(attribute))
        {
          value = attributeMap.getString(attr);
        }
      }
    }

    return value;
View Full Code Here

Examples of org.apache.wicket.util.value.IValueMap

          {
            XmlTag xmlTag = (XmlTag)elm;

            if (openTag == null)
            {
              IValueMap attributeMap = xmlTag.getAttributes();

              for (Iterator<Map.Entry<String, Object>> iter = attributeMap.entrySet()
                .iterator(); iter.hasNext();)
              {
                Map.Entry<String, Object> entry = iter.next();
                String attr = entry.getKey();
                if (attr.equals(attribute) && value.equals(entry.getValue()))
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.