vdl-datagrid
Render a table of related array entities. The array entities for each column are defined as child <vdl-datagrid-column>
elements. The common index sets are automatically detected. The table will emit the following events on user interaction:
selection-changed
- Triggered whenever the selected cell is changed, e.g. when user clicks on a cell or starts to edit a cell. This event is triggered on the vdl-datagrid element. The event handler also receives context of the selection, which includes selection cell list, active cell, selection type and whether the selected row changed. This object is describe below asSelectionChangedDetails
.selection-removed
- Triggered whenever the selection is removed. This event is triggered on the vdl-datagrid element.table-rendered
- Triggered each time the table finishes rendering. This event is triggered on the vdl-datagrid element and the event handler receives the table id, number of rows and number of columns in the table as part of theevt.details
.
compact
class to the parent
vdl-page
to render the Table with compact style.
SelectionChangedDetails: {
selection: CellDetails[], // An array of cells in the selected row
activeCell: CellDetails, // The cell that was clicked when selecting the row
rowData: any[], // Array of raw data for the selected row
selectionType: 'ROW',
selectionChanged: boolean, // Whether the selected row was changed. This is true if the selection is updated to a different row
}
CellDetails: {
value: any,
rowData: any[],
element: HTMLElement,
displayPosition: {row: number, column: number}
}
since 5.2
Example
<vdl-var name="selectedRowData" value="=[]"></vdl-var>
<vdl-action-group name="handleSelectionChanged">
<vdl-action-set-var var="selectedRowData" value="=value ? value.activeCell.rowData : []"></vdl-action-set-var>
</vdl-action-group>
<vdl-action-group name="handleSelectionRemoved">
<vdl-action-set-var var="selectedRowData" value="=[]"></vdl-action-set-var>
</vdl-action-group>
<vdl-action-group name="handleRenderEvent">
<vdl-action-message text="='table rendered: rows ' + evt.detail.numberOfRows + ', columns: ' + evt.detail.numberOfColumns"></vdl-action-message>
</vdl-action-group>
<vdl-datagrid vdl-event="'selection-changed': actions.handleSelectionChanged, 'selection-removed': actions.handleSelectionRemoved, 'table-rendered': actions.handleRenderEvent">
<vdl-datagrid-column entity="MY_ARRAY_1"></vdl-datagrid-column>
<vdl-datagrid-column entity="MY_ARRAY_2"></vdl-datagrid-column>
</vdl-datagrid>
Attributes
add-remove-row | Setting this will show the add-remove row buttons at the bottom of the grid. Set to "true" to prompt for index selection on row add. Set to addrow-autoinc will switch the behaviour to allow new index values to be created, incrementing from the highest value in the set(s).This attribute can not be set when "data" attribute is being used. | since 5.2 | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
always-show-selection | Whether to display selection on inactive grids. Set to true to keep selection on a grid when it becomes inactive. | since 5.2 | ||||||||||||||||||||||||||||||||
cell-render | A custom cell render function or expression that is applied to all cells in the datagrid. This affects the rendered output of the cell only (sorting and filtering are unaffected). The cell-render function should return either the original data unchanged, some new data to display in the cell or a new HTML element to insert into the cell. In addition to returning the original or modified cell value it can also modify the HTML cellElement that is passed in. If a cell-render function is provided on vdl-datagrid and a child vdl-datagrid-column has a render function, then the vdl-datagrid-column render function will take precedence. Note that if you specify a cell render function then labels won't be applied to any cells within the entire table.
|
since 5.3 | requires expression | |||||||||||||||||||||||||||||||
class | Space-separated list of the classes of the element. | since 5.2 | ||||||||||||||||||||||||||||||||
column-definition | Specify how columns are defined. This attribute can only be used in combination with the "data" attribute. Allowed values are: column-definition="auto" - Generates columns from the data (default)column-definition="labels" - Uses the "label" and "value" properties on an object. Data will be reduced to one row.column-definition="=[{ field: "name" }, { field: "age" }]" - An array of objects defining the column properties.When using column properties, you should supply a column definition object for each column you require and each object must have a property named 'field'. The value of the field property must reference a property on the data. Below is an example showing how columns, and even individual cells can be made editable. This also shows how dropdown options can be supplied with labels: data =
Callback to determine if a cell is editable:
Callback to construct gender options:
column-definition =
Object passed to the cell-event handler: Handling the cell-edit event:
Callback to validate a cell:
Column definition objects accept the following configuration properties:
|
since 5.2 | accepts expression | |||||||||||||||||||||||||||||||
column-filter | Set this to true to enable the column filters. This will show a header row with filter inputs for each column. | since 5.2 | ||||||||||||||||||||||||||||||||
data | Use this attribute to pass data directly to vdl-datagrid. Supported formats are; array of primitives: [1,2,3] , Array of objects: [{... prop: 1}] , or an array of arrays: [...["a",1]] |
since 5.2 | requires expression | |||||||||||||||||||||||||||||||
defer-column-filter | Set this to true to defer column filters from applying until the input loses focus. | since 5.3 | accepts expression | |||||||||||||||||||||||||||||||
export-filename | The name of the file exported from the table. A file extension will be assigned. | since 5.2 | accepts expression | |||||||||||||||||||||||||||||||
freeze-columns | The number of columns to freeze in the table starting from the left hand column. Works best when vdl-datagrid is in a fixed width container | since 5.2 | ||||||||||||||||||||||||||||||||
height | Grid height, When page-mode is set to scrolling you can set the height of the grid to something other than the default. | since 5.2 | ||||||||||||||||||||||||||||||||
id | Specify an element id for the grid. Useful if you later want to target the grid using a selector. If not given then an id will be generated. | since 5.2 | ||||||||||||||||||||||||||||||||
page-mode | By default the grid will show all rows in scrolling mode. Set this attribute to paged to enable grid pagination. | since 5.2 | ||||||||||||||||||||||||||||||||
page-size | The number of rows to show per-page in paged mode. Defaults to 50. | since 5.2 | ||||||||||||||||||||||||||||||||
row-filter | Expression to be used for filtering the rows of a <vdl-datagrid>. This must be an expression and should resolve to either a function or a boolean value. If a function it will be executed when grid updates. The function will have the following signature (rowData, indices) and should return a boolean.
|
since 5.2 | requires expression | |||||||||||||||||||||||||||||||
save-state | Set this to false to disable grid state saving. By default grid state is stored in the user's browser session so that user settings (e.g. page, sorting and search) are preserved if grid data is reloaded. | since 5.2 | ||||||||||||||||||||||||||||||||
scenario | The default scenario to use for fetching data in the grid. This can be overridden per column but the default will be used when a column does not specify a particular scenario and the index sets will be fetched from the default scenario. This attribute will not affect the scenario variable in any render expression on the datagrid columns.This attribute can not be set when "data" attribute is being used. | since 5.2 | accepts expression | |||||||||||||||||||||||||||||||
show-export | Set this to true to display an export to CSV button. | since 5.2 | accepts expression | |||||||||||||||||||||||||||||||
tooltip-render | A custom render function or expression that is called for each cell in the datagrid and defines how to display the cell's tooltip.It should return either a string or HTML content to display inside the tooltip, a DOM node to replace the tooltip or an undefined/nullish value to hide the tooltip.The tooltip is not displayed on the bottom-calc row's cells.
|
since 5.3 | requires expression | |||||||||||||||||||||||||||||||
width | Set the grid to a fixed width, in pixels. Accepts an integer value. If set to the string custom then the grid width is calculated by adding up all the widths of the columns in the grid. If a column doesn't have a width specified then it is given a default value of 100px. | since 5.2 |
© 2001-2024 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.