I am trying to find the number of selected rows in Cash Receipts Entry > A/R Receipt > Invoice Selection, for a customization I am working on. The same of the grid is eugInvoices, but when I use that name, I get the below error.
Because it is a native control, youll need to get the guid. Do it like this:
myGrid = (Ice.Lib.Framework.EpiUltraGrid)csm.GetNativeControlReference("GUID of the grid you are working with");
That worked. Thanks.