Displaying 1 result from an estimated 1 matches for "lessontype".
2006 Sep 29
1
Error on drag n drop list after refreshing list using AJAX
...ocessRequest() {
var results, listItemString='' '', listItemColor;
if (ajaxReq.readyState == 4) {
if (ajaxReq.status == 200) {
results = ajaxReq.responseText.split("=");
for(var h=0; h<results.length; h+=2){
listItemColor = "Green";
lessonType = lessonType.toUpperCase();
switch(lessonType){
case ''LEC'': listItemColor = ''Red''; break;
case ''TUT'': listItemColor = ''Blue''; break;
case ''LAB'': listItemColor = ''Brown''; break...