Commit 9ecb3862 authored by Valentin Skripnikov's avatar Valentin Skripnikov

-

parent 5094d8a4
...@@ -124,28 +124,27 @@ ...@@ -124,28 +124,27 @@
.. code-block:: js .. code-block:: js
{ {
"id": "person-list", // идентификатор таблицы "id": "person-list",
"type": "appendable_table", // тип компонента "type": "appendable_table",
"key": "значение свертки таблицы", "key": "значение свертки таблицы",
"data": [ // массив с данным таблицы "data": [{
{ "id": "person-b1",
"id": "person-b1", // идентификатор компонента. Первая строка таблицы
"type": "textbox", "type": "textbox",
"value": "Иванов Иван" "value": "Иванов Иван"
}, },
{ {
"id": "age-b1", // идентификатор компонента. Первая строка таблицы "id": "age-b1",
"type": "numericinput", "type": "numericinput",
"value": "23", "value": "23",
"key": "23" "key": "23"
}, },
{ {
"id": "person-b2", // идентификатор компонента. Вторая строка таблицы "id": "person-b2",
"type": "textbox", "type": "textbox",
"value": "Сериков Серик" "value": "Сериков Серик"
}, },
{ {
"id": "age-b2", // идентификатор компонента. Вторая строка таблицы "id": "age-b2",
"type": "numericinput", "type": "numericinput",
"value": "25", "value": "25",
"key": "25" "key": "25"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment