{"id":32803,"date":"2022-10-13T12:00:56","date_gmt":"2022-10-13T06:30:56","guid":{"rendered":"https:\/\/www.inogic.com\/blog\/?p=32803"},"modified":"2026-02-12T11:41:06","modified_gmt":"2026-02-12T06:11:06","slug":"use-of-ispropertyloading-property-in-pcf-control","status":"publish","type":"post","link":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/","title":{"rendered":"Use of isPropertyLoading property in PCF Control"},"content":{"rendered":"<p>Recently, while working with a virtual Power Apps Component Framework <a href=\"https:\/\/www.inogic.com\/blog\/2022\/04\/exclusive-sneak-peek-at-the-new-virtual-pcf-component\/\" target=\"_blank\" rel=\"noopener\">(PCF)<\/a> control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form.<\/p>\n<p>Let\u2019s have a look at the issue first. As seen in the below screenshot, you have added your custom PCF control to the First Name field of a Contact record. Kindly refer to this <a href=\"https:\/\/www.inogic.com\/blog\/2022\/10\/steps-to-use-onoutputchange-client-api-reference\/\" target=\"_blank\" rel=\"noopener\">blog<\/a> to have a look at it as well. Here you can see that the contact does have a First Name value, but your PCF control is not rendering the existing value during the initial form load.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-32804\" style=\"border: 1px solid #0a0a0a; padding: 1px; margin: 1px;\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg\" alt=\"PCF control\" width=\"372\" height=\"310\" srcset=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg 372w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink-300x250.jpeg 300w\" sizes=\"(max-width: 372px) 100vw, 372px\" \/><\/p>\n<p>This happens, because as per my observation the PCF controls end up loading first before the full form is loaded which causes an issue while loading the default values. So to overcome this, I will use a property that is passed through context known as isPropertyLoading.<\/p>\n<p>As per my observation, isPropertyLoading will return true until the form is completely loaded and the context can get actual field values instead of null.<\/p>\n<p>So I will add a conditional rendering based on the isPropertyLoading property. Where I will render our component only when isPropertyLoading is false. Below is how I will implement this \u2013<\/p>\n<pre class=\"lang:css gutter:true start:1\">\/**\r\n\r\n* It is called when some value in the property bag has been changed. This includes field values, data sets, global values such as the container height and width, offline status, and control metadata values such as label, visible, and more.\r\n\r\n* @param context The entire property bag is available to control via Context Object; It contains values as set up by the customizer mapped to names defined in the manifest, as well as utility functions\r\n\r\n* @returns ReactElement root react element for the control\r\n\r\n*\/\r\n\r\npublic updateView(context: ComponentFramework.Context&lt;IInputs&gt;): React.ReactElement {\r\n\r\n\/\/@ts-ignore\r\n\r\nlet isPropertyLoading:boolean = context.parameters.textField.isPropertyLoading;\r\n\r\nif(!isPropertyLoading){\r\n\r\nconst props: IStringChekerProps = {\r\n\r\ndefaultValue: context.parameters.textField.raw!,\r\n\r\nonInputChanged: (event: React.FormEvent&lt;HTMLInputElement | HTMLTextAreaElement&gt;, newValue?: string | undefined) =&gt; {\r\n\r\nthis.currentFieldValue = newValue!;\r\n\r\nthis.isValidString = this.validateStringField(this.currentFieldValue);\r\n\r\nthis.notifyOutputChanged();\r\n\r\n}\r\n\r\n}\r\n\r\nreturn React.createElement(\r\n\r\nStringCheker, props\r\n\r\n);\r\n\r\n}\r\n\r\nelse {\r\n\r\nreturn React.createElement(\"div\");\r\n\r\n}\r\n\r\n}<\/pre>\n<p>What I\u2019ve done is we are returning the empty element by return React.createElement(&#8220;div&#8221;); when isPropertyLoading is true and return the actual component only when the isPropertyLoading is false. After this change, the control will load normally like the below \u2013<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-32805\" style=\"border: 1px solid #0a0a0a; padding: 1px; margin: 1px;\" src=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/2PCF-control.jpeg\" alt=\"PCF control\" width=\"371\" height=\"309\" srcset=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/2PCF-control.jpeg 371w, https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/2PCF-control-300x250.jpeg 300w\" sizes=\"(max-width: 371px) 100vw, 371px\" \/><\/p>\n<p>This is how we can use isPropertyLoading to prevent displaying empty PCF values even though data exists.<\/p>\n<h2><strong>FAQs<\/strong><\/h2>\n<ul>\n<li><strong>What is isPropertyLoading in PCF?<\/strong><\/li>\n<\/ul>\n<p>isPropertyLoading is a property available inside context.parameters.&lt;fieldName&gt; in a Power Apps PCF control.<\/p>\n<p>It indicates whether the field data in the property bag is still loading.<\/p>\n<ul>\n<li>Returns true \u2192 Field data is still being initialized<\/li>\n<li>Returns false \u2192 Field data is available<\/li>\n<\/ul>\n<p>You can use this property to handle PCF lifecycle timing issues and prevent null rendering.<\/p>\n<ul>\n<li><strong>Why does context.parameters.raw return null in PCF?<\/strong><\/li>\n<\/ul>\n<p>If context.parameters.&lt;field&gt;.raw returns null, it usually means the form has not completed loading the field data yet.<\/p>\n<p>This is a common issue in model-driven app PCF controls, especially during the first execution of updateView().<\/p>\n<p>Using isPropertyLoading ensures you access raw only after the property bag is fully initialized.<\/p>\n<ul>\n<li><strong>How do you fix PCF default value not rendering?<\/strong><\/li>\n<\/ul>\n<p>If your PCF default value is not rendering, you can:<\/p>\n<ol>\n<li>Check parameters.&lt;field&gt;.isPropertyLoading<\/li>\n<li>Render your React component only when it is false<\/li>\n<li>Return an empty container while it is true<\/li>\n<\/ol>\n<p>This prevents the control from rendering before the field value becomes available.<\/p>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [{\n    \"@type\": \"Question\",\n    \"name\": \"What is isPropertyLoading in PCF?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"isPropertyLoading is a property available inside context.parameters.<fieldName> in a Power Apps PCF control.\nIt indicates whether the field data in the property bag is still loading.\n\u2022\tReturns true \u2192 Field data is still being initialized\n\u2022\tReturns false \u2192 Field data is available\nYou can use this property to handle PCF lifecycle timing issues and prevent null rendering.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"Why does context.parameters.raw return null in PCF?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"If context.parameters.<field>.raw returns null, it usually means the form has not completed loading the field data yet.\nThis is a common issue in model-driven app PCF controls, especially during the first execution of updateView().\nUsing isPropertyLoading ensures you access raw only after the property bag is fully initialized.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How do you fix PCF default value not rendering?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"If your PCF default value is not rendering, you can:\n1.\tCheck context.parameters.<field>.isPropertyLoading\n2.\tRender your React component only when it is false\n3.\tReturn an empty container while it is true\nThis prevents the control from rendering before the field value becomes available.\"\n    }\n  }]\n}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/\">Read More: Use of isPropertyLoading property in PCF Control &raquo;<\/a><\/span><\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[44,1929,2361],"tags":[1941],"class_list":["post-32803","post","type-post","status-publish","format-standard","hentry","category-power-apps","category-pcf","category-technical","tag-pcf-control"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Inogic\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta property=\"og:description\" content=\"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"372\" \/>\n\t\t<meta property=\"og:image:height\" content=\"310\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-10-13T06:30:56+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-12T06:11:06+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inogicindia\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@inogic\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg\" \/>\n\t\t<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t\t<meta name=\"twitter:data1\" content=\"Inogic\" \/>\n\t\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#blogposting\",\"name\":\"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks\",\"headline\":\"Use of isPropertyLoading property in PCF Control\",\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/1PCF-control-ink.jpeg\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#articleImage\",\"width\":372,\"height\":310,\"caption\":\"PCF control\"},\"datePublished\":\"2022-10-13T12:00:56+05:30\",\"dateModified\":\"2026-02-12T11:41:06+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#webpage\"},\"articleSection\":\"Microsoft PowerApps, PCF, Technical, PCF Control\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/#listItem\",\"name\":\"Microsoft PowerApps\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/#listItem\",\"position\":2,\"name\":\"Microsoft PowerApps\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/pcf\\\/#listItem\",\"name\":\"PCF\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/pcf\\\/#listItem\",\"position\":3,\"name\":\"PCF\",\"item\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/pcf\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#listItem\",\"name\":\"Use of isPropertyLoading property in PCF Control\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/#listItem\",\"name\":\"Microsoft PowerApps\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#listItem\",\"position\":4,\"name\":\"Use of isPropertyLoading property in PCF Control\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/category\\\/power-apps\\\/pcf\\\/#listItem\",\"name\":\"PCF\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"By Inogic\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/inogic-logo.png\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#organizationLogo\",\"width\":1000,\"height\":325,\"caption\":\"inogic logo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/inogicindia\",\"https:\\\/\\\/twitter.com\\\/inogic\",\"https:\\\/\\\/www.instagram.com\\\/inogicindia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCM4V7ousgLSu1hbOEv4DUuQ\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/inogicindia\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/\",\"name\":\"Inogic\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Inogic\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#webpage\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/\",\"name\":\"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks\",\"description\":\"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\\u2019s have a look at the issue first. As seen in the below screenshot, you have\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/2022\\\/10\\\/use-of-ispropertyloading-property-in-pcf-control\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/author\\\/inogic-2\\\/#author\"},\"datePublished\":\"2022-10-13T12:00:56+05:30\",\"dateModified\":\"2026-02-12T11:41:06+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/\",\"name\":\"Microsoft Dynamics 365 CRM Tips and Tricks\",\"alternateName\":\"Inogic\",\"description\":\"By Inogic\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.inogic.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have","canonical_url":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#blogposting","name":"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks","headline":"Use of isPropertyLoading property in PCF Control","author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#articleImage","width":372,"height":310,"caption":"PCF control"},"datePublished":"2022-10-13T12:00:56+05:30","dateModified":"2026-02-12T11:41:06+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#webpage"},"isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#webpage"},"articleSection":"Microsoft PowerApps, PCF, Technical, PCF Control"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.inogic.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/#listItem","name":"Microsoft PowerApps"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/#listItem","position":2,"name":"Microsoft PowerApps","item":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/#listItem","name":"PCF"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/#listItem","position":3,"name":"PCF","item":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#listItem","name":"Use of isPropertyLoading property in PCF Control"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/#listItem","name":"Microsoft PowerApps"}},{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#listItem","position":4,"name":"Use of isPropertyLoading property in PCF Control","previousItem":{"@type":"ListItem","@id":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/#listItem","name":"PCF"}}]},{"@type":"Organization","@id":"https:\/\/www.inogic.com\/blog\/#organization","name":"Microsoft Dynamics 365 CRM Tips and Tricks","description":"By Inogic","url":"https:\/\/www.inogic.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2023\/02\/inogic-logo.png","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#organizationLogo","width":1000,"height":325,"caption":"inogic logo"},"image":{"@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/inogicindia","https:\/\/twitter.com\/inogic","https:\/\/www.instagram.com\/inogicindia\/","https:\/\/www.youtube.com\/channel\/UCM4V7ousgLSu1hbOEv4DUuQ","https:\/\/www.linkedin.com\/company\/inogicindia"]},{"@type":"Person","@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author","url":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/","name":"Inogic","image":{"@type":"ImageObject","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/839d9ae7d2b941d2d09e91df322267a429821f2ce5494302b53bd5ca3679f1a0?s=96&d=mm&r=g","width":96,"height":96,"caption":"Inogic"}},{"@type":"WebPage","@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#webpage","url":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/","name":"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks","description":"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.inogic.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/#breadcrumblist"},"author":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"creator":{"@id":"https:\/\/www.inogic.com\/blog\/author\/inogic-2\/#author"},"datePublished":"2022-10-13T12:00:56+05:30","dateModified":"2026-02-12T11:41:06+05:30"},{"@type":"WebSite","@id":"https:\/\/www.inogic.com\/blog\/#website","url":"https:\/\/www.inogic.com\/blog\/","name":"Microsoft Dynamics 365 CRM Tips and Tricks","alternateName":"Inogic","description":"By Inogic","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.inogic.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Microsoft Dynamics 365 CRM Tips and Tricks - By Inogic","og:type":"article","og:title":"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks","og:description":"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have","og:url":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/","og:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg","og:image:secure_url":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg","og:image:width":372,"og:image:height":310,"article:published_time":"2022-10-13T06:30:56+00:00","article:modified_time":"2026-02-12T06:11:06+00:00","article:publisher":"https:\/\/www.facebook.com\/inogicindia","twitter:card":"summary_large_image","twitter:site":"@inogic","twitter:title":"Use of isPropertyLoading property in PCF Control - Microsoft Dynamics 365 CRM Tips and Tricks","twitter:description":"Recently, while working with a virtual Power Apps Component Framework (PCF) control in a model-driven app, you may encounter a situation where your PCF control does not load the bound field data on the first load of the form. Let\u2019s have a look at the issue first. As seen in the below screenshot, you have","twitter:creator":"@inogic","twitter:image":"https:\/\/www.inogic.com\/blog\/wp-content\/uploads\/2022\/10\/1PCF-control-ink.jpeg","twitter:label1":"Written by","twitter:data1":"Inogic","twitter:label2":"Est. reading time","twitter:data2":"3 minutes"},"aioseo_meta_data":{"post_id":"32803","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2023-02-02 08:12:54","updated":"2026-02-12 06:17:12","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/power-apps\/\" title=\"Microsoft PowerApps\">Microsoft PowerApps<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/\" title=\"PCF\">PCF<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tUse of isPropertyLoading property in PCF Control\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.inogic.com\/blog"},{"label":"Microsoft PowerApps","link":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/"},{"label":"PCF","link":"https:\/\/www.inogic.com\/blog\/category\/power-apps\/pcf\/"},{"label":"Use of isPropertyLoading property in PCF Control","link":"https:\/\/www.inogic.com\/blog\/2022\/10\/use-of-ispropertyloading-property-in-pcf-control\/"}],"_links":{"self":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/32803","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/comments?post=32803"}],"version-history":[{"count":0,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/posts\/32803\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/media?parent=32803"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/categories?post=32803"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inogic.com\/blog\/wp-json\/wp\/v2\/tags?post=32803"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}