Changeset 10844

Show
Ignore:
Timestamp:
10/15/07 21:39:07 (10 months ago)
Author:
bill
Message:

Fixes #4731: test_Tree.html error when clicking root

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/test_Tree.html

    r10726 r10844  
    3535                labelAttr="name" label="Continents"> 
    3636                <script type="dojo/method" event="onClick" args="item"> 
    37                         alert("Execute of node " + continentStore.getLabel(item) 
    38                                 +", population=" + continentStore.getValue(item, "population")); 
     37                        if(item){ 
     38                                alert("Execute of node " + continentStore.getLabel(item) 
     39                                        +", population=" + continentStore.getValue(item, "population")); 
     40                        }else{ 
     41                                alert("Execute on root node"); 
     42                        } 
    3943                </script> 
    4044                <script type="dojo/method" event="getIconClass" args="item">