How to keep a grid row highlighted in Janus Grid even if the user focus on another control?
Asked
Active
Viewed 541 times
2 Answers
0
Try this:
GridEX1.SetFocus
GridEX1.Row = 2
GridEX1.Col = 3
GridEX1.EditMode = jgexEditModeOn
GridEX1.SelStart = 0
GridEX1.SelLength = 1000

Rumplin
- 2,703
- 21
- 45
-
why .Row = 2 or .Col = 3? is just an example? – CRK Feb 28 '17 at 10:38
-
However I haven't any of those properties instead of edit mode – CRK Feb 28 '17 at 10:41
-
Yes, It was an example – Rumplin Mar 01 '17 at 11:50