Displaying 1 result from an estimated 1 matches for "listitemstr".
Did you mean:
listitems
2006 Sep 29
1
Error on drag n drop list after refreshing list using AJAX
...ll the lists that can be droppable by the list 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();...