Hello,
I updated Infragistics version from 6.1 to 8.1. and got some problems. On the form I have WinGrid ("ugContacts") and context menu.
The following code worked for previous version:
{try { //"Delete" option in context menu needs to be enabled or disabled
{if (ugContacts.Selected.Rows.Count > 0)
else
displayContext.Show(ugContacts, e.X, e.Y);}}
{ErrorHelper.ShowApplicationError(ex);}}
But today with the version 8.1 I have always ugContacts.Selected.Rows.Count =0 regardless of where I click - on row or outside the grid. What is the problem here?
Thanks