-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grid column properties guides #54
Conversation
| Property | Description | | ||
|---------------------------------------------------------------------- |------------------------------------------------------- | | ||
| [adjust](grid/api/gridcolumn_properties/gridcolumn_adjust_property.md) | (optional) *false* by default, defines whether the width of a column is automatically adjusted to its content | | ||
| [align](grid/api/gridcolumn_properties/gridcolumn_align_property.md) | (optional) aligns data in a column: "left"/"center"/ "right", *"left"* by default | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 default зависит от типа выбранной колонки. Для number
default будет right
. Необходимо уточнить, либо убрать упоминание о состоянии по-умолчанию
| [adjust](grid/api/gridcolumn_properties/gridcolumn_adjust_property.md) | (optional) *false* by default, defines whether the width of a column is automatically adjusted to its content | | ||
| [align](grid/api/gridcolumn_properties/gridcolumn_align_property.md) | (optional) aligns data in a column: "left"/"center"/ "right", *"left"* by default | | ||
| [autoWidth](grid/api/gridcolumn_properties/gridcolumn_autowidth_property.md) | (optional) enables/disables the ability of a column to adjust its size to the size of Grid, *false* by default | | ||
| [closable](grid/api/gridcolumn_properties/gridcolumn_closable_property.md) | (optional) **PRO version only**, either allows closing a particular element of the [`group`](../../api/grid_group_config/) panel or makes it permanently enabled | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 имеет смысл формулировку PRO version only
не включать в предложение с определением функционала.
| [draggable](grid/api/gridcolumn_properties/gridcolumn_draggable_property.md) | (optional) defines whether a column is draggable, *false* by default | | ||
| [editable](grid/api/gridcolumn_properties/gridcolumn_editable_property.md) | (optional) defines whether a column is editable, *false* by default | | ||
| [editorConfig](grid/api/gridcolumn_properties/gridcolumn_editorconfig_property.md) | (optional) an object with configuration settings of the column's editor. The structure of this object depends on the specified type of the editor or the column | | ||
| [editorType](grid/api/gridcolumn_properties/gridcolumn_editortype_property.md) | (optional) the type of an editor used in a column: "input" | "select" | "combobox" | "textarea" | "multiselect" | "datePicker", *"input"* by default | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 не отображается вся строка в preview. Тип редактора по-умолчанию не "input", а зависит от типа колонки, а также включенного свойства autoHeight
.
| [editorConfig](grid/api/gridcolumn_properties/gridcolumn_editorconfig_property.md) | (optional) an object with configuration settings of the column's editor. The structure of this object depends on the specified type of the editor or the column | | ||
| [editorType](grid/api/gridcolumn_properties/gridcolumn_editortype_property.md) | (optional) the type of an editor used in a column: "input" | "select" | "combobox" | "textarea" | "multiselect" | "datePicker", *"input"* by default | | ||
| [footer](grid/api/gridcolumn_properties/gridcolumn_footer_property.md) | (optional) an array of objects with footer rows configuration | | ||
| [groupable](grid/api/gridcolumn_properties/gridcolumn_groupable_property.md) | (optional) **PRO version only**, enables data grouping by the values of a certain column | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 я бы сказал, что он включает возможность использование группировки через пользовательский интерфейс.
| [groupable](grid/api/gridcolumn_properties/gridcolumn_groupable_property.md) | (optional) **PRO version only**, enables data grouping by the values of a certain column | | ||
| [header](grid/api/gridcolumn_properties/gridcolumn_header_property.md) | (required) an array of objects with header rows configuration | | ||
| [hidden](grid/api/gridcolumn_properties/gridcolumn_hidden_property.md) | (optional) defines whether a column is hidden, *false* by default | | ||
| [htmlEnable](grid/api/gridcolumn_properties/gridcolumn_htmlenable_property.md) | (optional) specifies the HTML content (inner HTML) of a column. If set to *false*, the content of the column cells will be displayed as a *string* value, *false* by default | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 можно слегка уточнить формулировку. Данное свойство разрешает использование и отображение HTML контента
@descr: | ||
### Example | ||
|
||
~~~jsx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 можно дать пример с html в заголовке, например.
### Usage | ||
|
||
~~~jsx | ||
mark?: { min?: string, max?: string } | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mark?:
{ min?: string, max?: string } |
(cell, columnCells: [], row?: IRow, column?: ICol) => string;
### Example | ||
|
||
~~~jsx | ||
const grid = new dhx.Grid("grid_container", { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 желательно все примеры привести к единому виду.
- В конфигурации отображать только описываемый функционал
- Можно оставить комментарии по типу
more options
/more columns configuration
- Проверить отступы в примерах*
Все примеры абстракция. Вижу, что почти во всех примерах есть data: dataset
строка которая приведет к ошибке, если пользователь захочет скопировать данный код без изменений. Лучше оставить комментарий про дополнительные опции.
### Usage | ||
|
||
~~~jsx | ||
template?: (cellValue: any, row: object, column: object) => string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 необходимо пробежаться посмотреть, и привести к единому виду для row: IRow; column/col: ICol
### Usage | ||
|
||
~~~jsx | ||
tooltipTemplate?: (cellValue: any, row: object, column: object) => string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mafanya23 таких мест довольно много, нужно привести к правильному виду. В том числе название аргументов.
No description provided.