Hello,
When importing in PowerApps model driven app, the property does not showup, only property-set shows up , and I noticed for property-set with of-type="OptionSet" does not seem work.
here is the code of the manifest:
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="FDNControl" constructor="CustomTimeline" version="0.0.1" display-name-key="TS_DataSetGrid_Display_Key" description-key="TS_DataSetGrid_Desc_Key" control-type="standard">
<!--<property name="title" display-name-key="TitleGridProperty_Display_Key" description-key="TitleGridProperty_Desc_Key" of-type="SingleLine.Text" usage="input" required="true" /> -->
<!-- dataset node represents a set of entity records on CDS; allow more than one datasets -->
<property name="DisplayDate" display-name-key="Display Date" description-key="Type true or false" of-type="SingleLine.Text" usage="input" required="true" />
<property name="JsonColorConfig" display-name-key="JSON color config" description-key="JSON object used to render color according to color event field." of-type="SingleLine.Text" usage="input" required="false" />
<data-set name="dataset" display-name-key="DataSetGridProperty_Display_Key" cds-data-set-options="displayCommandBar:false;displayViewSelector:false;displayQuickFindSearch:false">
<!-- 'property-set' node represents a unique, configurable property that each record in the dataset must provide. -->
<property-set name="ColorField" display-name-key="Event color field" description-key="Setup the event colorfield , only OptionSet Supported." of-type="OptionSet" usage="bound" required="false" />
<property-set name="NameField" display-name-key="NameField" description-key="The field name" of-type="SingleLine.Text" usage="bound" required="true" />
<property-set name="DescField" display-name-key="DescField" description-key="The field description" of-type="SingleLine.Text" usage="bound" required="false" />
<property-set name="DateField" display-name-key="DateField" description-key="The sorted field" of-type="DateAndTime.DateAndTime" usage="bound" required="true" />
</data-set>
<resources>
<code path="index.ts" order="1"/>
<css path="css/style.css" order="2" />
<resx path="strings/FDN_timeline.1033.resx" version="1.0.0" />
<!-- UNCOMMENT TO ADD MORE RESOURCES
<css path="css/Timeline.css" order="1" />
<resx path="strings/Timeline.1033.resx" version="1.0.0" />
-->
</resources>
<!-- UNCOMMENT TO ENABLE THE SPECIFIED API
<feature-usage>
<uses-feature name="Device.captureAudio" required="true" />
<uses-feature name="Device.captureImage" required="true" />
<uses-feature name="Device.captureVideo" required="true" />
<uses-feature name="Device.getBarcodeValue" required="true" />
<uses-feature name="Device.getCurrentPosition" required="true" />
<uses-feature name="Device.pickFile" required="true" />
<uses-feature name="Utility" required="true" />
<uses-feature name="WebAPI" required="true" />
</feature-usage>
-->
</control>
</manifest>