Files
fr4lzen 39a5a0b8bd fix click handling on the pager's parent element
commit_hash:81c559c60fc1905f712c507bf57d57c7421a080f
2026-04-24 19:10:10 +03:00

73 lines
2.2 KiB
JSON

{
"card": {
"log_id": "pager_page_click",
"variables": [
{
"name": "result_text",
"type": "string",
"value": "not_clicked"
}
],
"states": [
{
"state_id": 0,
"div": {
"type": "container",
"orientation": "vertical",
"width": { "type": "match_parent" },
"height": { "type": "match_parent" },
"items": [
{
"type": "container",
"id": "non_clickable_parent",
"orientation": "vertical",
"width": { "type": "match_parent" },
"height": { "type": "fixed", "value": 300 },
"items": [
{
"type": "pager",
"id": "test_pager",
"width": { "type": "match_parent" },
"height": { "type": "fixed", "value": 200 },
"layout_mode": {
"type": "percentage",
"page_width": { "type": "percentage", "value": 100 }
},
"items": [
{
"type": "text",
"id": "page_button",
"text": "Page 1",
"font_size": 20,
"text_alignment_horizontal": "center",
"text_alignment_vertical": "center",
"width": { "type": "match_parent" },
"height": { "type": "match_parent" },
"actions": [
{
"log_id": "page_click",
"url": "div-action://set_variable?name=result_text&value=page_clicked"
}
]
}
]
}
]
},
{
"type": "text",
"id": "result_label",
"text": "@{result_text}",
"font_size": 16,
"text_color": "#000000",
"width": { "type": "match_parent" },
"height": { "type": "wrap_content" },
"margins": { "top": 16, "left": 16 }
}
]
}
}
]
}
}