I have a table within a form that has many identical rows. At the beginning of each row is a text field and a button that creates a cfwindow so that the user can browse an inventory and select a single item. Then I need that item's name and ID to get sent back to the main page and populate the text box. The main page form works fine. The cfwindow works fine (search, display, etc..). I cannot figure out a way to get the variable being set in the cfwindow back to the main page and just populate the text field for that specific row and not redraw the entire page. I can't even get the cfwindow to access any variable on the main page and I thought that it was just a floating div and would have access to all of the main page variables that are set. This is one row of the main page (the index is for looping through to create unique names for each row variables): .
in the cfwindow, a query populates a list of items, each with a radio button. User needs to select one and it needs to return that item's ID back to the main page for that row:
Any help/guidance is greatly appreciated.