Component image 
Feed Ordered Item Interface`1 component as seen in the Scene Inspector

The FeedOrderedItemInterface component is used as a template type item in data feed mappers in the Data Feeds system. This acts as an item in a list of items that can be reordered and moved around.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
HasData
|
Bool | The field to set when this interface is templated by a data feed for whether it has data or not. |
ItemName
|
IField`1<String> | The field to fill with the name of the interface item when it is templated via a data feed. For settings toggles, this would be the toggle name. |
ItemKey
|
IField`1<String> | The field to fill with the interfaces key if it is a dictionary type item. |
ItemDescription
|
IField`1<String> | The field to fill with the template description when template via a data feed. |
HasDescription
|
IField`1<Bool> | Whether the item when templated via a data feed has a description. |
DescriptionCleanup
|
Slot | If this interface doesn't have a description during templating via a data feed, then delete the slot specified. |
ItemIcon
|
IField`1<Uri> | The resource URL to fill with an image link/URI if the data feed item has an icon. |
HasIcon
|
IField`1<Bool> | Whether this template has an icon. This is set during duplication as a template via a data feed. |
IconCleanup
|
Slot | The slot to delete when this interface item doesn't have an icon when being duplicated as a template item by a data feed. |
View
|
SyncRef`1<IDataFeedView> | The data feed view that this template was instantiated by. Like a SingleFeedView. |
ParentContainer
|
FeedItemInterface | This template's parent container. If that template also has a parent and a child, then it recursively goes up the containers till it finds the root interface with a parent and a child interface, then instantiates that interfaces child interface and it's Nested items instead of just this interface. |
ChildContainer
|
Slot | This template's child template which it instanciates if it's part of a parent child structure of interfaces. |
NestedItems
|
list of FeedItemInterface.NestedItem | A list of extra data feed items to instantiate the same as this one with the same arguments, except each one can be Nested under this item. |
EnabledState
|
IField`1<Bool> | The enabled state of this feed interface item UI element. |
Value
|
IField`1<T> | The value field of this ordered item. Can write to the original feed valuem |
Formatting
|
IField`1<String> | How to format the value when it is displayed in text. |
IsFirst
|
IField`1<Bool> | The field to set to whether this item is currently first |
IsLast
|
IField`1<Bool> | The field to set to whether this item is currently last. |
MoveUpLabel
|
IField`1<String> | The field that represents this item's move up label. |
MoveDownLabel
|
IField`1<String> | The field that represents this item's move down label. |
MakeFirstLabel
|
IField`1<String> | The field that represents this item's make first label. |
MakeLastLabel
|
IField`1<String> | The field that represents this item's make last label. |
MoveUp
|
SyncDelegate`1<Action> | This field is populated with the Action that can be called to move the item up. |
MoveDown
|
SyncDelegate`1<Action> | This field is populated with the Action that can be called to move the item down. |
MakeFirst
|
SyncDelegate`1<Action> | This field is populated with the Action that can be called to make the item first. |
MakeLast
|
SyncDelegate`1<Action> | This field is populated with the Action that can be called to make the item last. |
HasMoveUp
|
IField`1<Bool> | The field to set to whether this item can currently be moved further up. |
HasMoveDown
|
IField`1<Bool> | The field to set to whether this item can currently be moved down. |
HasMakeFirst
|
IField`1<Bool> | The field to set to whether this item can currently be made first. |
HasMakeLast
|
IField`1<Bool> | The field to set to whether this item can currently be made last. |
Usage
This article or section is a Stub. You can help the Resonite Wiki by expanding it.