I have a Devexpress Data Grid with a number of rows loaded.
The following properties are set:
MultiSelectNode=CheckBoxRowSelect
MultiSelect=True
I have a function that iterates through all the Rows and checks, gridview1.IsRowSelected(x) = True.
However the problem is, that even with the checkbox selected is checked it never shows as true.
The following code returns 0
Debug.Print(GridView1.GetSelectedRows().Count)
Is there an easy way to check if the checkbox is checked?
Thanks