Person Input Component Test

Client simulation

Change on the of elements in the client, they will be propogated to the "server"

Server simulation

Example JavaScript

(check your browser console to see the get/set of .value on the component)
let client = document.getElementById('client'),
    server = document.getElementById('server'),
    obj = client.value;

client.addEventListener('change', function(evt) {
    console.log("Example exchange", client.value);
    server.value = client.value;    
});