function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Stefan Senegeac D.Stefan Senegeac D. 

Visualforce Table copy values from one column to the other without a relationship

Hello,
I want to display a table with two columns; 
on the left there is my custom data which is a class:
Class A {
Integer Id;
String Name;
}
  and on the right the same number of rows of User Lookups as the number of records as my objects. 
The user then fills the lookups how he sees fit and clicks a 'Save' button which will update a custom field on the Users with the corresponding value from the records on the left. 
Main problem from what I figured out so far is that I don't have a direct(lookup) relationship between the two entities or a dummy sobject. I don't want to create additional custom objects if possible. So far I've tried to create a sub-class with User type and my initial class type and try to do something

Thank you.