Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.1.7-SNAPSHOT
-
None
-
None
Description
The "disabled" parameter of the component is not rendered. Adding the following lines to InputSuggestAjaxRenderer.java fixes that:
===============
...
String autoComplete = inputSuggestAjax.getAutoComplete().booleanValue()?"true":"false";
attributes.put("autoComplete", autoComplete);
String disabled = inputSuggestAjax.isDisabled()?"true":"false";
attributes.put("disabled", disabled);
if (label != null)
{
mainComponentRenderedValue = label;
...
===============