Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
244
Get at rows/cells on UltraCombo in grid
posted

Using NetAdvantage Windows Forms 10.3 with TestAdvantage proxy for RFT 8.1.1.3.

I would like to get down to the rows/cells by index within an UltraCombo within a grid's column. The column with the header I'm looking at has its EditorComponent property set to an UltraCombo with the name GovernmentCodeUltraCombo as seen below. Starting with (generically) grid.DisplayLayout.Bands[0].Columns["My Column Name"].EditorComponent, we've tried many permunations of recognition methods and come up with nothing. Ideas?

 

Parents
No Data
Reply
  • 6729
    Verified Answer
    Offline posted

    Try This:

    UltraGridTestObject().GetNAProperty("DisplayLayout.Bands[0].Columns[My Column Name].EditorComponent.Rows[0].Cells[0].Text")

    You can also work directly with the Combo if it is dropped down and added to the object map:

    UltraComboTestAbject().GetNAProperty(Rows[0].Cells[0].Text)

    Let me know how that goes

     

    Regards,

    Ammar

Children