changing the arrow-pointer to a hand-pointer hovering over icon

hi all:
When I hover over the icons, how can I change the cursor to a hand-pointer, because it currently remains an arrow-pointer?

var user = “”;
var cog = “”;

var conf = [{ id:“title”, fillspace:true },
{ id:“Icons Buttons”, width:200, template:user+cog}];

webix.ui({ rows:[

{ view:“datatable”, columns:conf, data:grid_data,
onClick:{
“fa-user”:function(){
webix.message("");
}
}
}
] });

I was able to get the cursor to change to a hand-pointer… Thank you