diff --git a/doc/content/manual/ru/chapter_framework.xml b/doc/content/manual/ru/chapter_framework.xml
index 20e9f1db21..a9e78c1421 100644
--- a/doc/content/manual/ru/chapter_framework.xml
+++ b/doc/content/manual/ru/chapter_framework.xml
@@ -7014,7 +7014,7 @@ protected boolean postCommit(boolean committed, boolean close) {
- Атрибуты элемента columns column:
+ Атрибуты column:c
@@ -7068,6 +7068,14 @@ protected boolean postCommit(boolean committed, boolean close) {
+ Элементы column:
+
+ c
+
+ formatter
+ editable
+
+ Атрибуты rows:c
@@ -8976,6 +8984,14 @@ protected boolean postCommit(boolean committed, boolean close) {
class − имя класса, реализующего интерфейс com.haulmont.cuba.gui.components.Formatter
+ Если конструктор класса formatter принимает параметр типа org.dom4j.Element, то ему будет передан элемент XML, описывающий данный formatter. Это можно использовать для параметризации экземпляра formatter'а, например, строкой форматирования. В частности, имеющиеся в платформе классы DateFormatter и NumberFormatter могут брать строку форматирования из атрибута format. Пример использования:<column id="date">
+ <formatter class="com.haulmont.cuba.gui.components.formatters.DateFormatter" format="yyyy-MM-dd HH:mm:ss"/>
+</column>
+ Кроме того, класс DateFormatter распознает также атрибут type, который может принимать значения DATE или DATETIME. В этом случае форматирование производится с помощью механизма
+ Datatype
+ по строке формата dateFormat или dateTimeFormat соответственно. Например:<column id="endDate">
+ <formatter class="com.haulmont.cuba.gui.components.formatters.DateFormatter" type="DATE"/>
+</column>