gpt4 book ai didi

org.hippoecm.frontend.plugins.yui.datetime.YuiDatePicker类的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 13:19:15 25 4
gpt4 key购买 nike

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

YuiDatePicker介绍

暂无

代码示例

代码示例来源:origin: org.onehippo.cms7/hippo-cms-api

/**
 * Check that this behavior can get a date format out of the component it is coupled to. It checks whether {@link
 * #getDatePattern()} produces a non-null value. If that method returns null, and exception will be thrown
 *
 * @param component the component this behavior is being coupled to
 * @throws UnableToDetermineFormatException
 *          if this date picker is unable to determine a format.
 */
@SuppressWarnings("unused")
private void checkComponentProvidesDateFormat(Component component) {
  if (getDatePattern() == null) {
    throw new UnableToDetermineFormatException();
  }
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-api

/**
 * Gets the id of the icon that triggers the popup.
 *
 * @return The id of the icon
 */
protected final String getIconId() {
  return getEscapedComponentMarkupId() + "Icon";
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-api

@Override
public void afterRender(Component component) {
  super.afterRender(component);
  // Append the span and img icon right after the rendering of the
  // component. Not as pretty as working with a panel etc, but works
  // for behaviors and is more efficient
  Response response = component.getResponse();
  response.write("\n<div class=\"yui-skin-sam\">&nbsp;<span style=\"");
  if (renderOnLoad()) {
    response.write("display:block;");
  } else {
    response.write("display:none;");
    response.write("position:absolute;");
  }
  response.write("z-index: 99999;\" id=\"");
  response.write(getEscapedComponentMarkupId());
  response.write("Dp\"></span><a style=\"");
  response.write(getIconStyle());
  response.write("\" id=\"");
  response.write(getIconId());
  response.write("\">");
  response.write(getIcon().getSpriteReference(IconSize.M));
  response.write("</a>");
  if (renderOnLoad()) {
    response.write("<br style=\"clear:left;\"/>");
  }
  response.write("</div>");
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-yui

if (renderOnLoad())
response.write(getEscapedComponentMarkupId());
response.write("Dp\"></span><img style=\"");
response.write(getIconStyle());
response.write("\" id=\"");
response.write(getIconId());
response.write("\" src=\"");
CharSequence iconUrl = getIconUrl();
response.write(Strings.escapeMarkup(iconUrl != null ? iconUrl.toString() : ""));
response.write("\" alt=\"\"/>");
if (renderOnLoad())

代码示例来源:origin: org.onehippo.cms7/hippo-cms-yui

@Override
public void bind(Component component) {
  super.bind(component);
  this.component = component;
  checkComponentProvidesDateFormat(component);
  component.setOutputMarkupId(true);
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-api

dateField.add(new YuiDatePicker(this.settings));

代码示例来源:origin: org.onehippo.cms7/hippo-cms-api

@Override
public void bind(Component component) {
  super.bind(component);
  this.component = component;
  checkComponentProvidesDateFormat(component);
  component.setOutputMarkupId(true);
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-yui

dateField.remove(b);
dateField.add(new YuiDatePicker(settings));
IModel<String> sizeModel = new LoadableDetachableModel<String>() {
  private static final long serialVersionUID = 1L;

代码示例来源:origin: org.onehippo.cms7/hippo-cms-yui

/**
 * Gets the id of the icon that triggers the popup.
 *
 * @return The id of the icon
 */
protected final String getIconId()
{
  return getEscapedComponentMarkupId() + "Icon";
}

代码示例来源:origin: org.onehippo.cms7/hippo-cms-yui

/**
 * Check that this behavior can get a date format out of the component it is coupled to. It
 * checks whether {@link #getDatePattern()} produces a non-null value. If that method returns
 * null, and exception will be thrown
 *
 * @param component
 *            the component this behavior is being coupled to
 * @throws UnableToDetermineFormatException
 *             if this date picker is unable to determine a format.
 */
private final void checkComponentProvidesDateFormat(Component component)
{
  if (getDatePattern() == null)
  {
    throw new UnableToDetermineFormatException();
  }
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com