Hello All!
In a form would like to have two views. The first view (view_1) is a list view that is populated on form initiation with rows of data from a SQL db table. Now when the user single clicks any row, I would like to append that row to another view (view_2) on the same form. I would like for the user to be able to do this as many times as they liked. Each time the newly selected row is appended in the view_2.
I have been able to add one row from view_1 to view_2, but when I click a second row in view_1, the newly selected row replaces the first selected row in view_2.
Currently I set up both view_1 and view_2 to use the same smart object data source. In the form I created a rule, When view_1 executed item click, then transfer data (configure = view_2; item1 = item1, item2 = item2, item3 = item3)
Any help would be much appreciated.