jf-roku/components/data/ExtrasData.xml
2022-03-13 08:46:03 +00:00

27 lines
755 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<!-- The "ContentNode" for displaying the actual Extras Item -->
<component name="ExtrasData" extends="ContentNode">
<script type="text/brightscript">
<![CDATA[
sub setfields()
datum = m.top.json
m.top.id = datum.id
m.top.subTitle = datum
m.top.labelText = datum.Name
end sub
sub setPoster()
end sub
]]>
</script>
<interface>
<field id="image" type="node" />
<field id="Type" type="string" />
<field id="subTitle" type="string" />
<field id="labelText" type="string" />
<field id="posterUrl" type="string" />
<field id="imageWidth" type="integer" value="234" />
<field id="json" type="assocarray" />
</interface>
</component>