how to clear a particular cell in a grid

How can we clear a particular cell in a grid after a wrong input has been given to the cell and a corresponding alert has been displayed?

You can set value of any cell as
    grid.cells(i,j).setValue(value);

where i - id of row
          j - index of column
          value - value which need to be set