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
4c68b89e
Commit
4c68b89e
authored
Sep 27, 2017
by
Valentin Skripnikov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-
parent
a939e856
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
docs/forms/cmp/index.rst
docs/forms/cmp/index.rst
+1
-0
docs/forms/cmp/numericinput.rst
docs/forms/cmp/numericinput.rst
+46
-0
No files found.
docs/forms/cmp/index.rst
View file @
4c68b89e
...
@@ -9,3 +9,4 @@
...
@@ -9,3 +9,4 @@
table
table
label
label
textbox
textbox
numericinput
docs/forms/cmp/numericinput.rst
0 → 100644
View file @
4c68b89e
«Числовое поле»
---------------
.. js:class:: AS.FORMS.NumericInputView
Отображение компонента, наследует :js:class:`AS.FORMS.View`
.. code-block:: js
{
"id": "numericinput-cmp",
"type": "numericinput",
"style": {},
"config": {
"read-only": false, // заблокировать от изменений пользователем
"RP_ACTIV": true, // ограничение десятичных знаков
"RP_COUNT": 2, // количество десятичных знаков
"DS_TYPE": "DOT", // разделитель дробной части. Возможные значения: DOT- точка, COMMA - запятая
"ROUND": true, // действия с лишними десятичными знаками. true - округлять, false - отбрасывать
"TS_ACTIVE": true, // разделитель тысяч
"TS_VALUE": " ", // значение разделителя тысяч
"BV_ACTIV": true, // граничные значения
"MAX": "10000", // верхняя граница значения
"MIN": "-10000", // нижняя граница значения
"script": ""
},
"fromHistory": true,
"fullId": "numericinput-cmp",
"required": false
}
--------------------------------------------------------------------------------
.. js:class:: AS.FORMS.NumericModel
Модель компонента, наследует :js:class:`AS.FORMS.Model`
.. code-block:: js
{
"id": "numericinput-cmp",
"type": "numericinput",
"value": "1 234.00", // текстовое представление
"key": "1234.00" // числовое представление
}
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