YUI Library JavaScript DHTML






ProfileViewer: Profiling Calendar
 
 
 
 
 






  body {
    margin:1em;
  }



Simple Profiling of a YUI Calendar Control Instance


In this simple example, the ProfilerViewer Control is used to profile an instance of the YUI Calendar Control. Interact with the calendar interface, then activate the ProfilerViewer to see the profile data. You can then continue to interact with the calendar, refreshing the data in the ProfilerViewer to update the profiling display.









  
  YAHOO.namespace("example.calendar");
  YAHOO.example.calendar.init = function() {
    //instantiate Calendar:
    YAHOO.example.calendar.cal1 = new YAHOO.widget.Calendar("cal1","cal1container");
    
    //profile the instance, labeling it "cal1":
    YAHOO.tool.Profiler.registerObject("cal1", YAHOO.example.calendar.cal1 );
    
    //render the Calendar; after this line, the Calendar is on the page,
    //ready to be used; all the while, Profiler will be tracking the time
    //spent in each function:
    YAHOO.example.calendar.cal1.render();
    
    YAHOO.example.pv = new YAHOO.widget.ProfilerViewer("profiler", {
      showChart: true, //we want to see the pretty charts!
      base:"yui_2.7.0b-lib/", //path to YUI assets; if you leave this
                 //blank, files will be drawn from 
                 //yui.yahooapis.com.
      //path to Charts Control swf file; if left blank, we'll
      //use the one from yui.yahooapis.com; this path is relative
      //to your current HTML page:
      swfUrl: "yui_2.7.0b-lib/charts/assets/charts.swf",
      
      //In this case we only want to see functions that have
      //been called at least once and that have the "cal1"
      //label associated with them in Profiler:
      filter: function(o) {
        //Only show functions that have been called at least
        //once and that are part of the cal1 object:
        return ((o.calls > 0) && (o.fn.indexOf("cal1") > -1));
      }
    });
  }
  
  //Run the calendar.innit function only when the Dom is fully loaded:
  YAHOO.util.Event.onDOMReady(YAHOO.example.calendar.init);
  


   
  
yui_2.7.0b.zip( 4,431 k)