I have a Tab GUI Extension with a form and a text field. I would like to save the values of the form field to ApplicatioData. I was thinking of an ‘Update’ button calling an Anguilla method.
Is there an Anguilla method to do this? I don’t see any method in Anguilla for this. Start of the code:
var c = $display.getItem();
var uri = c.getId();
Anguilla doesn’t expose any (webservice or JavaScript) methods to generically modify ApplicationData. You will have to provide your own server-side code to set the ApplicationData.
So in my last need for this I wrote a simply WCF web service that sets the application data:
Wired it up in the configuration file of my model:
And then call this web method from my
command._execute