Skip to content
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

Merged
merged 5 commits into from
Feb 24, 2025
Merged

Conversation

mafanya23
Copy link
Contributor

No description provided.

@mafanya23 mafanya23 merged commit 24d3901 into next Feb 24, 2025
| 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 |
Copy link
Contributor

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 |
Copy link
Contributor

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 |
Copy link
Contributor

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 |
Copy link
Contributor

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 |
Copy link
Contributor

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
Copy link
Contributor

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 } |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mafanya23

mark?:
    { min?: string, max?: string } | 
    (cell, columnCells: [], row?: IRow, column?: ICol) => string;

### Example

~~~jsx
const grid = new dhx.Grid("grid_container", {
Copy link
Contributor

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;
Copy link
Contributor

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;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mafanya23 таких мест довольно много, нужно привести к правильному виду. В том числе название аргументов.

@mafanya23 mafanya23 deleted the grid-column-properties-guide-4802 branch February 28, 2025 07:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants