• 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.

process grid rows behind a popup grid

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

  • process grid rows behind a popup grid

    see attached... i have a grid, and when i press a button a popup box is displayed to enter more data...i then hit the process button and want to loop thru the records selected in the grid behind the popup box. how can i do this..as when i do a getselectedchar(index: 'value') nothing returns
    Attached Files

  • #2
    Since your button is attached to your form (popup), the back-end process assumes that you want to act against your form. You need to use the SetWidget procedure to tell it that you want to act against your grid. Give your grid a "friendly" name (hover over the grid and click the settings icon) and then you can use SetWidget('myGridName') procedure. Then your GetSelectionXXX should have data.

    Comment


    • #3
      worked! thanks

      Comment

      Working...
      X