var fDesc=new Array(); fDesc[0] = "The MDSF plugin allows JIRA admins to create fields that offer more than two levels of selection. The values offered for each level depend upon the values chosen for fields to the left of the current field.

JIRA provides a drop-down select list field type, where a user can select from a range of pre-determined values. JIRA also provides a field type "Cascading Select" which appears to the user as two select fields and the values available in the field on the right depend on the value that was chosen in the field on the left."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }