RealGrid2 Guide
Grid components
Cursor

Cursor

You can specify the mouse cursor in the DataColumn.cursor property. Point the mouse pointer to a column in the grid below to see how the cursor changes for each column.

The values that can be specified for cursor comply with the W3C standard ( http://www.w3.org/wiki/CSS/Properties/cursor (opens in a new tab) ). uri is not supported.

//css
.orange-column {
   background: #f57c00
}
 
.cursor {
   cursor: crosshair;
}
 
//columns
{
     name: "KorName",
     fieldName: "KorName",
     width: "60",
     header: {
       text: "name"
     },
     styleName: "orange-column cursor"
   },
   ...