in tobago-core/src/main/java/org/apache/myfaces/tobago/internal/renderkit/renderer/SelectOneRadioRenderer.java [99:190]
protected void encodeBeginField(final FacesContext facesContext, final T component) throws IOException {
final AbstractUISelectReference reference = component.getRenderRangeReference();
final TobagoResponseWriter writer = getResponseWriter(facesContext);
final String id = component.getClientId(facesContext);
// final String referenceId = reference != null ? reference.getClientId(facesContext) : id;
final Iterable<SelectItem> items = SelectItemUtils.getItemIterator(facesContext, component);
final String title = HtmlRendererUtils.getTitleFromTipAndMessages(facesContext, component);
final boolean disabled = component.isDisabled();
final boolean readonly = component.isReadonly();
final boolean required = component.isRequired();
final boolean inline = component.isInline();
final Markup markup = component.getMarkup();
final boolean isInsideCommand = isInside(facesContext, HtmlElements.COMMAND);
final String name = getDecodingId(facesContext, component);
writer.startElement(getTag(facesContext));
writer.writeClassAttribute(
inline ? BootstrapClass.FORM_CHECK_INLINE : null,
component.getCustomClass());
HtmlRendererUtils.writeDataAttributes(facesContext, writer, component);
writer.writeAttribute(HtmlAttributes.TITLE, title, true);
boolean first = true;
final Object value = component.getValue();
final String submittedValue = (String) component.getSubmittedValue();
int i = 0;
final int[] renderRange = getRenderRangeList(component, reference);
for (final SelectItem item : items) {
if (renderRange == null || ArrayUtils.contains(renderRange, i)) {
final String formattedValue = getFormattedValue(facesContext, component, item.getValue());
final boolean checked;
if (submittedValue == null) {
checked = ObjectUtils.equals(item.getValue(), value);
} else {
checked = ObjectUtils.equals(formattedValue, submittedValue);
}
if (item.isNoSelectionOption() && component.isRequired() && value != null && !checked) {
// skip the noSelectionOption if there is a value available
continue;
}
final boolean itemDisabled = item.isDisabled() || disabled;
final String itemId = id + ComponentUtils.SUB_SEPARATOR + i;
writer.startElement(HtmlElements.DIV);
writer.writeClassAttribute(
BootstrapClass.FORM_CHECK,
inline ? BootstrapClass.FORM_CHECK_INLINE : null,
isInsideCommand ? BootstrapClass.DROPDOWN_ITEM : null);
writer.startElement(HtmlElements.INPUT);
writer.writeClassAttribute(
BootstrapClass.FORM_CHECK_INPUT,
BootstrapClass.validationColor(ComponentUtils.getMaximumSeverity(component)));
writer.writeAttribute(HtmlAttributes.TYPE, HtmlInputTypes.RADIO);
writer.writeAttribute(HtmlAttributes.CHECKED, checked);
writer.writeNameAttribute(name);
writer.writeIdAttribute(itemId);
writer.writeAttribute(HtmlAttributes.VALUE, formattedValue, true);
writer.writeAttribute(HtmlAttributes.DISABLED, itemDisabled);
writer.writeAttribute(HtmlAttributes.READONLY, readonly);
writer.writeAttribute(HtmlAttributes.REQUIRED, required);
if (first) {
renderFocus(id, component.isFocus(), component.isError(), facesContext, writer);
first = false;
}
writer.writeAttribute(HtmlAttributes.TABINDEX, component.getTabIndex());
writer.endElement(HtmlElements.INPUT);
writer.startElement(HtmlElements.LABEL);
writer.writeClassAttribute(BootstrapClass.FORM_CHECK_LABEL);
writer.writeAttribute(HtmlAttributes.FOR, itemId, false);
if (item instanceof org.apache.myfaces.tobago.model.SelectItem) {
final org.apache.myfaces.tobago.model.SelectItem tobagoItem =
(org.apache.myfaces.tobago.model.SelectItem) item;
final String image = tobagoItem.getImage();
if (image != null) {
writer.startElement(HtmlElements.IMG);
writer.writeAttribute(HtmlAttributes.SRC, image, true);
writer.writeAttribute(HtmlAttributes.ALT, "", false);
writer.endElement(HtmlElements.IMG);
}
}
final String label = item.getLabel();
if (label != null) {
writer.writeText(label);
}
writer.endElement(HtmlElements.LABEL);
writer.endElement(HtmlElements.DIV);
}
i++;
}
}