Hi, I started learning PCF and trying to develop a simple field control which fires a Web API request to get some related data and display it in a text box. I followed some guidelines to set up debugging via Fiddler but it is not working. Redirection to my local file doesn't happen, but I see in dev tools a domain with the name pcf_tools_652ac3f36e1e4bca82eb3c1dc44e6fad. Under that one, I can see my .ts file, although not completely the same as my local (I guess because I use async/await which is ES6 feature).
1. Any idea why Fiddler redirection isn't working? I tested URL til both bundle.js and indes.ts files in Autoresponder, they are a match.
2. Can someone point me in the right direction regarding source maps and how is this pcf_tools... generated?
3. Web API request doesn't seem to be visible in network traffic, why is that? (or my code didn't come so far, but I don't see any errors generated in developer tools)
4. Can I update the content of my DOM elements which I added in Init method from a Web API callback?
Thanks in advance