Iterate or loop through and EpicorUltraGrid

       for(int i = 0; i <= myGrid.Rows.Count; i++)        
                { 
                        int.Parse(myGrid.Rows[i].Cells["PackLine"].Value.ToString() );              
                }

Does anyone know how to iterate and loop through and epicor ultragrid and look at a particular column?


Below is what I have, I could do a count on the grid but will need to look at specific columns


 this.myGrid = (Epicor.Mfg.UI.FrameWork.EpiUltraGrid)csm.GetNativeControlReference("c752c30b-59b7-4ee9-ae0e-0e6016a2d676");


     if(myGrid.Rows.Count > 0)
         btnProcess.Enabled = true;
         else if(myGrid.Rows.Count <= 0)
         btnProcess.Enabled = false;




Thanks for you help.

The EpiUltragrid is still a basic grid underneath, same techniques that work on a basic Microsoft grid will work on an EpiUltraGrid.  A quick google will yield numerous examples.

Epicor controls are based on Infragistics controls which has the basics of Microsoft controls.  Each layer adds additional properties/methods with Epicor in some case turning off or ignoring some features.

Jim Kinneman
Encompass Solutions, Inc