Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hello, I have a thing with a NUMBER property (let's call it prop) and a service (let's call sumProp) which sums prop value with a input value.
I created a service which returns a HTML basetype result like this:
html += '<p>Value: <input id="ValueInput" type="text" name="user"></p>';
html += '<button>Set</button>';
I would like that, on button click, will be triggered service sumProp where the input value is the value in <input id="ValueInput" type="text" name="user">
Is it possible to do this?