Loading...

Creating a Textbox PCF Control

Image

In our previous post, we created a simple PCF control that displayed an HTML label. In this post, we will look at how to make the control a text box. A very basic example of adding an HTML DOM input textbox can be found here. The code we will add to the init function in our index.ts file: var x = document.createElement("INPUT"); x.setAttribute("type", "text"); x.setAttribute("value", "Hello World!"); container.appendChild(x); On saving, … Continue reading Creating a Textbox PCF Control

The post Creating a Textbox PCF Control appeared first on Carl de Souza.

Learn more
Author image

Carl de Souza - Software + Imagination

Hello! I’m Carl de Souza, a developer and architect focusing on Microsoft Dynamics 365, BI, Web, Cloud, AI and Data Science.

Share post:

Related

Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!

* Yes, I agree to the privacy policy