Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
70e3831
fix movable columns and range selection
azmy60 Mar 13, 2024
724ef03
refactor column events naming
azmy60 Mar 18, 2024
fc0c33f
make autoFocus optional for SelectRange
azmy60 Apr 4, 2024
68bd44e
fix initial focus
azmy60 Apr 4, 2024
fa37e11
Merge remote-tracking branch 'fork/fix-movable-columns-and-range-sele…
azmy60 Apr 5, 2024
3708225
Merge remote-tracking branch 'azmy60/feat/selectrange-autofocus-optio…
azmy60 Apr 5, 2024
227b1b8
fix SelectRange keyboard navigation when there is a rowheader
azmy60 Apr 6, 2024
488d97b
Merge remote-tracking branch 'azmy60/fix/initial-focus' into build-6.2.0
azmy60 Apr 5, 2024
4209dc7
bump version
azmy60 Apr 5, 2024
8ca9d0f
Merge remote-tracking branch 'azmy60/fix/selectrange-navigation' into…
azmy60 Apr 6, 2024
9859143
bump version
azmy60 Apr 6, 2024
c5ab0ba
fix getCells does not return cell components
azmy60 Apr 16, 2024
76c253a
bump version
azmy60 Apr 17, 2024
c569ab0
fix jump navigation
azmy60 Apr 20, 2024
415a5dd
bump version
azmy60 Apr 20, 2024
7d1760a
trap focus key navigation
azmy60 Apr 20, 2024
9de47e7
pressing arrow keys without shift should break the expanded range
azmy60 Apr 22, 2024
99b00b4
fix autoscroll on long columns
azmy60 Apr 22, 2024
32107a6
bump version
azmy60 Apr 22, 2024
c96c31b
fix navigation conflict with SelectRange and Edit
azmy60 Jun 11, 2024
7859425
blur editor after pressing next/prev
azmy60 Jun 11, 2024
b8d535c
bump version
azmy60 Jun 11, 2024
2642a62
Update README.md
azmy60 Jun 11, 2024
13f9a9b
fix errors when handling BigInt
azmy60 Dec 10, 2024
1370186
build v6.2.0-bks.8
azmy60 Dec 10, 2024
5ed29ad
update readme
azmy60 Dec 10, 2024
3365233
Merge branch 'master' into build-6.2.0
azmy60 Jan 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
This branch contains version 6.2.0 including these fixes:
- make autoFocus optional for SelectRange https://github.com/olifolkerd/tabulator/pull/4452
- Break expanded range after pressing arrow keys https://github.com/olifolkerd/tabulator/pull/4478
- fix autoscroll on long columns https://github.com/olifolkerd/tabulator/pull/4479
- fix navigation conflict with SelectRange and Edit https://github.com/olifolkerd/tabulator/pull/4516
- blur editor after pressing next/prev https://github.com/olifolkerd/tabulator/pull/4517
- 13f9a9b9 fix errors when handling BigInt

<p align="center">
<img height="200" src="http://tabulator.info/images/logos/t_hollow.png">
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/js/core/ColumnManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export default class ColumnManager extends CoreFeature {
break;

default:
if(!isNaN(value) && value !== ""){
if(!isNaN(Number(value)) && value !== ""){
sorter = "number";
}else{
if(value.match(/((^[0-9]+[a-z]+)|(^[a-z]+[0-9]+))+$/i)){
Expand Down
25 changes: 25 additions & 0 deletions src/js/modules/Edit/Edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand Down Expand Up @@ -208,6 +212,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand Down Expand Up @@ -238,6 +246,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand All @@ -259,6 +271,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand All @@ -280,6 +296,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand All @@ -301,6 +321,10 @@ export default class Edit extends Module{

if(cell){

if(cell.column.modules.edit.navigationBlocked){
return false;
}

if(e){
e.preventDefault();
}
Expand Down Expand Up @@ -401,6 +425,7 @@ export default class Edit extends Module{
convertEmptyValues:convertEmpty,
editorEmptyValue:column.definition.editorEmptyValue,
editorEmptyValueFunc:column.definition.editorEmptyValueFunc,
navigationBlocked: false,
};

//set column editor
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/Sort/Sort.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ export default class Sort extends Module{
break;

default:
if(!isNaN(value) && value !== ""){
if(!isNaN(Number(value)) && value !== ""){
sorter = "number";
}else{
if(value.match(/((^[0-9]+[a-z]+)|(^[a-z]+[0-9]+))+$/i)){
Expand Down
Loading