Releases: nhn/tui.grid
Releases · nhn/tui.grid
2.0.0
Changed
- Name of APIs (options, method, custom event) (Applied common rules)
- Arrange
list
terminology : removed unnecessarylist
term from API name, separating that pure data isdata
and processed data isrows
grid.setData(); // before: setRowList grid.getRows(); // before: getRowList
- Removed
is-
prefix option
->options
- Arrange
- Some specification
- See all changes of v2.0.0 : https://github.com/nhnent/tui.grid/wiki/TUI-Grid-2.0.0-Migration-Guide
Added
getSortState()
: Enabled to get current sorting column’s state (columnName
,ascending
)
API
1.9.0
New
findRows()
: Find rows by column name and valuecheck/uncheck
custom event occurs when a checkbox in row header is selected
Fixed
- Fixed
rowKey
value in a parameter of custom mouse event when usingkeyColumnName
option with string-typed column - Fixed scroll jumping bug when using smart rendering
API
1.8.1
Fixed
- Fixed calculation of rendering range when rowspan exsists on the last row
1.8.0
Changed
- With
useViewMode: false
, cells whose type is one ofcheckbox
,radio
,select
change their own value when thechange
event is triggered
Added
- Added
copyOption
to thecolumnModelList
which overrides the globalcopyOption
and defines column specific settings
API
1.7.2
Changed
- Improved clipboard pasting feature : duplicate data according to the area
1.7.1
1.7.0
Changed
- Adjusting every width of columns to the width of the container no longer occurs during and after changing the width of single column
getModifiedRowList()
no longer contains data of columns specified in thefilteringColumnList
options
New
setBodyHeight()
: Sets the height of body-areareadDataMethod
option forNet
Add-on : Sets the HTTP method forreadData
API
API
1.6.2
Fixed
- Fixed script error occurring when setting
selectType
toradio
and clicking a cell. - Fixed dummy-rows rendering issues.
- Prevented
bodyHeight
from being changed when rows are added or removed, ifisFixedHeight
is set to true.
Etc
- Shows warning message if the
isFixedRowHeight
(default: true) andnotUseSmartRendering
(default: false) both are set to false.
1.6.1
Fixed
- Fixed missing dummy rows during initial render
1.6.0
New
- Added
resetColumnWidths()
method - Added
bodyHeight
,isFixedHeight
,isFixedRowHeight
option - Added sub options to
columnModelList
whiteSpace
:nowrap
(default),normal
dataType
: onlynumber
type is supported currentlyvalign
:top
,middle
(default),bottom
- Enabled to set
_extraData.height
property to specify the height of row
Fixed
- State layer no longer overlaps the scrollbar area
- Fixed sorting issues related to
null
orundefined
data - Fixed validation issues with
isRequired
option - Fixed error occurs when clicking cells with
singleClickEdit
andshowDummyRow
option
Deprecated
- Deprecated
displayRowCount
option. UsebodyHeight
andisFixedHeight
instead