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

link|improve this question

57% accept rate
As a side note: You should create your object with task[i] = {t_id: item.t_id, t_title: item.t_title,...} or maybe it is even sufficient to do task[i] = item. – Felix Kling Dec 7 '10 at 9:42
feedback

4 Answers

You should be able to specify a callback in $.getJSON, which gets executed as soon the request is completed.

EDIT: You're already doing this, but why don't you just call the second code block from the end of the callback funciton in $.getJSON?

link|improve this answer
feedback

You can add a callback to the function:

function get_tasks(start_date, end_date, calback){

Then after populating the array in the function, call the callback function:

 if (callback) callback();

Now you can use the callback parameter to initialise the learning planner:

get_tasks(first_day, last_day, function() {
  init_learnplaner();
});
link|improve this answer
feedback

What I'm doing is usually something like this: simple, looks like beginner but it works :) :D

    <script type="text/javascript">
        var isBusy = true;
        $(document).ready(function () {
    // do your stuff here
            isBusy = false;
        });

        function exampleajax() {
            if(isBusy) return false;
            isBusy=true;
            $.ajax({
                async: true,
                type: 'POST',
                url: "???.asp",
                dataType: "jsonp",
                data: qs,
                error: function(xhr, ajaxOptions, thrownError){
                //console.log(xhr.responseText + " AJAX - error() " + xhr.statusText + " - " + thrownError);
                },
                beforeSend: function(){
                //console.log( "AJAX - beforeSend()" );
                },
                complete: function(){
                //console.log( "AJAX - complete()" );
    isBusy = false;
                },
                success: function(json){
                //console.log("json");
                }
            });
        }
</script>

hope this help you

link|improve this answer
feedback
up vote 0 down vote accepted

thank for yours answers guys :) the only problem why I can't use your code is:

i have 5 functions which get my data ($.getJSON). As i need all information to even start init_learnplaner, i can't realize this with your code (as i have to wait for all to be ready). :(

I just searched the internet now for hours now and then a found the simply jquery function .ajaxComplete().

jQuery knows all ajax-calls which are fired and tells you for each one if it is done.

check this out :) http://api.jquery.com/ajaxComplete/

works like a charme :)

hope this may help anybody too :)

thanks anyway :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.