본문 바로가기

Paul Work/Tool

[MiPlatform]MiPlatform에서 ToolTip을 이용하여 보이지 않는 데이터 처리

function grd_list_OnMouseOver(obj,nPosX,nPosY,nRow,nCell)
{   
 //해당 Row, Cell에 마우스가 왔을때만 보여주게 처리
  if( (parseInt(nRow) > -1 && parseInt(nCell) == 4) ||
      (parseInt(nRow) > -1 && parseInt(nCell) == 5) ||
      (parseInt(nRow) > -1 && parseInt(nCell) == 6)
    )
  {
    grd_list.ToolTipText = grd_list.GetCellValue(nRow,nCell);
  }
  else
  {
    //그외에는 아무것도 보여주지 않게 처리
    grd_list.ToolTipText = "";
  }
}