[  ◎ dataset.목록 구하기  ]

 


    //1. form안에 존재 하는 Dataset 찾기
    //   Dataset은 inVisible component이기때문에   this.components로 해서는 검색이 안됨

 


    
function fn_GetDatasetList()
    {
        
for(var i=0; i < this.all.length; i++){
            if (
this.all[i] instanceof Dataset){
                trace(
this.all[i].name );
            }
        }
    }
 



    //2. div에 연결된  form안에 존재 하는 Dataset 찾기
    //   Dataset은 inVisible component이기때문에   this.components로 해서는 검색이 안됨
 


    
function fn_GetDivDatasetList()
    {
        
for(var i=0; i < divMain.all.length; i++){
            if (divMain.all[i]
instanceof Dataset){
                trace(divMain.all[i].name);
            }
        }
    }

 

Posted by 농부지기
,