Hello, we just moved from a pretty old version of Infragistics WinForms (11.1) to the current one (21.1). Our QA noticed that their UI automation which used to access the Name property of the grid row is no longer populated. Instead the automation id is now populated with a 0-based row index (see pictures below).
Two questions:
Thanks for your help and best regards
Uwe
Here are the images:
IG11 situation:
IG21 situation:
If you are not using CodedUI, you can disable the UIAutomation for CodedUI support with the following code.
Infragistics.Win.UltraControlBase.UIAutomationForCodedUITestingEnabled = false;
Either way, let us know if this helps.
That worked - thank you!