본문 바로가기

잡동사니

toastui grid getselectedRows 구현

반응형


function getSelectedRows(){
 
  var a = grid.getSelectionRange();
  var c = []; 
 
  if(!a){ 
    i = grid.getFocusedCell();
    d = {'rowKey':i.rowKey}; 
    c.push(d); 
    
  }else{
    var s = a.start[0];
      var e = a.end[0]; 
    
      for(i=s; i<=e; i++){   
        var d = {'rowKey': i}; 
        c.push(d);  
      }


  }

  
 
 if(c.length>0) return c;
 else return null;
}

toastui grid는 정말 좋은데. 
현재 드래그한 셀들의 행번호를 반환해주는 함수는 따로 없어서 만들었다. 
rowKey를 반환해 주는 함수이다. 

 

반응형