Configuration
DHTMLX Grid possesses flexible configuration that let you get desired look and feel via a collection of versatile properties.
Setting the TreeGrid mode
If you use the PRO version of DHTMLX Grid, you can initialize Grid in the TreeGrid mode which allows showing the nested tabular data. To create Grid in the TreeGrid mode, use the type: "tree"
configuration option.
const Grid = new dhx.Grid("grid_container", {
type: "tree",
columns: [
{ id: "name", header: [{ text: "Name" }], gravity: 1.5 },
{ id: "native", type: "string", header: [{ text: "Native name" }], gravity: 1.5 },
{ id: "capital", type: "string", header: [{ text: "Capital" }] },
{ id: "currency", type: "string", header: [{ text: "Currency" }] }
],
data: dataset,
autoWidth: true
});
Check the details on the TreeGrid mode in the related article.
Width/height
You can specify the necessary size of your Grid via the width
and height
configuration properties:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
width: 400,
height: 400,
data: dataset
});
Related sample: Grid. Custom sizes
If the width
and height
options aren't set in the Grid configuration, the Grid will take the size of its container. If you don't specify the height for the container, it will be equal to "0px" and Grid won't be visible on the page.
Autoheight for Grid
If you use the PRO version of DHTMLX Grid, you may enable the auto height mode of Grid. For this, set the value of the height property to "auto". In this mode, Grid will expand on adding new rows, and will shrink on removing rows not to occupy external place.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
height: "auto",
data: dataset
});
This functionality is available from v8.1.
Related sample: Grid. Set automatic height (PRO)
If needed, you may set the minimal and maximal height for the container via the min-height
and max-height
CSS properties:
<div class="grid" id="grid_container"></div>
<style>
.grid {
min-height: 400px;
max-height: 600px;
}
</style>
Columns
It is possible to adjust the configuration of grid columns via the corresponding option columns
. As a value it takes an array with objects each of which contains config of a column.
The full list of properties you can set for a column is given in the API reference.
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 100, id: "a", header: [{ text: "#" }] },
{ width: 100, id: "b", header: [{ text: "Title" }] },
{ width: 200, id: "c", header: [{ text: "Name" }] },
{ width: 200, id: "d", header: [{ text: "Address" }] }
],
data: dataset
});
Each column object may contain a set of properties.
You will find the full list of the configuration properties of a Grid column here.
Alignment
Starting from v6.5, there is the ability to align data in a column as well as to align data in the column's header via the align
option:
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "name", header: [{ text: "Name", align: "center" }], align: "right"}
// more options
],
data: dataset
});
Related sample: Grid. Content align
The available values of the option are "left", "center" and "right".
Autosize for columns
You can configure columns' settings so that their width would automatically adjust to their content. Use the adjust property for this purpose. The property can take one of four values:
"header" | adjusts the columns to the width of their header |
"footer" | adjusts the columns to the width of their footer |
"data" | adjusts the columns to the width of their content |
true | combines the above mentioned modes and adjusts the column to the bigger value |
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
adjust: "header",
data: dataset
});
Related sample: Grid. Adjust columns by header, data, all
It is also possible to use the adjust property in the configuration of a separate column:
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "country", header: [{ text: "Country" }], adjust: "header" },
{ id: "population", header: [{ text: "Population" }] }
],
adjust: false,
data: dataset
});
In case complex HTML content is added into a column, the column width may be calculated incorrectly.
Autowidth for columns
It is possible to automatically adjust the size of Grid columns to the size of Grid with the help of the autoWidth configuration option, like this:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
autoWidth: true,
data: dataset
});
Related sample: Grid. Columns auto width
You can disable this functionality for a specified column via setting the autoWidth property to false in the configuration of the column:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }], autoWidth: false },
{ width: 150, id: "population", header: [{ text: "Population" }] },
],
autoWidth: true,
data: dataset
});
Formatting columns
You can display the values of the cells of a Grid column in the desired format with the help of the numberMask
and patternMask
properties. There is also the dateFormat
option that allows specifying the format of dates.
numberMask
The numberMask
property sets an input mask for entering number values. This property is applied both to the displayed data and to the data which is being edited.
If the type of a column hasn't been set and the numberMask
property is specified, the column type will be set as type:number
.
The numberMask
property can be specified in two ways:
- as an object with the following properties:
- prefix - renders a text before the resulting value
- suffix - renders a text after the resulting value
- groupSeparator - sets a separator for thousands
- decSeparator - sets a separator for decimals
- allowNegative - allows using negative numbers
- maxIntLength - allows setting the maximal length of the integer value
- maxDecLength - allows setting the maximal length of the decimal value
- minDecLength - allows setting the minimal rendered length of the decimal value
For example, the numberMask
config can be set as the following object:
{
width: 130,
id: "cost",
header: [{ text: "Cost" }, { content: "inputFilter" }],
numberMask: {
prefix: "$",
groupSeparator: ",",
decSeparator: ".",
maxIntLength: 7,
maxDecLength: 2,
minDecLength: 0
}
}
The value 100000.01 is converted into $100,000.01 by the pattern given above.
Default numberMask
configs depending on the column type
When the type:"number"
is specified for a column, the resulting number is converted into the number type. The default config for this column type is the following:
{
groupSeparator: ",",
decSeparator: ".",
allowNegative: true,
maxIntLength: 16,
maxDecLength: 2,
minDecLength: 0
}
The default config for the type:"string"
is the following:
{
groupSeparator: ",",
decSeparator: ".",
minDecLength: 0
}
When the type:"string"
type is specified for a column, the resulting number is converted into the string type without a mask, as if it were a number. For example, if the input value is "$ 1,000,000", the value returned by the getValue()
method is "1000000".
- as a boolean value the
numberMask
property converts the number value displayed in the column into one of the predefined templates (depending on the specified column type):
{
width: 130,
id: "cost",
header: [{ text: "Cost" }, { content: "inputFilter" }],
numberMask: true
}
For the above example, the value 100000.01 is converted into 100,000.01 by the predefined template of the column type:"number"
, since the numberMask:true
property is specified.
Related sample: Grid. Pattern and number masks
patternMask
The patternMask
property sets an input mask for entering number and string values. Allows setting a necessary pattern for entering data. It can be set in two ways:
- as an object with the following properties:
- pattern - (function | string) allows specifying the necessary mask and change it dynamically, depending on the entered values. Can be set as:
- a function that takes as a parameter an entered value specified as a string or as a number and returns a string with a pattern mask
- a string with a pattern mask
- charFormat - (object) optional, allows specifying a regular expression for an optional symbol. It is set as an object with key:value pairs, where the key is a symbol and the value is a regular expression. This property has a predetermined configuration provided below:
- pattern - (function | string) allows specifying the necessary mask and change it dynamically, depending on the entered values. Can be set as:
{
"0": /\d/,
"a": /[A-Za-z]/,
"#": /[A-Za-z0-9]/,
"*": /./,
}
Symbol | Description |
---|---|
"0" | any number from 0 to 9 |
"a" | a single letter of the Roman alphabet, including all capital letters from A to Z and all lowercase letters from a to z |
"#" | a single letter of the Roman alphabet (either an uppercase or a lowercase one) or a single number from 0 to 9 |
"*" | any symbol |
The inputMask
property supports static masks. These are the symbols not specified in the charFormat and rendered without the possibility of being changed.
Here's an example of the patternMask
property that specifies an input mask pattern for entering a ZIP code:
{
id: "zip_code", header: [{ text: "ZIP Code" }], width: 120,
patternMask: {
pattern: value => {
const [outcode, incode] = value.split(" ");
if (outcode?.length && incode?.length) {
return `a${"".padStart(outcode.length - 1, "#")} #aa`
}
return "a## #aa";
}
}
},
An example of a ZIP code according to the pattern mask is WC2N 5DU.
- as a string value the
patternMask
property allows setting a mask as a string using a predefined set of symbols. Here's an example of thepatternMask
property that specifies an input mask pattern for entering an ID:
{
id: "employee_id",
header: [{ text: "Employee ID" }],
width: 110,
patternMask: "ID.000"
}
An example of an ID according to the pattern mask is ID.001.
Related sample: Grid. Pattern and number masks
Selecting the suitable data format
Depending on the type of the data entered into an input, you can specify different patterns for input masks. Check examples below to learn how to provide a suitable data format:
- phone number format
The phone number format may include a set of numbers, symbols and spaces. You can specify this data format as a string value of the patternMask
property:
{
id: "phone_number",
header: [{ text: "Phone number" }],
patternMask: "+0 (000) 000-0000",
};
Example: +9 (123) 123-1234
- license plate format
The format for license plate usually contains a combination of letters, numbers and symbols. You can specify this data format as a string value of the patternMask
property:
{
id: "license_plate",
header: [{ text: "License plate" }],
patternMask: "0-aaa-000",
}
Example: 9-AAA-999
- price format
The format for price can be set via the numberMask
property. For example, you can specify a number mask as the following object for a "salary" column:
{
id: "salary",
header: [{ text: "Salary" }],
numberMask: { prefix: "£", maxDecLength: 0 }
}
Example: £10,000
In the above example the prefix
property sets the currency sign and the maxDecLength
property defines that decimal values aren't used in the number.
- date and time format
For a date and time input you can specify the patternMask
property as an object of the following type:
patternMask: {
pattern: "00/00/0000 H0:M0",
charFormat: {
"H": /[0-2]/,
"M": /[0-5]/,
}
}
Example: 01/01/2001 12:59
In the above example:
- the
pattern
property sets a common mask pattern for date and time - the
charFormat
property specifies regular expressions for setting hours and minutes:"H": /[0-2]/
- a number from 0 to 2 for setting an hour asH0
"M": /[0-5]/
- a number from 0 to 5 for setting minutes asM0
Related sample: Grid. Pattern and number masks
Setting the format for dates
To specify the necessary format for dates, set the type: "date"
property for a column and define the format of dates with the help of the dateFormat
option:
{
width: 150, id: "date", header: [{ text: "Date" }],
type: "date", dateFormat: "%M %d %Y"
}
The date format must include delimiters (spaces or symbols), otherwise an error will be thrown.
Related sample: Grid. Data formats
Frozen columns
You can fix (or "freeze") a column or several columns, so that they will become static when you scroll the grid, while the rest of columns remain movable.
- To fix columns to the left side of the grid, use the leftSplit property.
- To fix columns to the right side of the grid, use the rightSplit property.
Just set the number of columns you want to freeze as a value of the related property in the Grid configuration.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
leftSplit: 1,
rightSplit: 2,
data: dataset
});
Related sample: Grid. Frozen columns and rows
Hidden columns
You can set the hidden:true
property in the config of a column so that it doesn't appear on a page.
{
width: 150, id: "population", header: [{ text: "Population" }]
},
{
hidden: true, width: 150, id: "yearlyChange", header: [{ text: "Yearly Change" }]
}
Related sample: Grid. Hidden columns
Sortable columns
By default, DHTMLX Grid allows sorting content of any Grid column by clicking on its header.
To disable this option, set the sortable property in the Grid configuration to false:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
sortable: false,
data: dataset
});
Related sample: Grid. Sortable columns
Making separate columns sortable
You can make separate columns sortable by specifying the sortable:true
property in the configuration of a column:
In the example below all columns will be sortable, except for the second one:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }], sortable: true },
{ width: 150, id: "land", header: [{ text: "Land" }] },
{ width: 150, id: "density", header: [{ text: "Density" }], sortable: true }
],
data: dataset,
sortable: false,
});
The following sample demonstrates the same result:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }] },
{ width: 150, id: "land", header: [{ text: "Land" }], sortable: false },
{ width: 150, id: "density", header: [{ text: "Density" }] }
],
data: dataset
});
Resizable columns
The columns of Grid have a fixed width with no possibility to change it from UI. You can switch on the corresponding configuration option to make all columns of Grid resizable.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
resizable: true
});
Then you will be able to change the width of columns using the mouse. With the cursor grab the right border and drag to the desired width.
If you also set the autoWidth
configuration option, you will be able to change the width of columns only inside the container of Grid.
You can disable the resizing of any column by setting the resizable:false
property in the config of a column.
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 150, id: "test1", header: [{ text: "Test1" }] },
{ width: 150, id: "test2", header: [{ text: "Test2" }], resizable: false }
],
data: dataset,
resizable: true
})
Related sample: Grid. Resizable columns
To define the resizing limits, set necessary values to the minWidth
/maxWidth
properties in the config of a column.
HTML content of Grid columns
DHTMLX Grid allows adding HTML content into Grid cells (such as images, icons, text styles, etc.). You can enable the possibility to add HTML content both for the whole Grid and for a particular column, or even for a certain column header/footer. Below you'll find all the available options:
- setting HTML content for all Grid columns
This way presupposes making each cell of Grid capable of displaying the HTML content via using the htmlEnable property in the configuration object of Grid.
const dataset = [
{
"country": "China",
"flag": "<img src='../flags/cn.jpg' />",
"id": "1"
}
];
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
htmlEnable: true
});
- setting HTML content for a particular column
If you want to add custom elements into cells of the specified column, you need to set the htmlEnable:true
property in the configuration of a column:
const dataset = [
{
"country": "<span>China</span><img src='../flags/cn.jpg' />",
"id": "1"
}
];
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 200, id: "country", header: [{ text: "Country" }],
htmlEnable: true
},
{
width: 150, id: "urban", header: [{ text: "Urban Pop" }]
},
// more columns
],
data: dataset
});
Related sample: Grid. Html in data
- setting HTML content for the header/footer of a column
You can set HTML content in the header or the footer of a column independently. The htmlEnable
property enabled for the header/footer redefines the value of the same config specified for the parent column and for the whole Grid:
const grid = new dhx.Grid("grid", {
columns: [
{ width: 200, id: "country", header: [
{
text: "<span style='font-size:16px; color: steelblue'>Country</span>",
htmlEnable: true,
}
]},
// other columns' configs
],
data: dataset,
htmlEnable: false
});
Related sample: Grid. Styling header cells (custom CSS)
Event handlers for HTML content
HTML elements defined in the data set
Starting from v7.0, you can add event handlers to the HTML elements defined in a data set of Grid with the help of the eventHandlers configuration property, for instance:
const data = [
{
"country": "<div className='cell__html'><span>China</span><img src='../flags/cn.svg'></div>",
"population": "1415045928", "yearlyChange": "0.0039",
"netChange": "5528531", "density": "151",
"urban": "0.5800", "id": "1"
},
// more options
];
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }], htmlEnable: true },
// more options
],
data: data,
eventHandlers: {
onclick: {
cell__html: function(event, data) {
console.log(JSON.stringify(data.col, null, 2));
},
},
onmouseover: {
cell__html: function(event) {
console.log("You are over " + event.target.tagName);
},
}
}
});
Related sample: Grid. Handling events in template
HTML elements in the header/footer cell
The Suite version 8.3 brought the possibility to add events handlers for the header/footer cell's content. Use the eventHandlers configuration property for this purpose:
const grid = new dhx.Grid("grid", {
columns: [
{
width: 60,
id: "paid",
header: [
{
text: `
<label className="dhx_checkbox dhx_cell-editor__checkbox ">
<input type="checkbox" className="dhx_checkbox__input dhx_checkbox--check-all"/>
<span className="dhx_checkbox__visual-input "></span>
</label>
`,
rowspan: 2,
htmlEnable: true,
}
],
type: "boolean",
sortable: false,
},
// more columns
],
data,
eventHandlers: {
onclick: {
"dhx_checkbox--check-all": function(event, data) {
grid.data.forEach(row => {
grid.data.update(row.id, {
[data.col.id]: event.target.checked,
});
});
}
},
},
});
Related sample: Grid. Rich example with templates and different editors
Editing Grid and separate columns
DHTMLX Grid provides the editing feature that includes two options:
- editing of the whole Grid, i.e. of all its columns
To make all columns of the Grid editable, specify the editable option in the configuration of Grid:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: data,
editable: true
});
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
- editing of the specified columns only
This option implies that you can enable/disable editing of particular columns by setting the editable: true
property in the configuration of a column:
In the example below all columns will be editable, except for the first one:
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150, id:"project",
editable: false,
header: [
{text: "Project"}, {content: "selectFilter"}
]
},
{ width:150, id: "owner", header: [{text: "Owner"},{content: "inputFilter"}]},
{ width:150, id: "hours", header: [{text: "Hours"}, {content: "inputFilter"}]},
// more columns
],
data: data,
editable: true
});
And the following example demonstrates an opposite situation when only the first column is editable:
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150, id: "project",
editable: true,
header: [
{text:"Project"}, {content:"selectFilter"}
]
},
{ width: 150, id: "owner", header: [{text: "Owner"},{content: "inputFilter"}]},
{ width: 150, id: "hours", header: [{text: "Hours"}, {content: "inputFilter"}]},
// more columns
],
data: data
});
Types of column editor
You can specify the way of editing the cells of a Grid column depending on its content as a simple input, a date picker, a textarea control, a checkbox, a select, a multiselect or a combobox. The type of the used editor can be defined either by the editorType
property of a column or via the type
one.
There are several types of column editors:
-
input
An editor for cells with a simple text (the default one, unless a column has type:"date"
).
// cells of the "project" column will be edited as inputs
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150,
id: "project",
header: [{ text: "Project" }, { content: "selectFilter" }]
}
// more columns
],
data: data,
editable: true
});
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
-
datePicker
An editor for cells with dates (default for a column with type:"date"
).
To use this editor, you should specify the type:"date"
property for a column. It is also possible to set the necessary format of date while editing a cell content with the help of the dateFormat
option.
By default, after editing dates are transformed and displayed as string values.
You can also save a date as a Date object by setting the asDateObject
property to true
in the editorConfig
object:
{
// if the type:"date" config is set in the column config,
// there's no need to specify the type of the editor
width: 150, id: "start_date",
header: [{ text: "Calendar", colspan: 2 }, { text: "Start date" }],
type: "date", dateFormat: "%d/%m/%Y",
editorConfig: {
asDateObject: true // sets the datePicker mode when dates are saved as Date objects
}
}
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
You can configure the date picker by passing the properties of Calendar (except for the value
and range
ones) to the editorConfig
object, as in:
{
id: "start_date",
header: [{ text: "Start date" }],
type: "date",
dateFormat: "%d/%m/%Y %H:%i",
editorConfig: {
timePicker: true,
weekStart: "sunday",
thisMonthOnly: true,
weekNumbers: true
}
}
-
textarea
An editor for cells that contain text.
To use this editor, you should specify the editorType:"textarea"
property for a column.
The textarea editor allows editing multiple lines of text when the autoHeight:true configuration option of Grid is enabled. The functionality is available only in PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150, id: "project",
header: [{ text: "Project" }, { content: "selectFilter" }],
editorType: "textarea"
}
// more columns
],
data: data,
editable: true,
autoHeight: true
});
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
-
checkbox
An editor for cells with a two-state check box.
To use this editor, you need to specify the type: "boolean"
property for a column.
{
// if the type:"boolean" config is set in the column config,
// there's no need to specify the type of the editor
width: 160, id: "test",
header: [{ text: "Test" }],
type: "boolean"
}
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
If you specify the editing option in the configuration of Grid, then editing of a column with checkbox will always be enabled.
-
select
An editor for cells that should contain several options to choose from.
To set this editor type you need to specify the editorType:"select"
property for a column and define a list of options via the options
property.
You may either specify the same list of editor options for all cells of the column. For that, use either an array of string values or an array of options' objects as a value of the property as in:
{
width: 150, id: "status", header: [{text: "Status"}, {content: "selectFilter"}],
editorType: "select", options: ["Done", "In Progress", "Not Started"]
}
// or
{
width: 150, id: "status", header: [{text: "Status"}, {content: "selectFilter"}],
editorType: "select",
options: [
{ id: "done", value: "Done" },
{ id: "in progress", value: "In Progress" },
{ id: "not started", value: "Not Started" },
],
}
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
Or define unique lists of options for different column cells. For that, use a function as a value of the property:
{
id: "select_example",
header: [{ text: "Select example" }],
editorType: "select",
options: (column, row) => getCurrentOptions(row),
},
Related sample: Grid. Individual option lists for select, multiselect and combobox editors
-
multiselect
An editor for cells that enables selection of multiple options. You can select one option, several options, all options, or no options.
To set this editor type you need to specify the editorType:"multiselect"
property for a column and define a list of options via the options
property.
You may either specify the same list of editor options for all cells of the column. For that, use either an array of string values or an array of options' objects as a value of the property as in:
{
id: "renewals", type: "string",
header: [{ text: "Number of renewals" }],
editorType: "multiselect",
options: ["1 time", "1-2 times", "more than 5 times"],
},
// or
{
id: "renewals", type: "string",
header: [{ text: "Number of renewals" }],
editorType: "multiselect",
options: [
{ id: "1", value: "1 time" },
{ id: "1-2", value: "1-2 times" },
{ id: "5+", value: "more than 5 times" },
],
}
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
Or define unique lists of options for different column cells. For that, use a function as a value of the property:
{
id: "multiselect_example",
header: [{ text: "Multiselect example" }],
type: "string",
editorType: "multiselect",
options: (column, row) => getCurrentOptions(row),
minWidth: 360
},
Related sample: Grid. Individual option lists for select, multiselect and combobox editors
If you use the multiselect editor, you can predefine several options to be shown in a cell. You should separate the options in the dataset using the ,
separator.
const data = [
{
renewals: "1 time", //one option is shown in a cell
...
},
{
renewals: "more than 5 times, 1 time" //two options are shown in a cell
...
}
];
Configuring the multiselect editor
There is a list of configuration settings you may provide for the multiselect editor type. Use the editorConfig
property to specify the desired settings:
{
id: "renewals", type: "string",
header: [{ text: "Number of renewals" }],
editorType: "multiselect",
options: ["1 time", "1-2 times", "more than 5 times"],
editorConfig: {selectAllButton:true}
}
-
combobox
An editor for cells that should contain several options to choose from. There is a possibility to find an option by entering text in the edit control.
To use this editor you need to specify the editorType: "combobox"
property for a column and define a list of options via the options
property.
You may either specify the same list of editor options for all cells of the column. For that, use either an array of string values or an array of options' objects as a value of the property as in:
{
width: 160, id: "test", header: [{ text: "Test" }], type: "string",
editorType: "combobox", options: ["1 time", "1-2 times", "more than 5 times"]
}
//or
{
width: 160, id: "test", header: [{ text: "Test" }], type: "string",
editorType: "combobox",
options: [
{ id: "1", value: "1 time" },
{ id: "1-2", value: "1-2 times" },
{ id: "5+", value: "more than 5 times" },
],
}
Related sample: Grid. Editing with different editors (combobox, select, multiselect, boolean, date)
Or define unique lists of options for different column cells. For that, use a function as a value of the property:
{
id: "combobox_example",
header: [{ text: "Combobox example" }],
editorType: "combobox",
options: (column, row) => getCurrentOptions(row),
minWidth: 160
},
Related sample: Grid. Individual option lists for select, multiselect and combobox editors
Configuring the combobox editor
There is a list of configuration settings you may provide for the combobox editor type. Use the editorConfig
property to specify the desired settings:
{
width: 160, id: "test", header: [{ text: "Test" }], type: "string",
editorType: "combobox", options: ["1 time", "1-2 times", "more than 5 times"],
editorConfig: {readonly:true}
}
Editing columns with the "number" type
For columns with the type:"number"
setting the editorConfig
object may contain the following properties. They are:
min
- (optional) the minimum allowed valuemax
- (optional) the maximum allowed value
const grid = new dhx.Grid("grid", {
columns: [
{
id: "col1",
width: 180,
type: "number",
editorConfig: { min: 5, max: 100 },
},
// more columns
]
});
In case a user enters a value that goes beyond the limits specified by the above settings, the entered value is highlighted in red:
If the user ignores the warning and still tries to enter an unallowable value, it will be replaced with the minimum/maximum value defined in the editorConfig
object by the min/max
values. Thus, in the above example the entered value 200
will be replaced with 100
, since it is the upper limit set in the editor configuration.
Related sample: Grid. Editing with different editors
Styling the warning
There is a possibility to redefine the style of the warning on entering an invalid number value. You need to change the dhx_cell-editor__input--not-valid
class for this purpose. Here is what it looks like:
.dhx_cell-editor__input--not-valid {
color: var(--dhx-color-primary);
font-weight: var(--dhx-font-weight-medium);
}
Editable combobox
From v7.3, you may allow end users to add new options into the combobox editor (editorType: "combobox") from UI. To activate the functionality, specify the newOptions: true attribute of the editorConfig property in the configuration of the column:
{
width: 150,
id: "status",
header: [{text: "Status"}, {content: "selectFilter"}],
editorType: "combobox",
// enables the ability to add new values into the combobox editor of the "Status" column
editorConfig: { newOptions: true },
options: ["Done", "In Progress", "Not Started"]
},
Related sample: Grid. Rich example with templates and different editors
The new option will be added into the combobox after the user types a new value into the input field and either presses "Enter" or clicks on the appeared Create "newValue" option in the drop-down list.
At the same time, the created option will also appear in the drop-down list of the header/footer filters (content: "selectFilter" | "comboFilter") of the column:
To localize the Create option, translate the corresponding string and apply a ready locale to the Combobox component:
const locale = {
en: {
createItem: "Create"
},
de: {
createItem: "Schaffen"
}
};
dhx.i18n.setLocale("combobox", locale["de"]);
Opening editor with one click
By default, you can open the editor by double-clicking on a cell. But if you need the editor to open after a single click, apply the cellClick event of the grid.
Note, that it does not work for the select editor (editorType: "select"
) and you need to use the combobox editor (editorType:"combobox"
) if you want a drop-down list to open on the mouse click.
Custom statistics in the column header/footer and spans
You can form the summary of calculated values based on the columns data for a particular column or for the whole component and render custom statistics by using the column and Grid summary in:
- the configuration objects of the
text
andtooltipTemplate
properties of the column header/footer - the configuration objects of the
text
andtooltipTemplate
properties of the Gridspans
property
It is also possible to get the object with the calculated values using the getSummary()
method.
Related sample: Grid. Custom totals for footer and columns
Related sample: Grid. Custom totals for footer and columns with dynamic updates on edit
Use the dhx.methods
helper to define the default statistical functions and to create custom functions for data calculation while creating the summary list.
Column summary
To form a summary list that will be available at the column's level only, you should use the summary
configuration option of the column. The summary
configuration option of a column can be initialized either as an object or as a string. As an object it contains calculated values set as key:value pairs, where the keys are the field names and values can be:
-
a string with the name of the applied functor
-
a tuple
[string, string]
that specifies the field name and the name of the applied functor -
a
(rows: IRow[]) => string | number;
function for calculating the summary of the column
{
id: "quantity",
type: "number",
header: [{ text: "Quantity" }],
footer: [{ text: ({ sum }) => sum }],
summary: "sum",
numberMask: { prefix: "$" },
},
When the column summary
property is initialized as a string, the resulting value (excluding "count") is used with applied patternMask
/numberMask
, if there are any.
Grid summary
To form a summary list at the Grid's level, you need to use the summary
configuration option of Grid. The defined list will be available both on the grid's level and on the column's level. The summary
configuration option of Grid is an object with calculated values, where the keys are the field names and the values can be:
-
a string with the name of the applied functor
-
a tuple
[string, string]
that specifies the field name and the name of the applied functor -
a
(rows: IRow[]) => string | number;
function for calculating the summary of the column
Here's an example of using the Grid and column summary
configuration options:
// defining the method for calculating the density of population
dhx.methods.populationDensity = (rows) => {
const totalPopulation = rows.reduce((sum, row) => sum + row.population, 0);
const totalArea = rows.reduce((sum, row) => sum + row.area, 0);
return totalArea ? (totalPopulation / totalArea).toFixed(2) : 0;
};
// adjusting a grid and using the method for calculating density
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150,
id: "population",
header: [{ text: () => `<mark>Population</mark>`, htmlEnable: true }],
footer: [{ text: ({ totalPopulation, count }) => `Total: ${totalPopulation}, Count: ${count}` }],
// initializing column summary as a string
summary: "count"
},
{
width: 150,
id: "area",
header: [{ text: ({ customSum }) => `Area: ${customSum}` }],
// initializing column summary as an object
summary: {
customSum: rows => {
return dhx.methods.sum(rows, "population") + dhx.methods.sum(rows, "area");
},
}
},
{
width: 150,
id: "density",
header: [{ text: "Density" }],
footer: [{ text: ({ density }) => `Density: ${density}` }],
}
],
// initializing grid summary
summary: {
totalPopulation: ["population", "sum"],
totalArea: ["area", "sum"],
density: "populationDensity" // adding the summary value for density
},
data: dataset
});
// an example of getting the values of population density
const summary = grid.getSummary();
console.log(summary); // { totalPopulation: 1000000, totalArea: 50000, density: 20.00 }
In the above example the dhx.methods
helper is used to:
- create a custom function for calculating the density of population
- redefine the default
sum
functor by using custom calculations for the summary of the "area" column
Getting the summary object
To get the object with the calculated values, you should use the getSummary()
method. When called without parameters, the method returns an object with the calculated values defined in the configuration of the component.
You can also pass the id
of a column to the method to get an object with the calculated values defined in the column's configuration together with the calculated values defined in the component's configuration. In the following example calculated values are used for rendering the summary for a column:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 150, id: "population", header: [{ text: "Population" }] },
{
width: 150,
id: "age",
header: [{ text: "Med. Age" }],
summary: { avgAge: "avg" }
}
],
summary: {
totalPopulation: ["population", "sum"],
},
data: dataset
});
// getting summary data for the component
const totalSummary = grid.getSummary();
console.log(totalSummary); //{ totalPopulation: 1000000 } - sum of all the values in the "population" column
// getting summary data for the column
const columnSummary = grid.getSummary("age");
console.log(columnSummary); //{ totalPopulation: 1000000, avgAge: 28 } - the value of the "age" column only
Header/footer text
You can specify the text of the header/footer column via the text
property. It can be set either as a string or a callback function which is called with the following parameter:
content
- an object with the content of the header/footer tooltip that contains the calculated values from thesummary
property as key:value pairs, where:- the key is either the key defined in the list or the functor name
- the value can be a string, number or null
The calculated values are taken from the summary
config option of the component and the summary
config option of a column.
In case key names in the summary
configs are the same, values are taken from the column's configuration option.
In the example below the text of the column's header is set as a string and the text of the footer is set as a callback function that takes calculated values both from the column summary
config (count) and the Grid summary
config (totalPopulation):
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150,
id: "population",
header: [{ text: () => `<mark>Population</mark>`, htmlEnable: true }],
footer: [{ text: ({ totalPopulation, count }) => `Total: ${totalPopulation}, Count: ${count}` }],
summary: "count"
}
],
summary: { totalPopulation: ["population", "sum"] },
data: dataset
});
Header/footer filters
There are three types of filters that you can specify in the header/footer content of a Grid column:
- inputFilter - provides a way of filtering data of a Grid column by using a text field
{
width: 160, id: "budget",
header: [{ text: "Budget" }, { content: "inputFilter" }]
}
Related sample: Grid. Header filters (comboFilter, inputFilter, selectFilter)
- selectFilter - allows end users to filter data of a column by choosing an option from a presented dropdown list
{
width: 160, id: "status",
header: [{ text: "Status" }, { content: "selectFilter" }],
editorType: "select",
options: ["Done", "In Progress", "Not Started"]
}
Related sample: Grid. Header filters (comboFilter, inputFilter, selectFilter)
- comboFilter - provides a way to filter data of a column by choosing an option from a presented dropdown list. To find an option quickly you can enter text into the edit control
{
width: 160, id: "renewals",
header: [{ text: "Number of renewals" }, { content: "comboFilter" }],
type: "string", editorType: "combobox",
options: ["1 time", "1-2 times", "more than 5 times"]
}
Related sample: Grid. Header filters (comboFilter, inputFilter, selectFilter)
If you specify comboFilter as the header or footer content of a column, you can set an additional config with properties for it.
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150,
id: "migrants",
header: [
{ text: "Migrants (net)" },
{ content: "comboFilter", filterConfig: {readonly: true }}
]
}
],
data: dataset
});
The list of configuration properties for comboFilter
- filter - (function) sets a custom function for filtering Combo Box options
- multiselection - (boolean) enables selection of multiple options
- readonly - (boolean) makes ComboBox readonly (it is only possible to select options from the list, without entering words in the input). The default value of the readonly property depends on the following conditions:
- the
readonly:true
is set as a default value, ifhtmlEnable:true
is set for a column and there is no template specified for a column - in all other cases,
readonly:false
is set by default
- the
- placeholder - (string) sets a placeholder in the input of ComboBox
- virtual - (boolean) enables dynamic loading of data on scrolling the list of options
- template - (function) a function which returns a template with content for the filter options. Takes an option item as a parameter
Customizing header/footer filters
To add a custom function with your you own logic for the filter of a Grid column, you need to set the customFilter
attribute when configuring the header/footer content of the column.
The customFilter
attribute can be used when content: "inputFilter" | "selectFilter" | "comboFilter" is set.
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 150, id: "country", header: [
{ text: "Country" },
{
content: "comboFilter",
// filters values by the same length
customFilter: (value, match) => value.length === match.length
}
]},
],
data: dataset
});
Related sample: Grid. Custom filters in the header
The customFilter
attribute is a function which compares the value of each cell of the column with the value which is selected in the header/footer filter of the column. If the value of the cell matches the specified criteria, the function returns true, otherwise, it returns false.
Header/footer height
You can change the height of the header/footer in one of the following ways:
- Specify the necessary height of the rows in the header/footer via the related API options
The height of the header/footer of Grid is calculated as a sum of rows which are included into it. To set the height of a row inside the header/footer, use the headerRowHeight
/footerRowHeight
properties, correspondingly. The default value of the mentioned properties is 40.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
footerRowHeight:50
headerRowHeight: 50
});
Related sample: Grid. Header, footer and rows height
- Provide the automatic adjustment of the header/footer height for the content to fit in
Use the headerAutoHeight and footerAutoHeight configuration options of Grid (PRO version only) to redefine the autoHeight
config for the header and the footer, correspondingly:
// enabling autoheight only in the content
const grid1 = new dhx.Grid("grid", {
columns: [
// columns config
],
data: dataset,
autoHeight: true, // enable autoHeight in the data (content)
headerAutoHeight: false, // disable autoHeight in the header
footerAutoHeight: false, // disable autoHeight in the footer
});
// enabling autoheight only in the header
const grid2 = new dhx.Grid("grid", {
columns: [
// columns config
],
data: dataset,
autoHeight: false, // disable autoHeight in the data, the header and the footer
headerAutoHeight: true, // enable autoHeight in the header
});
Related sample: Grid. Header/footer autoHeight mode
Rows
Row height
The default height of a grid row is 40. You can change it and set any other height via the rowHeight
property, e.g.:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
rowHeight: 30,
data: dataset
});
Related sample: Grid. Header, footer and rows height
In this case, the height of each row is 30.
Setting height for a separate row
Starting with v7.1, it is possible to specify the height for the necessary row of data in Grid via setting the number value to the height
option when defining the data set:
const dataset = [
{
"country": "China",
"population": "1415045928",
"height": 80,
"id": "1"
},
{
"country": "India",
"population": "1354051854",
"id": "2",
}
];
Related sample: Grid. Row height
The height
option has a higher priority than the autoHeight:true
configuration property of Grid.
Autoheight for rows
This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
Starting from v7.1, you can set the autoHeight: true
option in the configuration of Grid to make a long text split into multiple lines automatically based on the width of the column:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
autoHeight: true,
data: dataset
});
Related sample: Grid. Rows auto height
As a result, the height of the cells will automatically adjust to their content.
Please note that the autoHeight
option does not adjust the height of the cells of the header/footer of Grid.
The option just makes their text split into multiple lines, but the height of the cells will remain the same. To set the height of the rows in the header/footer, you can:
- use the headerRowHeight and footerRowHeight configuration options of Grid to set specific values for the header/footer rows height
- use the headerAutoHeight and footerAutoHeight configuration options of Grid (PRO version only) to enable autoheight for the header/footer rows
Automatic adding of empty row into Grid
There is a possibility to automatically add an empty row after the last filled row in the grid. Use the autoEmptyRow property in the Grid configuration object to enable this feature:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
autoEmptyRow: true,
data: dataset
});
Related sample: Grid. Auto empty row
Frozen rows
You can fix (or "freeze") a row or several rows, so that they will become static when you scroll the grid, while the rest of rows remain movable.
- To fix rows on the top of the grid, use the
topSplit
property. - To fix rows on the bottom of the grid, use the
bottomSplit
property.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
topSplit: 3,
bottomSplit: 2,
data: dataset
});
Related sample: Grid. Frozen columns and rows
Drag-n-drop
The drag-n-drop functionality allows you to reorder one or several rows or columns inside the grid or between several grids.
If you use GPL version of DHTMLX Grid (or DHTMLX Suite), you will be able to reorder only rows and only one by one.
Note, to be able to drag-n-drop a column and (or) multiple rows, you need to use PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
Drag-n-drop inside the grid
It is possible to reorder a row or column of Grid by drag and drop. To enable the functionality, define the `dragItem: "both"`` property in the configuration object of Grid:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
dragItem: "both",
data: dataset
});
Related sample: Grid. Drag-n-drop
To activate the functionality for columns or rows separately, use dragItem: "column"
or dragItem: "row"
respectively.
If needed, you can disable the drag-n-drop functionality for a separate column via the draggable
configuration option of the column:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }]},
{ width: 150, id: "land", header: [{ text: "Land" }] },
{ width: 150, id: "density", header: [{ text: "Density" }], draggable: false }
],
data: dataset,
dragItem: "column",
});
Drag-n-drop between grids
DHTMLX Grid supports drag-n-drop of rows/columns between grids in several modes. To begin with, you should specify the dragMode property in the configuration object of Grid. Then define which mode you need:
- "target" - a grid takes a row/column from other grids, while its row/colmn can't be dragged out of it
- "source" - a grid allows dragging its row/column out and can't take a row/column from other grids
- "both" - a grid both takes a row/column from other grids and allows dragging its row/column out as well
const grid = new dhx.Grid("grid_container", {
columns: [
{ id: "country", header: [{ text: "Country" }] },
{ id: "population", header: [{ text: "Population" }] }
],
data: dataset,
dragMode: "source",
// dragItem: "column" - allows reordering columns one by one
});
Related sample: Grid. Drag-n-drop between grids
Drag-n-drop of multiple rows
This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
To allow a user to drag-n-drop multiple rows at once, you need to enable multiselection of rows when configuring drag-n-drop. For example:
const grid = new dhx.Grid("grid", {
columns: [
// columns config
],
data: data,
selection: "row",
//drag-n-drop rows inside the grid
multiselection: true,
dragItem: "both" // or dragItem: "row"
});
Related sample: Grid. Drag-n-drop
or
const grid = new dhx.Grid("grid", {
columns: [
// columns config
],
data: dataset,
selection: "row",
//drag-n-drop rows between grids
multiselection: true,
dragMode: "both" // or dragMode: "source"
});
Keyboard Navigation
DHTMLX Grid provides the keyboard navigation that will help you manipulate your grid faster.
Default shortcut keys
There are four navigation keys that Grid enables by default:
PageUp | scroll Grid up to the height of the visible content (without change of the selected cell) |
PageDown | scroll Grid down to the height of the visible content (without change of the selected cell) |
Home | navigate to the beginning of the Grid content (without change of the selected cell) |
End | navigate to the end of the Grid content (without change of the selected cell) |
Ctrl+Enter | expands/collapses the parent item in the TreeGrid mode |
If you need to disable this functionality, set the keyNavigation
property to false.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
keyNavigation: false
});
Related sample: Grid. Key navigation
Arrow shortcut keys
In case you want to enable the arrow keys that allow moving the selection between cells, you need to specify the selection
property for Grid.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
selection: "complex",
keyNavigation: true // true - by default
});
Related sample: Grid. Key navigation
The list of the arrow shortcut keys:
ArrowUp | move selection to the previous vertical cell |
ArrowDown | move selection to the next vertical cell |
ArrowLeft | move selection to the previous horizontal cell |
ArrowRight | move selection to the next horizontal cell |
Ctrl+ArrowUp | move selection to the first vertical cell |
Ctrl+ArrowDown | move selection to the last vertical cell |
Ctrl+ArrowLeft | move selection to the first horizontal cell |
Ctrl+ArrowRight | move selection to the last horizontal cell |
Tab | move selection to the next horizontal cell or the first cell of the next row |
Shit+Tab | move selection to the previous horizontal cell or to the first cell of the previous row |
The arrow shortcut keys listed below do not work when the selection
property is set to "complex". Use another mode ("cell" or "row") in case you want to activate these navigation keys:
Shift+ArrowUp | move selection to the previous vertical cell with the change of the selected cells |
Shift+ArrowDown | move selection to the next vertical cell with the change of the selected cells |
Shift+ArrowLeft | move selection to the previous horizontal cell with the change of the selected cells |
Shift+ArrowRight | move selection to the next horizontal cell with the change of the selected cells |
Ctrl+Shift+ArrowUp | move selection to the first vertical cell with the change of the selected cells |
Ctrl+Shift+ArrowDown | move selection to the last vertical cell with the change of the selected cells |
Ctrl+Shift+ArrowLeft | move selection to the first horizontal cell with the change of the selected cells |
Ctrl+Shift+ArrowRight | move selection to the last horizontal cell with the change of the selected cells |
Shortcut keys for editing
It is also possible to use shortcut keys for editing a cell in Grid by setting editable:true
property in the configuration object of Grid.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
selection: "complex",
editable: true,
keyNavigation: true // true - by default
});
Related sample: Grid. Key navigation
The list of the shortcut keys for editing:
Enter | open the editor in the selected cell. If the editor is currently opened - close the editor and save changes |
Escape | close the editor of the selected cell without saving |
Selection
DHTMLX Grid includes the selection feature that allows highlighting Grid elements depending on the chosen mode. The selection
property enables selection in a grid. It can take three values:
row | to move selection between Grid rows |
cell | to move selection between Grid cells |
complex | to highlight both a selected cell and the row it belongs to |
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
selection: "complex",
data: dataset
});
Related sample: Grid. Selection
Multiple selection of Grid cells
While setting the selection
property to "row", "cell", or "complex" value, you can enable the multiselection property to allow a user to select multiple Grid elements:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
multiselection: true,
selection: "row",
data: dataset
});
Related sample: Grid. Multiselection
Since the multiselection
configuration option is set to true, using the "Ctrl + Click" combination allows selecting the desired cells or rows.
A range of Grid cells/rows can be selected by clicking the first element to select and then, while holding down the Shift key, clicking the last element to select.
Spans
The Grid component has the spans property that allows you to specify all necessary columns and rows spans right through the initial configuration. It represents an array with spans objects.
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
spans: [
{row:"0", column:"a", rowspan:5 },
{row:"0", column:"b", rowspan:9, text:"<h2>Some content here</h2>"},
{row:"0", column:"c", colspan:2, text:"Some content"},
{row:"10", column:"a", colspan:4, text:"Some header", css:"myCustomColspan"}
],
data: dataset
});
Each span object contains the following properties:
row
- (string | number) obligatory, the id of a rowcolumn
- (string|number) obligatory, the id of a columnrowspan
- (number) optional, the number of rows in a spancolspan
- (number) optional, the number of columns in a spantext
- (string|number) optional, the content of a span. You can specify the text of the column span via thetext
property. It can be set either as a string or a callback function which is called with the following parameter:content
- an object with the content of the span tooltip that contains the calculated values of thesummary
property, set as key:value pairs where:- the key is either the key defined in the list or the functor name
- the value can be a string, number or null
The calculated values are taken from the summary
config option of the component and the summary
config option of a column.
In case key names in the summary
configs are the same, values are taken from the column's configuration option.
If the value of a spanned cell is initialized with the text
property set as a callback function, the cell content can't be edited.
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }] },
{
width: 150,
id: "population",
header: [{ text: "Population" }],
summary: "count"
}
],
summary: { totalPopulation: ["population", "sum"] },
spans: [
{
row: "rowid",
column: "population",
rowspan: 9,
text: ({ count }) => ("Count population:" + count)
},
],
data: dataset
});
css
- (string) optional, the name of a CSS class applied to a spantooltip
- (boolean|object) optional, enables a tooltip on hovering over the content of a span, or sets the configuration object with the tooltip settings; true by default. When set as an object, thetooltip
config can have the following properties:force
- (optional) forces opening of a tooltip; if set to true, theshowDelay
andhideDelay
settings are ignored, false by defaultshowDelay
- (optional) the time period that should pass before showing a tooltip, in mshideDelay
- (optional) the time period that should pass before hiding a tooltip, in msmargin
- (optional) the margin between the node and tooltipposition
- (optional) the position of a tooltip: "right", "bottom", "center", "left", "top"; "bottom" by defaultcss
- (optional) the style of a tooltip box
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
spans: [
{row:"0", column:"a", rowspan:5 },
{row:"0", column:"b", rowspan:9, text:"<h2>Some content here</h2>"},
{row:"0", column:"c", colspan:2, text:"Some content"},
{row:"10", column:"a", colspan:4, text:"Some header", css:"myCustomColspan"}
],
data: dataset
});
tooltipTemplate
- (function) sets a template for the span tooltip. The value of thetooltipTemplate
property is a callback function which is called with the following parameters:content
- an object with the content of the span tooltip. Contains two properties which are available either from the component's or from the column's configuration:value
- the value rendered in a cell, including the applied templates- an object with the calculated values of the
summary
property, set as key:value pairs where:- the key is either the key defined in the list or the functor name
- the value can be a string, number or null
span
- the object of the column span
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }] },
{
width: 150,
id: "population",
header: [{ text: "Population" }],
summary: "count"
}
],
summary: { totalPopulation: ["population", "sum"] },
spans: [
{
row: "rowid",
column: "population",
rowspan: 9,
text: "Some text",
toltipTemplate: ({ value, count }) => (`value: ${value}; count: ${count}`),
},
],
data: dataset
});
Related sample: Grid. Grouped cells (spans)
Note, that if both the spans
and leftSplit
properties are set in the Grid config, the following rules will be applied:
- All necessary columns or rows will be in a span if the
spans
property is set for the columns located within the frozen area. - If the
spans
property is set for a number of columns or rows placed as in the frozen part as in the movable one, then the columns remained in the movable part only will be in a span.
Tooltip
Grid tooltips
The default configuration of Grid provides tooltips that are rendered when a user hovers over the content of a column's cell. All the tooltips can be controlled via the tooltip configuration property of Grid. By default, the tooltips are enabled. You can disable them, by setting the config to false:
const grid = new dhx.Grid("grid_container", {
columns: [
//columns config
],
data: dataset,
tooltip: false
});
Related sample: Grid. Hiding tooltips
The tooltip
configuration option can be set as an object with the following properties:
force
- (optional) forces opening of a tooltip; if set to true, theshowDelay
andhideDelay
settings are ignored, false by defaultshowDelay
- (optional) the time period that should pass before showing a tooltip, in mshideDelay
- (optional) the time period that should pass before hiding a tooltip, in msmargin
- (optional) the margin between the node and tooltipposition
- (optional) the position of a tooltip: "right", "bottom", "center", "left", "top"; "bottom" by defaultcss
- (optional) the style of a tooltip box
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
tooltip: {
force: true
}
});
Related sample: Grid. Tooltip config
It is also possible to control the header and footer tooltips, independently. There are the headerTooltip
and footerTooltip
Grid configuration properties, that you can use for this purpose:
const grid = new dhx.Grid("grid_container", {
columns: [
// columns config
],
data: dataset,
tooltip: false, // Disable all tooltips
headerTooltip: true, // Enable all header tooltips
footerTooltip: true, // Enable all footer tooltips
});
The headerTooltip
and footerTooltip
configs can be specified as objects the same as the main tooltip
config.
Column and spans tooltips
There is a possibility to enable/disable tooltips for separate columns or spans by using the tooltip
option in the configuration object of the columns
or spans
accordingly:
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }], tooltip: true },
{ width: 150, id: "population", header: [{ text: "Population" }] },
],
spans: [
{ row: "1", column: "country", rowspan: 5, tooltip: true },
],
data: dataset,
tooltip: false
});
The same as with the common Grid tooltips, column and span tooltips can be set as objects with the following properties:
force
- (optional) forces opening of a tooltip; if set to true, theshowDelay
andhideDelay
settings are ignored, false by defaultshowDelay
- (optional) the time period that should pass before showing a tooltip, in mshideDelay
- (optional) the time period that should pass before hiding a tooltip, in msmargin
- (optional) the margin between the node and tooltip; 8px by defaultposition
- (optional) the position of a tooltip: "right", "bottom", "center", "left", "top"; "bottom" by defaultcss
- (optional) the style of a tooltip box
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }], tooltip: { force: true } },
{ width: 150, id: "population", header: [{ text: "Population" }] },
],
spans: [
{ row: "1", column: "country", rowspan: 5, tooltip: { force: true } },
],
data: dataset,
tooltip: false
});
Adding templates for column and spans tooltip
You can add a template for a column or spans tooltip.
- to set a template for a column tooltip use a function which takes 3 parameters:
value
- (required) the value of a cellrow
- (required) an object with all cells in a rowcolumn
- (required) an object with the configuration of a column
Returning false from the function will block showing of the tooltip.
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 200, id: "country", header: [{ text: "Country" }], align: "left",
htmlEnable: true,
tooltipTemplate: function (value, row, column) {
// the template logic
}
},
{ width: 150, id: "population", header: [{ text: "Population" }] },
{ width: 150, id: "yearlyChange", header: [{ text: "Yearly Change" }] },
// more options
],
data: dataset
});
You can check an example of applying a template for a column tooltip.
- to set a template for a spans tooltip use the
tooltipTemplate
configuration property. The value of thetooltipTemplate
property is a callback function which is called with the following parameters:content
- an object with the content of the span tooltip. Contains two properties which are available either from the component's or from the column's configuration:value
- the value rendered in a cell, including the applied templates- an object with the calculated values of the
summary
property, set as key:value pairs where:- the key is either the key defined in the list or the functor name
- the value can be a string, number or null
span
- the object of the column span
const grid = new dhx.Grid("grid_container", {
columns: [
{ width: 200, id: "country", header: [{ text: "Country" }] },
{
width: 150,
id: "population",
header: [{ text: "Population" }],
summary: "count"
}
],
summary: { totalPopulation: ["population", "sum"] },
spans: [
{
row: "rowid",
column: "population",
rowspan: 9,
text: "Some text",
tooltipTemplate: ({ value, count }) => (`value: ${value}; count: ${count}`),
},
],
data: dataset
});
Column header/footer tooltip
The tooltip set for a column enables/disables all its tooltips. However, you can control the tooltips of the column header/footer separately, by specifying the tooltip
property in the corresponding header/footer object inside the column:
const grid = new dhx.Grid("grid_container", {
columns: [
// Enables a tooltip for the country title
{ id: "country", header: [{ text: "Country", tooltip: true }] },
{ id: "population", header: [{ text: "Population" }] },
// more columns
],
data: dataset,
tooltip: false,
});
What is more, you can specify a necessary template for the header/footer tooltip via the tooltipTemplate
configuration property. The value of the tooltipTemplate
property is a callback
function which is called with the following parameters:
content
- an object with the content of the header/footer tooltip. Contains two properties which are available either from the component's or from the column's configuration:value
- (string) the value rendered in a cell, including the applied templates- an object with the calculated values of the
summary
property, set as key:value pairs where:- the key is either the key defined in the list or the functor name
- the value can be a string, number or null
header/footer
- (object) the object of the column header/footercolumn
- (object) the object of a column
and returns a string with the tooltip template for the header/footer or false to disable a tooltip.
const grid = new dhx.Grid("grid_container", {
columns: [
{
width: 150,
id: "population",
header: [
{
text: "Population",
tooltipTemplate: ({ totalPopulation, count }) => `Total: ${totalPopulation}, Count: ${ count }`
}
],
summary: "count"
}
// more columns
],
summary: { totalPopulation: ["population", "sum"] },
data: dataset
Related sample: Grid. Header/footer tooltip
Tooltips for filters
You can provide a tooltip template for the header content of any type, which allows showing tooltips for filters.
Check the example below:
const balanceTemplate = value => {
return value > 0
? `<div style='color:green'>⬆ $${value}</div>`
: `<div style='color:red'>⬇ $${value}</div>`;
};
const grid = new dhx.Grid("grid_container", {
columns: [
{
minWidth: 150,
id: "project",
header: [
{text: "Project"},
{content: "comboFilter", tooltipTemplate: () => "Select project"}
],
footer: [{text: "Total"}],
resizable: true,
draggable: false
},
{
width: 130,
id: "balance",
header: [{text: "Balance"}, {content: "inputFilter"}],
footer: [
{
tooltipTemplate: balanceTemplate
},
],
template: balanceTemplate,
htmlEnable: true,
numberMask: {
prefix: "$"
}
},
],
});