• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

How to access grid column from a search grid

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to access grid column from a search grid

    I have an edit grid which has a row icon to search for an item number.
    The search app returns the item number to the edit grid column correctly.
    How do I retrieve the item number from the edit grid after it was correctly placed?

  • #2
    Since the app already returns you the item number and you are already doing something with it...I would suggest also creating an app variable "returnedItem" and setting the value to the returned item.

    SetAppVar('returnedItem', ITEM_RETURNED_FROM_APP);

    Comment

    Working...
    X