本文整理了Java中org.apache.wicket.markup.html.form.CheckBox.checkComponentTagAttribute()
方法的一些代码示例,展示了CheckBox.checkComponentTagAttribute()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。CheckBox.checkComponentTagAttribute()
方法的具体详情如下:
包路径:org.apache.wicket.markup.html.form.CheckBox
类名称:CheckBox
方法名:checkComponentTagAttribute
暂无
代码示例来源:origin: org.apache.wicket/wicket-core
/**
* Processes the component tag.
*
* @param tag
* Tag to modify
* @see org.apache.wicket.Component#onComponentTag(ComponentTag)
*/
@Override
protected void onComponentTag(final ComponentTag tag)
{
checkComponentTag(tag, "input");
checkComponentTagAttribute(tag, "type", "checkbox");
final String value = getValue();
final IConverter<Boolean> converter = getConverter(Boolean.class);
final Boolean checked = converter.convertToObject(value, getLocale());
if (Boolean.TRUE.equals(checked))
{
tag.put("checked", "checked");
}
else
{
// In case the attribute was added at design time
tag.remove("checked");
}
// remove value attribute, because it overrides the browser's submitted value, eg a [input
// type="checkbox" value=""] will always submit as false
tag.remove("value");
super.onComponentTag(tag);
}
代码示例来源:origin: apache/wicket
/**
* Processes the component tag.
*
* @param tag
* Tag to modify
* @see org.apache.wicket.Component#onComponentTag(ComponentTag)
*/
@Override
protected void onComponentTag(final ComponentTag tag)
{
checkComponentTag(tag, "input");
checkComponentTagAttribute(tag, "type", "checkbox");
final String value = getValue();
final IConverter<Boolean> converter = getConverter(Boolean.class);
final Boolean checked = converter.convertToObject(value, getLocale());
if (Boolean.TRUE.equals(checked))
{
tag.put("checked", "checked");
}
else
{
// In case the attribute was added at design time
tag.remove("checked");
}
// remove value attribute, because it overrides the browser's submitted value, eg a [input
// type="checkbox" value=""] will always submit as false
tag.remove("value");
super.onComponentTag(tag);
}
代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service
checkComponentTagAttribute(tag, "type", "checkbox");
代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket
checkComponentTagAttribute(tag, "type", "checkbox");
内容来源于网络,如有侵权,请联系作者删除!