app.component
app.component
<app-root></app-root>
WebMAPService
to perform the following actions:Changed
models to be synchronized with the back-end's observable models.WebMAPService
creates the following JSON and send it to the back-end.Changed
array: since there are no models that were modified, the array is empty.
Actions
array: contains the list of actions that should be processed on the back-end.
ReceiverId
is the identification of the component interacted with.Changed
of the click.1{2"Added" : [],3"Changed" : [4{5"Text" : "Hello World",6"Visible" : true,7"Id" : "a2fb1871-2576-4dbe-9203-17dc4b13427a",8"MapperId" : "lbl",9"References" : {}10}11],12"Removed" : [],13"Actions" : []14}Copied!
WebMAPService
will process the JSON above, and synchronize the Front-Fnd's observable models with each of the models in theChanged
array. And finally, the components should be refreshed and show the new Hello World text.