Fixed positionning on last element of subsection in learnpath building (BT#2333)

skala
ywarnier 14 years ago
parent fc2634a88c
commit 0a743698e2
  1. 1
      documentation/changelog.html
  2. 21
      main/newscorm/learnpath.class.php
  3. 32
      main/newscorm/lp_add_item.php
  4. 1
      main/newscorm/lp_controller.php

@ -121,6 +121,7 @@
<li>Fixed bug with split user directories and personal files (Bug #2239)</li>
<li>Fixed bug in link to course from courses list when code != from category</li>
<li>Fixed bug with unregistered directories in documents when copying course to other course (Bug #3059)</li>
<li>Fixed positionning on last element of subsection in learnpath building (BT#2333)</li>
</ul>
<h3>Security</h3>
<ul>

@ -6112,7 +6112,7 @@ class learnpath {
$form->addElement('hidden', 'title');
}
$parent_select = & $form->addElement('select', 'parent', get_lang('Parent'), '', 'class="learnpath_chapter_form" style="width:37%;" id="Parent" onchange="javascript: load_cbo(this.value);"');
$parent_select = & $form->addElement('select', 'parent', get_lang('Parent'), '', 'class="learnpath_chapter_form" style="width:37%;" id="idParent" onchange="javascript: load_cbo(this.value);"');
foreach ($arrHide as $key => $value) {
$parent_select->addOption($value['value'], $key, 'style="padding-left:' . $value['padding'] . 'px;"');
@ -6337,7 +6337,7 @@ class learnpath {
}
}
$parent_select = & $form->addElement('select', 'parent', get_lang('Parent'), '', 'class="learnpath_item_form" style="width:40%;" onchange="javascript: load_cbo(this.value);"');
$parent_select = & $form->addElement('select', 'parent', get_lang('Parent'), '', 'class="learnpath_item_form" id="idParent" style="width:40%;" onchange="javascript: load_cbo(this.value);"');
$my_count=0;
foreach ($arrHide as $key => $value) {
if ($my_count!=0) {
@ -7071,20 +7071,8 @@ class learnpath {
*
* @return string
*/
public function create_js() {
$return = '<script language="javascript" type="text/javascript">' . "\n";
$return .= 'function load_cbo(id){' . "\n";
$return .= "var cbo = document.getElementById('idPosition');\n";
$return .= 'for(var i = cbo.length - 1; i > 0; i--)';
$return .= 'cbo.options[i] = null;' . "\n";
$return .= 'var k=0;' . "\n";
$return .= 'for(var i = 1; i <= child_name[id].length; i++){' . "\n";
$return .= ' cbo.options[i] = new Option(child_name[id][i-1], child_value[id][i-1]);' . "\n";
$return .= 'k=i;';
$return .= '}' . "\n\n";
$return .= 'if( typeof cbo != "undefined" ) {cbo.options[k].selected = true;}';
$return .= '}';
$return .= 'var child_name = new Array();' . "\n";
public function get_js_dropdown_array() {
$return = 'var child_name = new Array();' . "\n";
$return .= 'var child_value = new Array();' . "\n\n";
$return .= 'child_name[0] = new Array();' . "\n";
$return .= 'child_value[0] = new Array();' . "\n\n";
@ -7129,7 +7117,6 @@ class learnpath {
}
$return .= "\n";
}
$return .= '</script>' . "\n";
return $return;
}

@ -109,11 +109,33 @@ function InnerDialogLoaded() {
}
return B.ClickFrame();
};
</script>';
$htmlHeadXtra[] = $_SESSION['oLP']->create_js();
};'."\n".
$_SESSION['oLP']->get_js_dropdown_array() .
'function load_cbo(id){' ."\n" .
'if (!id) {return false;}'.
'var cbo = document.getElementById(\'idPosition\');' .
'for(var i = cbo.length - 1; i > 0; i--) {' .
'cbo.options[i] = null;' .
'}' ."\n" .
'var k=0;' .
'for(var i = 1; i <= child_name[id].length; i++){' ."\n" .
' cbo.options[i] = new Option(child_name[id][i-1], child_value[id][i-1]);' ."\n" .
' k=i;' ."\n" .
'}' ."\n" .
//'if( typeof cbo != "undefined" ) {'."\n" .
'cbo.options[k].selected = true;'."\n" .
//'}'."\n" .
'}'."\n" .
'$().ready(function() {'."\n" .
'if ($(\'#idPosition\')) {'."\n" .
'if(\'parent is\'+$(\'#idParent\').val()) {'.
'load_cbo($(\'#idParent\').val());'."\n" .
'}}'."\n" .
'});'."\n" .
'</script>';
/* Constants and variables */

@ -211,6 +211,7 @@ switch ($action) {
if ($debug > 0) error_log('New LP - add item action triggered', 0);
if (!$lp_found) {
//check if the learnpath ID was defined, otherwise send back to list
if ($debug > 0) error_log('New LP - No learnpath given for add item', 0);

Loading…
Cancel
Save