Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sd-doc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Skripnikov
sd-doc
Commits
a8d2f8ce
Commit
a8d2f8ce
authored
Sep 28, 2017
by
Valentin Skripnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-
parent
95eeb178
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
139 additions
and
1 deletion
+139
-1
docs/forms/cmp/date.rst
docs/forms/cmp/date.rst
+1
-1
docs/forms/cmp/file.rst
docs/forms/cmp/file.rst
+39
-0
docs/forms/cmp/image.rst
docs/forms/cmp/image.rst
+37
-0
docs/forms/cmp/index.rst
docs/forms/cmp/index.rst
+3
-0
docs/forms/cmp/link.rst
docs/forms/cmp/link.rst
+59
-0
No files found.
docs/forms/cmp/date.rst
View file @
a8d2f8ce
...
...
@@ -31,7 +31,7 @@
.. js:function:: showTimePicker()
Отобразит поле ввода времени
Отобразит
ь
поле ввода времени
--------------------------------------------------------------------------------
...
...
docs/forms/cmp/file.rst
0 → 100644
View file @
a8d2f8ce
«Файл»
------
.. js:class:: AS.FORMS.FileView
Отображение компонента, наследует :js:class:`AS.FORMS.View`
.. code-block:: js
{
"id": "file-cmp",
"type": "file",
"style": {},
"config": {
"read-only": false,
"showFullPath": true, // отображать полный путь к файлу при загрузке из хранилища
"showContent": false, // отображать содержимое загруженного файла
"script": ""
},
"fromHistory": true,
"fullId": "file-cmp",
"required": false
}
--------------------------------------------------------------------------------
.. js:class:: AS.FORMS.FileModel
Модель компонента, наследует :js:class:`AS.FORMS.Model`
.. code-block:: js
{
"id": "file-cmp",
"type": "file",
"value": "tech_spec.pdf", // имя файла
"key": "bdc23ab9-0170-453e-9fee-6a5e001f7c12", // идентификатор файла в Хранилище
"valueID": "Хранилище/Сотрудники/Матаев Ерлан" // путь к файлу
}
docs/forms/cmp/image.rst
0 → 100644
View file @
a8d2f8ce
«Изображение»
-------------------
.. js:class:: AS.FORMS.ImageView
Отображение компонента, наследует :js:class:`AS.FORMS.View`
.. code-block:: js
{
"id": "image-cmp",
"type": "image",
"style": {},
"config": {
"url": "asffile?uuid=4e61da62-5d43-493a-80a2-9fe7ef7b0e23",
"script": ""
},
"fromHistory": true,
"fullId": "image-cmp",
"data": {
"id": "image-cmp",
"type": "image"
}
}
--------------------------------------------------------------------------------
.. js:class:: AS.FORMS.ImageModel
Модель компонента, наследует :js:class:`AS.FORMS.Model`
.. code-block:: js
{
"id": "image-cmp",
"type": "image"
}
docs/forms/cmp/index.rst
View file @
a8d2f8ce
...
...
@@ -16,3 +16,6 @@
date
check
radio
image
file
link
docs/forms/cmp/link.rst
0 → 100644
View file @
a8d2f8ce
«Ссылка»
--------
.. js:class:: AS.FORMS.LinkView
Отображение компонента, наследует :js:class:`AS.FORMS.View`
.. code-block:: js
{
"id": "link-cmp",
"type": "link",
"style": {},
"config": {
"read-only": false,
"script": ""
},
"fromHistory": true,
"fullId": "link-cmp",
"required": false,
"data": { // дефолтное значение
"id": "link-cmp",
"type": "link",
"value": "http://arta.pro", // URL ссылки
"key": "ARTA Software; true" // наименование ссылки
}
}
.. note:: Значение параметра key состоит из надписи к ссылке и через «; »
(с пробелом) опции, открывать ли ссылку в новом окне.
--------------------------------------------------------------------------------
.. js:class:: AS.FORMS.LinkModel
Модель компонента, наследует :js:class:`AS.FORMS.Model`
.. code-block:: js
{
"id": "link-cmp",
"type": "link",
"value": "http://arta.pro", // URL ссылки
"key": "ARTA Software; true" // наименование ссылки
}
.. js:function:: isOpenInNew()
Открывать ссылку в новом окне
:returns: ``boolean``
.. js:function:: setValueFromInput(newUrl, newTitle, newOpenInNew)
Вставить значение
:param string newUrl: URL ссылки
:param string newTitle: наименование ссылки
:param boolean newOpenInNew: открывать ссылку в новом окне
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment