Spread ASP.NET 17
Spread for ASP.NET 17 Product Documentation / Client-Side Scripting Reference / Scripting Overview / Some Simple Uses of Client Scripting / Finding the Cell Under the Cursor
In This Topic
    Finding the Cell Under the Cursor
    In This Topic

    You can use client-side scripting to return which cell the mouse is over in the onmousemove or onmousehover events. This example changes the background color of the cell to red.

    JavaScript
    Copy Code
    <script language="javascript">
      window.onload = function (){
        FpSpread1.onmousemove = test;
      }
    
      function test() {
        var col = event.srcElement.cellIndex;
        var row = event.srcElement.parentElement.rowIndex - 1;
        //we have a hidden row used for internal use
        if((!isNaN(col)) && (!isNaN(row)) && (0<=row) && (row<FpSpread1.GetRowCount())) {
          var cell = FpSpread1.GetCellByRowCol(row,col);
          cell.style.backgroundColor = "red";
        }
      }
    </script>