Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
In property section we are creating a password basetype and then in mashup we are binding it with a textbox. But it is not getting binded. Why is that so?
Solved! Go to Solution.
Ok, I have this working now. I had to create a service which returned the password property as a string, and then bind the string to the textbox. The service I wrote was called "GetPasswordProperty" and contained this: var result = me.PasswordProperty;
I hope this helps!
Tori
For some reason, the mashup does not think the password basetype is compatible with string binding targets. I am going to investigate this further as it seems to be a bug.
Ok, I have this working now. I had to create a service which returned the password property as a string, and then bind the string to the textbox. The service I wrote was called "GetPasswordProperty" and contained this: var result = me.PasswordProperty;
I hope this helps!
Tori
Hi Tori,
I tried this and it worked. Thank you for your help.
Anupriya
Great, it was no trouble!