MiPlatform에서 그리드(Grid)에 툴팁(tooltip)을 넣을 때 주의할 점

By | 6월 2, 2014

* 그리드의 특정 칼럼에 툴팁(tooltip)을 넣을 때에는 그리드의 OnMouseOver  이벤트핸들러를 사용한 후,
row, col 필터링을 사용한다.
* OnMouseOver 이벤트핸들러 안에 trace()로 로그를 찍으면 툴팁 기능이 작동하지 않는다 !!!
(왜 그런지는 나도 몰라 ㅠㅠ...)

 
 
* 툴팁 코딩 예시

function grd_OnMouseOver(obj,nPosX,nPosY,nRow,nCell,nPivotIndex)
{
     var text;
     if(nCell == 8){
         text = ds01.GetColumn(nRow, 'COL01');
     }else{
         text = '';
     }
     grd.ToolTipText = text;
}

 
 
 
 
 
 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments