Hi,
I have a gridControl with 1 Column. I have used the column as a multiline column to enter two sets of data, one below another using Environment.NewLine.
For Example
-----------------------------------
Row | Details
-----------------------------------
1 | a
| b
-----------------------------------
2 | a
| b
-----------------------------------
If I click on a row, the focus changes and I can see only the second line (i.e., b) and an empty line instead of the first line (a) and second line (b) as shown below
-----------------------------------
Row | Details
-----------------------------------
1 | b
| <Empty Line>
-----------------------------------
2 | a
| b
-----------------------------------
Is there a way to disable the click so that when I click on the column it does not change its view?
Thanks in advance!