mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.1 to HEAD
12988: Fix for ETHREEOH-1238: Cannot use Jsp:include feature in XSD - 'Store not found' exception 12986: Merged V3.0 to V3.1 12980: Merged V2.2 to V3.0 12726: Fix for ETWOTWO-950: Forms with list control does not work in IE (6 & 7) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12989 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1193,12 +1193,12 @@ alfresco.xforms.CheckboxSelect = alfresco.xforms.AbstractSelectWidget.extend({
|
||||
checkbox.setAttribute("name", this.id + "_" + i + "-widget");
|
||||
checkbox.setAttribute("type", "checkbox");
|
||||
checkbox.setAttribute("value", values[i].value);
|
||||
checkboxDiv.appendChild(checkbox);
|
||||
if (initial_value.indexOf(values[i].value) != -1)
|
||||
{
|
||||
this._selectedValues.push(values[i].value);
|
||||
checkbox.checked = true;
|
||||
}
|
||||
checkboxDiv.appendChild(checkbox);
|
||||
checkboxDiv.appendChild(document.createTextNode(values[i].label));
|
||||
checkbox.onclick = this._checkbox_clickHandler.bindAsEventListener(this);
|
||||
}
|
||||
|
Reference in New Issue
Block a user