wangxuebin Posted August 11, 2012 Posted August 11, 2012 How to make the cursor in a column in an unidbgrid become the shape of a hand?By default,this cursor is an arrow. Thanks. wxb_km Quote
zilav Posted August 11, 2012 Posted August 11, 2012 Wrap text in that column with appropriate CSS style in DataSet.OnGetText event, something like this Value := '<span style="cursor: hand">' + Value + '</span>'; I wrote it from my head, check CSS reference for exact properties. Quote
wangxuebin Posted August 11, 2012 Author Posted August 11, 2012 seems ought to be Value := '<span style="cursor:pointer">' + Value + '</span>'; this works! Thank you. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.