Difference between revisions of "Content Page Object"
(18 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
"headline": "Page Headline", | "headline": "Page Headline", | ||
"background": "http://link.to.image", | "background": "http://link.to.image", | ||
+ | "area": "0,0,12,6", | ||
"offset": "0,0,0,0", | "offset": "0,0,0,0", | ||
"position": "page:0", | "position": "page:0", | ||
+ | "template": null, | ||
"items": [], | "items": [], | ||
"action": null, | "action": null, | ||
Line 53: | Line 55: | ||
| <code>background</code> || <code>string</code> || <code>null</code> || No || data-sort-value=0|0.1.0 || | | <code>background</code> || <code>string</code> || <code>null</code> || No || data-sort-value=0|0.1.0 || | ||
The background image that is used if no other background is set at lower levels. This property has no effect if the content is displayed in a panel or the content page is displayed as overlay/underlay page. | The background image that is used if no other background is set at lower levels. This property has no effect if the content is displayed in a panel or the content page is displayed as overlay/underlay page. | ||
+ | |- | ||
+ | | <code>area</code> || <code>string</code> || <code>null</code> || No || data-sort-value=156|'''0.1.156''' || | ||
+ | The area used by insert pages in the format <code>"x,y,w,h"</code>. This property only has an effect if the content page is set as an insert page (i.e. it is set inside the <code>inserts</code> property of the corresponding content root object). It can be used to integrate created content items into the page and specifies the area in which the items can be positioned. | ||
+ | |||
+ | The <code>x</code> value can go from <code>0</code> to <code>11</code> (or from <code>0</code> to <code>7</code> for panels).<br/> | ||
+ | The <code>y</code> value can go from <code>0</code> to <code>5</code>.<br/> | ||
+ | The <code>w</code> value can go from <code>1</code> to <code>12</code> (or from <code>1</code> to <code>8</code> for panels).<br/> | ||
+ | The <code>h</code> value can go from <code>1</code> to <code>6</code>.<br/> | ||
+ | |||
+ | All values are absolute integers. | ||
+ | |||
+ | '''Note: To use this property, the <code>position</code> property must also be set, otherwise this property is ignored. If a template object also specifies an area, the possible <code>x</code>, <code>y</code>, <code>w</code>, and <code>h</code> values are bounded to these area values. If the created content items cannot be integrated (e.g. there is no space), the content page will be inserted without them.''' | ||
|- | |- | ||
| <code>offset</code> || <code>string</code> || <code>null</code> || No || data-sort-value=0|0.1.0 || | | <code>offset</code> || <code>string</code> || <code>null</code> || No || data-sort-value=0|0.1.0 || | ||
Line 69: | Line 83: | ||
|- | |- | ||
| <code>position</code> || <code>string</code> || <code>null</code> || No || data-sort-value=156|'''0.1.156''' || | | <code>position</code> || <code>string</code> || <code>null</code> || No || data-sort-value=156|'''0.1.156''' || | ||
− | The desired position of an insert page in format <code>"page:{PAGE_INDEX}"</code>, <code>"offset:{INSERT_OFFSET}"</code>, or <code>"context:{CONTEXT_ID}"</code>. This property only has an effect if the content page is set as an insert page (i.e. it is set inside the <code>inserts</code> property of the corresponding content root object). If a page index is indicated, the content page is inserted once at a specific page index (e.g. <code>"page:0"</code> inserts the content page as first page, <code>"page:1"</code> inserts the content page as second page, etc.). If an insert offset is indicated, the content page is repeatedly inserted when the indicated insert offset is reached (e.g. <code>"offset:2"</code> inserts the content page every third page). If a context ID is indicated, the content page is inserted at a specific context break (e.g. <code>"context:context_id"</code> inserts the content page if a templated content item has set the <code>break</code> property to <code>"context:context_id"</code>). It is also possible to set mulitple positions with the <code>{{pipe}}</code> separator (e.g. <code>"page:0|page:2|offset:3"</code>). | + | The desired position of an insert page in format <code>"page:{PAGE_INDEX}"</code>, <code>"offset:{INSERT_OFFSET}"</code>, or <code>"context:{CONTEXT_ID}"</code>. This property only has an effect if the content page is set as an insert page (i.e. it is set inside the <code>inserts</code> property of the corresponding content root object). If a page index is indicated, the content page is inserted once at a specific page index (e.g. <code>"page:0"</code> inserts the content page as first page, <code>"page:1"</code> inserts the content page as second page, etc.). If an insert offset is indicated, the content page is repeatedly inserted when the indicated insert offset (based on the last insertion) is reached (e.g. <code>"offset:2"</code> inserts the content page every third page). If a context ID is indicated, the content page is inserted at a specific context break (e.g. <code>"context:context_id"</code> inserts the content page if a templated content item has set the <code>break</code> property to <code>"context:context_id"</code>). It is also possible to set mulitple positions with the <code>{{pipe}}</code> separator (e.g. <code>"page:0|page:2|offset:3"</code>). |
+ | |||
+ | '''Note: It is not possible to insert multiple content pages in a row (except those ones that integrate content items with the <code>area</code> property). To check whether and which page is inserted, the following procedure is used: Check context ID → Check page index → Check insert offset. If no templated content items are available, no content pages will be inserted at all.''' | ||
+ | |- | ||
+ | | <code>template</code> || <code>object</code> || <code>null</code> || No || data-sort-value=156|'''0.1.156''' || | ||
+ | The template object used by insert pages to override specific integrated content item properties. Please see [[Content Item Object]] for the data structure. This property only has an effect if the content page is set as an insert page (i.e. it is set inside the <code>inserts</code> property of the corresponding content root object). | ||
− | '''Note: It is not possible to | + | '''Note: To use this property, the <code>position</code> and <code>area</code> property must also be set, otherwise this property is ignored. It is not possible to override the <code>layout</code> or <code>break</code> property. The special inline expression <code>{context:{PROPERTY}}</code> cannot be used inside this template object.''' |
|- | |- | ||
| <code>items</code> || <code>array</code> || <code>null</code> || '''Yes''' || data-sort-value=0|0.1.0 || | | <code>items</code> || <code>array</code> || <code>null</code> || '''Yes''' || data-sort-value=0|0.1.0 || |
Latest revision as of 08:43, 27 March 2024
{
"display": true,
"important": false,
"wrap": false,
"compress": true,
"transparent": 0,
"headline": "Page Headline",
"background": "http://link.to.image",
"area": "0,0,12,6",
"offset": "0,0,0,0",
"position": "page:0",
"template": null,
"items": [],
"action": null,
"data": null,
"options": null,
"caption": "opt/menu",
"captionUnderlay": -1
}
Property | Type | Default Value | Mandatory | Since Version | Description |
---|---|---|---|---|---|
display |
boolean |
true |
No | 0.1.0 |
Indicates if the content page is displayed. This property can be used to temporarily remove pages. |
important |
boolean |
false |
No | 0.1.110 |
Indicates if the content page is important. If this property is set to |
wrap |
boolean |
false |
No | 0.1.102 |
Indicates if the content page is wrapped. If this property is set to |
compress |
boolean |
true |
No | 0.1.123 |
Indicates if font size adjustments are performed when the content is compressed. Note: This property is ignored if the corresponding content root object has not set the This property is part of the hidden features. For more information, please see Compress Property. |
transparent |
number |boolean |
0 |
No | 0.1.142 |
Indicates if the content background is transparent for this page. By default, the content background is set to a semi-transparent gray to darken the underlying video/image and make the content more visible. This property has no effect if the content is displayed in a panel or the content page is displayed as overlay/underlay page.
|
headline |
string |
null |
No | 0.1.0 |
The headline of the content page. This headline is attached as sub-headline to the content headline. If the content does not have a headline, this headline is used for that. This property has no effect if the content page is displayed as overlay/underlay page. This property supports Inline Expressions. |
background |
string |
null |
No | 0.1.0 |
The background image that is used if no other background is set at lower levels. This property has no effect if the content is displayed in a panel or the content page is displayed as overlay/underlay page. |
area |
string |
null |
No | 0.1.156 |
The area used by insert pages in the format The All values are absolute integers. Note: To use this property, the |
offset |
string |
null |
No | 0.1.0 |
The offset of the content page in format Note: This property has no effect if the content type is The All values are relative floating point numbers. Note: The offset values have been increased in version 0.1.110. In previous versions, each value can only go from |
position |
string |
null |
No | 0.1.156 |
The desired position of an insert page in format Note: It is not possible to insert multiple content pages in a row (except those ones that integrate content items with the |
template |
object |
null |
No | 0.1.156 |
The template object used by insert pages to override specific integrated content item properties. Please see Content Item Object for the data structure. This property only has an effect if the content page is set as an insert page (i.e. it is set inside the Note: To use this property, the |
items |
array |
null |
Yes | 0.1.0 |
An array of content items. Please see Content Item Object for the data structure. This property is mandatory, because without it, no content items can be displayed. |
action |
string |
null |
No | 0.1.112 |
The content page action that is executed if the page becomes active. This property is part of the hidden features. For more information, please see Page Action. |
data |
object |
null |
No | 0.1.112 |
The additional data of the content page action that is used if the action is executed. This property is part of the hidden features. For more information, please see Page Action. |
options |
object |
null |
No | 0.1.120 |
A special page object that is displayed in a panel if a content item from this page is selected and the menu button is pressed. The availability of options for the current selected item is indicated in the lower right corner of the content screen. This property is ignored if the content is displayed in a panel. Please see Content Page Object for the data structure. Since version 0.1.130, you can also set a Content Root Object as options. Note: If the selected content item has its own |
caption |
string |
"opt/menu" |
No | 0.1.130 |
This property is only used if the content page is set as |
captionUnderlay |
number |
-1 |
No | 0.1.153 |
The underlay of the content caption. This property can be used to explicitly set or remove the underlay of the content caption. The underlay is used to darken the lower part of the screen to make the caption more visible. By default, the underlay is used if a content list has overflowing items (i.e. content items are under the caption). This property has no effect if the content page is displayed as overlay/underlay page.
|