UIFormComboBox missing value when open form
--------------------------------------------
Key: GTNPORTAL-1236
URL:
https://issues.jboss.org/browse/GTNPORTAL-1236
Project: GateIn Portal
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: WebUI
Affects Versions: 3.0.0-GA
Reporter: tuan pham
Assignee: Khoi Nguyen
Fix For: 3.1.0-CR01
- In the component UIFormComboBox.java from line 202 to 205
text +=
"<input class='UIComboboxInput' options=\"" + options
+ "\" onkeyup='eXo.webui.UICombobox.complete(this,event);'
type='text' " + renderJsActions() + " /></div>";
w.write(text);
it should be
text +=
"<input class='UIComboboxInput' options=\"" + options
+ "\" onkeyup='eXo.webui.UICombobox.complete(this,event);'
type='text' " + renderJsActions() ;
if (value_ != null && value_.trim().length() > 0)
{
text += " value='" + encodeValue(value_).toString() +
"'";
}
text += "/></div>";
because it rises error when edit data but in UI have no value on our product
http://jira.exoplatform.org/browse/CS-4252
--
This message is automatically generated by JIRA.
For more information on JIRA, see: