Selected row of Grid to be listed in list field

I have a grid of user names. I wish to select a row and see this user name appear in an adjacent list field.

 

Ideally I want to select a number of users in the grid, and have all my selections displayed in the list field. But first things first!

 

Any sugestions?

Tagged:

Comments

  • Hello Barrie,

     

    You can use  ProcessContext.UserInput[Column Index] on "When User selects row"  to get the selected row data of a grid.

     

    Local.Text1 = ProcessContext.UserInput[0];

     

     

  • If you do not want to use the index number to find a column you can always use the Fields collection.

     

    [OnSelect Event of Grid named grdMyGrid]

     

    Local.VariableName =  Fields.grdMyGrid.SelectedRow["MyColumnName"].ToString();