Index: lams_tool_laqa/web/authoring/AdvancedContent.jsp =================================================================== diff -u -r2a3012f2276337d5f3b2e7eb2a30acc2d4af4176 -r6c5d0c6b8ff17d661580df2c265f2dcabfe7d76c --- lams_tool_laqa/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 2a3012f2276337d5f3b2e7eb2a30acc2d4af4176) +++ lams_tool_laqa/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 6c5d0c6b8ff17d661580df2c265f2dcabfe7d76c) @@ -25,22 +25,48 @@ * Processes mouse click event on showOtherAnswers ckeckbox */ function doShowOtherAnswers() { - document.QaAuthoringForm.usernameVisible.disabled = ! eval(document.QaAuthoringForm.usernameVisible.disabled); - document.QaAuthoringForm.allowRateAnswers.disabled = ! eval(document.QaAuthoringForm.allowRateAnswers.disabled); + document.QaAuthoringForm.usernameVisible.disabled = ! eval(document.QaAuthoringForm.showOtherAnswers.checked); + document.QaAuthoringForm.allowRateAnswers.disabled = ! eval(document.QaAuthoringForm.showOtherAnswers.checked); if (document.QaAuthoringForm.showOtherAnswers.checked) { document.QaAuthoringForm.usernameVisible.checked = true; } else { document.QaAuthoringForm.usernameVisible.checked = false; document.QaAuthoringForm.allowRateAnswers.checked = false; } - } + } + + function clickSelectLeaderToolOuputHandler() { + if (document.QaAuthoringForm.useSelectLeaderToolOuput.checked) { + //uncheck checkboxes + document.QaAuthoringForm.showOtherAnswers.checked = false; + document.QaAuthoringForm.usernameVisible.checked = false; + document.QaAuthoringForm.allowRateAnswers.checked = false; + //disable checkboxes + document.QaAuthoringForm.showOtherAnswers.disabled = true; + document.QaAuthoringForm.usernameVisible.disabled = true; + document.QaAuthoringForm.allowRateAnswers.disabled = true; + } else { + //enable checkboxes + document.QaAuthoringForm.showOtherAnswers.disabled = false; + } + } + +

+ + + +

+

+ styleClass="noBorder" disabled="${formBean.useSelectLeaderToolOuput}">

- - - - - - -