for(int i = 0; i <= myGrid.Rows.Count; i++)
{
int.Parse(myGrid.Rows[i].Cells["PackLine"].Value.ToString() );
}
{
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.