Datalinking against properties in two ViewModels?

Datalinking against properties in two ViewModels?

I can not seem to get it right with datalinking and create a different type of datalinking. Any idea to get it to work?
  
  1. # Csharp
  2.     [Serializable]
  3.     public class BokingViewModel
  4.     {
  5.         public AccountViewModel AccountViewModel { getset; }
  6.         public TravelViewModel TravelViewModel { getset; }
  7.         public int Ordernr{ getset; }
  8.     }
  9. # Javascript
  10.       var customer = {  
  11.       // Kunduppgifter
  12.       $("#form1").each(function (i) {
  13.            $("fieldset.contact input"this)
  14.                         .link(customer, { 
  15.                                     "AccountViewModel.Firstname", "Firstname"
  16.                          });
  17.       });
  18.       $(customer).data("Firstname", "Test");