List of usage examples for org.springframework.web.servlet.tags.form OptionTag DISPLAY_VALUE_VARIABLE_NAME
String DISPLAY_VALUE_VARIABLE_NAME
To view the source code for org.springframework.web.servlet.tags.form OptionTag DISPLAY_VALUE_VARIABLE_NAME.
Click Source Link
From source file:org.hdiv.web.servlet.tags.form.OptionTagHDIV.java
@Override protected void exposeAttributes() throws JspException { Object value = resolveValue(); this.oldValue = this.pageContext.getAttribute(OptionTag.VALUE_VARIABLE_NAME); this.pageContext.setAttribute(OptionTag.VALUE_VARIABLE_NAME, value); this.oldDisplayValue = this.pageContext.getAttribute(OptionTag.DISPLAY_VALUE_VARIABLE_NAME); this.pageContext.setAttribute(DISPLAY_VALUE_VARIABLE_NAME, getDisplayString(value, getBindStatus().getEditor())); }