I'm in DevExpress trying to do something rather simple. Get the value of a column in a DevExpress Gridview for a particular row a user selected. Should be simple but having no success. I can get the correct overall row count for the grid via -
grdA.VisibleRowCount;
But cannot seem to get what I am after - a particular column value for a selected row. Tried everything including:
grdA.GetSelectedFieldValues("ClientID");
no avail, returns zero count. Any suggestions?