I am working on a learning planer, which gets its data (languagekeys, tasks, activities,..) from a database. As I need a json string I encode it with json_encode to work with it in javascript. I have different function (for keys, tasks, activities,...) which get this data and write in an array.
function get_tasks(start_date,end_date){
maxsubtasks=0;
maxtasks=0;
//alert(start_date+" "+end_date);
$.getJSON(json_data+"?t_startdate="+start_date+"&t_enddate="+end_date+"&t_user_id="+user_id+"&data=tasks", function(data)
{
tasks=new Array();
$.each(data.tasks, function(i,item)
{
//alert(i);
tasks[i]= new Object();
tasks[i]["t_id"]=item.t_id;
tasks[i]["t_title"]=item.t_title;
tasks[i]["t_content"]=item.t_content;
tasks[i]["t_startdate"]=item.t_startdate;
tasks[i]["t_enddate"]=item.t_enddate;
tasks[i]["t_parent"]=item.t_parent;
tasks[i]["t_timestamp"]=item.t_timestamp;
tasks[i]["t_sortorder"]=item.t_sortorder;
tasks[i]["t_user_id"]=item.t_user_id;
tasks[i]["t_edit"]=item.t_edit;
tasks[i]["t_source"]=item.t_source;
if ( i >data.tasks.length) return false;
maxtasks = data.tasks.length;
if(item.t_parent>0){
maxsubtasks++;
}
});
});
return true;
}
Everything is working just fine. But now I need some help from you guys, because I have to call this function in $(document).ready() and if the function "get_tasks()" is ready(this means, the array is filled with data), i want to build my learning planer. Because if the array isn't filled, I get error messages "undefined...blblabla".
how can this be solved?
here is the document.ready:
if(get_tasks(first_day,last_day) && get_tmp_data()) // IF THIS FUNCTION IS DONE
{
init_learnplaner() //THIS FUNCTINO SHOULD BE FIRED - JUST LIKE A CALLBACK IN JQUERY
}
THANKS IN ADVANCE
task[i] = {t_id: item.t_id, t_title: item.t_title,...}or maybe it is even sufficient to dotask[i] = item. – Felix Kling Dec 7 '10 at 9:42