0

How to keep a grid row highlighted in Janus Grid even if the user focus on another control?

CRK
  • 337
  • 2
  • 10

2 Answers2

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
0
grid.HideSelection=HideSelection.Highlight;
Mostafa Bagheri
  • 366
  • 2
  • 7
  • 19