Displaying 1 result from an estimated 1 matches for "listitemcolor".
2006 Sep 29
1
Error on drag n drop list after refreshing list using AJAX
...items*/
Sortable.create("<?php echo $cellListId;
?>",{dropOnEmpty:true,containment:[<?php echo $dropOnListName;
?>],constraint:false});
//this is the callback function of ajax request
function processRequest() {
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'&...