Hi, I would like to know if there is a way of changing the cursor style on mouser over / out of the grid.
I have tried with js, but it doesnt work.
thankss anyway
Hi, I would like to know if there is a way of changing the cursor style on mouser over / out of the grid.
I have tried with js, but it doesnt work.
thankss anyway
Hi, yes you can change cursor type with help of CSS.
you need to to your code the sample like this:
[code]
div.gridbox table.obj td{
cursor:url(mycursor.gif), default !important;
}
div.gridbox table.hdr td div.hdrcell {
cursor:url(mycyrsor.gif), default !important;
}
</style>[/code]
many thanks Sematik. Its works.