
Announcements
So I'm using the PCF dataset component called "Url Image List Control" by Ivan Ficko from the PCF Gallery ...
https://pcf.gallery/url-image-list-control/
It works great. Displays the images pointed to by a SingleLine.Text column containing the Url to the image in the table to which it is added.
So, I want that Url to be the "EntityImageURL" column, which is one of the "Supporting columns" that get added when you add an Image column to a table ...
In the ControlManifest.Input.xml file, I have the Url property set with usage="bound", so as to be able to pick the "EntityImageURL" column when adding the control to the table ...
However, the "EntityImageURL" column does not appear on the picklist. I think this is because this "Supporting column" is not quite of the right type to match with one of the allowable types of column. Likewise, if I switch to usage="input" and then manually enter the "EntityImageURL" column name, I get an error.
So, I am not able to pull the URL of the Image of an Image column from the column designed for the purpose ie that has the image URL in it.
Next I tried to construct the URL from the available data in the
That gets me almost there ...
I can construct the URL from the known text
I worked it out.
Just needed to use the <property> element in the ControlManifest.Input.xml file, rather than the <property-set> element. <property> lets you pass any values unbound (usage="input") to any column, eg, text, like "ea_image", as I required.
Sorry, newbie!