version 1.12, 2010/09/14 06:23:15
|
version 1.14, 2010/11/09 01:19:04
|
Line 282 sub editor {
|
Line 282 sub editor {
|
$r->print(&display_questions(\@devitems,'development',$devleg,\%chosenitems)); |
$r->print(&display_questions(\@devitems,'development',$devleg,\%chosenitems)); |
$r->print('<input type="hidden" name="phase" value="storemap" />'. |
$r->print('<input type="hidden" name="phase" value="storemap" />'. |
'<input type="hidden" name="context" value="'.$context.'" />'. |
'<input type="hidden" name="context" value="'.$context.'" />'. |
|
'<input type="hidden" name="concepttest" value="'.$env{'form.concepttest'}.'" />'. |
'<input type="submit" value="'.&mt('Store Problem Selection').'" />'. |
'<input type="submit" value="'.&mt('Store Problem Selection').'" />'. |
'</form>'); |
'</form>'); |
&Apache::lonnet::delenv('request.gcicontext'); |
&Apache::lonnet::delenv('request.gcicontext'); |
Line 316 sub display_questions {
|
Line 317 sub display_questions {
|
$output .= '<span id="'.$titleid.'">'. |
$output .= '<span id="'.$titleid.'">'. |
'<a href="javascript:showQuestions('."'$fieldid','$titleid'".')">'. |
'<a href="javascript:showQuestions('."'$fieldid','$titleid'".')">'. |
&mt('Show').'</a> ...</span><br />'. |
&mt('Show').'</a> ...</span><br />'. |
'<div id="'.$fieldid.'">'. |
'<div id="'.$fieldid.'" style="display: none">'. |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(); |
&Apache::loncommon::start_data_table_header_row(); |
unless (($catname eq 'development') || ($catname eq 'mandatory')) { |
unless (($catname eq 'development') || ($catname eq 'mandatory')) { |
Line 675 function hideQuestions(content,title) {
|
Line 676 function hideQuestions(content,title) {
|
return; |
return; |
} |
} |
|
|
function setInitialVisibility() { |
|
if (document.getElementById('GCI_mandatory_q') == null) { |
|
return; |
|
} |
|
document.getElementById('GCI_mandatory_q').style.display = "none"; |
|
document.getElementById('GCI_bin0_q').style.display = "none"; |
|
document.getElementById('GCI_bin1_q').style.display = "none"; |
|
document.getElementById('GCI_bin2_q').style.display = "none"; |
|
document.getElementById('GCI_bin3_q').style.display = "none"; |
|
document.getElementById('GCI_bin4_q').style.display = "none"; |
|
document.getElementById('GCI_bin5_q').style.display = "none"; |
|
document.getElementById('GCI_bin6_q').style.display = "none"; |
|
document.getElementById('GCI_bin7_q').style.display = "none"; |
|
document.getElementById('GCI_bin8_q').style.display = "none"; |
|
document.getElementById('GCI_bin9_q').style.display = "none"; |
|
document.getElementById('GCI_bin10_q').style.display = "none"; |
|
document.getElementById('GCI_optional_q').style.display = "none"; |
|
document.getElementById('GCI_development_q').style.display = "none"; |
|
} |
|
|
|
function countChecked(binname) { |
function countChecked(binname) { |
var count = 0; |
var count = 0; |
for (var i=0; i<document.selecteditems.elements.length; i++) { |
for (var i=0; i<document.selecteditems.elements.length; i++) { |