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:
Gavin Cornwell
2009-01-30 14:14:51 +00:00
parent f70b674593
commit 91e042144c
3 changed files with 3 additions and 3 deletions

View File

@@ -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);
}