本文整理了Java中org.hippoecm.frontend.plugins.yui.datetime.YuiDatePicker
类的一些代码示例,展示了YuiDatePicker
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YuiDatePicker
类的具体详情如下:
包路径:org.hippoecm.frontend.plugins.yui.datetime.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\"> <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();
}
}
内容来源于网络,如有侵权,请联系作者删除!