Releases: syncfusion/ej2-angular-ui-components
v33.1.45
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v33.1.44
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.9
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.8
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.7
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.5
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.4
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I806066- Resolved selection tool not activated issue for nodes that exceed the page settings bounds.#I808217- Resolved the undefined exception occurs while setting allowDrag to false for symbol palette.
Dialog
Bug Fixes
#I802885- The issue related to abnormal dialog behaviour during resize and drag operations has been resolved.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownList
Bug fixes
#I801864- The issue with programmatic value binding in a virtualization dropdown has been fixed.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
Maps
Bug fixes
#I807214- The map will no longer pan after resetting the zoom.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
QueryBuilder
Bug Fixes
#I802697 - Fixed the issue where Clone Group was inserting cloned rules into the parent group instead of creating a new root-level sibling group.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
I805487- Resolved an issue where data was not added correctly using theaddRecordmethod when batch editing, persistence, and multiple selection were enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.2.3
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DocumentEditor
Bug Fixes
#I772957 - Resolved an issue where bookmarks were removed when selecting and inserting text using double tap.
#I789749 - Fixed improper bookmark rendering when inserted after a paragraph.
#I790909 - Prevented duplicate content when pasting with the grouping undo feature enabled.
#I801740 - Fixed a script error that occurred when downloading the document as a DOCX file.
#I790276 - Resolved a script error that occurred after deleting a table column and the entire table.
#I795506 - Fixed an issue where endnotes were not preserved after performing an undo action in the Document Editor.
DropDownTree
Bug Fixes
#FB72255- The issue in Dropdown Tree where theselectableproperty set tofalsedid not prevent interaction in checkbox mode has been resolved.
Grid
Bug fixes
#I804809, #I804836- The issue where grouping breaks in ascending order whennull/undefinedvalues are present in a string type column has been resolved.#I803723- Fixed inconsistent filtered icon appearance across all themes.#I807398- Resolved an issue where a script error occurred whenallowResizingis enabled and the last stacked header has no visible columns.#I803667- Fixed an issue wheregetSelectedRecordsreturned only the current page records in therowSelectedevent whenisRowSelectableis enabled.#I794358- Provided support to update the grid properties when changing the dataSource and columns through thechangeDataSourcemethod.
ListView
Feature
#I770932– Introduced the newenabledproperty to enable or disable the ListView, replacing the olderenableAPI. This update improves consistency with standard naming conventions and enhances clarity in documentation.
Example Usage
import {ListView} from '@syncfusion/ej2-lists';
let arts: string[] = ["Artwork", "Abstract", "Modern Painting", "Ceramics", "Animation Art", "Oil Painting"];
//Initialize ListView control
let listviewObject: ListView = new ListView({
//set the data to datasource property
dataSource: arts,
enabled: false
});
//Render initialized ListView
listviewObject.appendTo("#list");Deprecated
- The
enableproperty has been deprecated and replaced withenabledto align with API standards. The deprecatedenableproperty will be supported for four major releases before removal.
MultiSelect
Bug Fixes
#I694939- Fixed an issue where preselected values were not displayed correctly in Angular when using virtualization with checkbox mode.
PDF Viewer
Bug Fixes
#I800598- Resolved an issue where the text selection position was not proper in the customer provided PDF document.#I802146- Resolved an issue where the selected annotation did not appear in the viewport at higher zoom levels in the customer provided PDF document.
Pivot Table
Bug Fixes
I198038- The localization text for the column chart and column axis label now renders properly in the pivot table.
Spreadsheet
Bug fixes
#I795894- Issue with "cell values containing large decimal values not rounding correctly when a number format is applied" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tooltip
Bug Fixes
#T802026- Fixed an issue where the Tooltip rendered HTML entities as symbols even when enableHtmlParse and enableHtmlSanitizer were disabled.
Tree Grid
Bug Fixes
-
I806463- Resolved an issue where theactionFailureevent was triggered even when the checkbox column and the tree column were the same. -
#F71783- Fixed an issue where the next set of data not rendered on collapsing records when infinite scrolling is enabled.
TreeView
Bug Fixes
#I803798- Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
v32.1.25
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
Chart
Bug Fixes
- The
columnWidthInPixelproperty works correctly when theenableSideBySidePlacementproperty is disabled.
ComboBox
Bug Fixes
#I801682- Resolved the issue where arrow key navigation failed when Autofill was enabled during filtering.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I786872- Resolved an issue where connectors drawn from ports could get stuck and display a blocked cursor.
Dialog
Bug Fixes
#T801239- Fixed an issue where focus escaped the modal dialog during Tab navigation when footer buttons were hidden or disabled.
DocumentEditor
Bug Fixes
#798716 - Resolved the bookmark highlight color issue.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I795201- Resolved an issue where the scrollbar position was not retained after toggling columns in the column chooser when usingvirtualizationalong with lazy load grouping.#I803519- Fixed an issue where a visual glitch occurred during vertical scrolling when Grid has fixed height and frozen rows.
MultiColumn ComboBox
Bug Fixes
#I798146- Resolved the issue where theDataSourcewas not updating when using theupdateDatamethod with custom filtering.
MultiSelect
Bug Fixes
#I798150- Resolved the issue where the Multiselect popup did not close when clicking outside while using theshowPopupmethod.
PDF Viewer
Bug Fixes
#I801378- Fixed an issue where annotations and comments were missing in a customer provided document due to a duplicate annotation name.#I802177- Fixed an issue where form field content was not fully visible when theenableFormDesignerAPI was set to false.
Pivot Table
Bug Fixes
I801715- The drag-and-drop icon now displays correctly for calculated fields when paging is enabled in the Pivot Table.
QueryBuilder
Bug Fixes
#I802697 - Fixed duplicate rules appearing when cloning nested groups in QueryBuilder.
RichTextEditor
Bug Fixes
-
#I802471- Now, the extra blank lines appearing when switching between Preview and Source View after inserting block elements has now been resolved. -
#I803837- Now, the Font Size toolbar option displays the correct value that corresponds to the current cursor position in the Rich Text Editor. -
#I803207- Now, pressing the Enter key when the cursor is placed immediately after an image with a caption functions properly without causing any errors.
Schedule
Bug fixes
#I799572- Fixed an issue where the wrong date range was shown in the quick info popup for a recurrence appointment in Agenda view.
Splitter
Bug Fixes
#I796885- Resolved the issue where the aria-label on splitter resize buttons was not updating when changing culture.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tree Grid
Bug Fixes
-I798336 - Resolved the issue where selection was not cleared after actions when Single Selection and persistSelection were enabled.
v32.1.24
Block Editor
Bug Fixes
- Now the issues with table block row/column copy and undo redo actions has been resolved.
Chart
Bug Fixes
I801695- Multi-series chart data now exports properly to Excel.
Chat UI
Bug Fixes
- Now the actual event argument parameters of the
AttachmentClickEventArgswill be accessible now.
ComboBox
Bug Fixes
#I794030- Resolved a memory leak issue that occurred when using Angular Material Dialog in combination with Syncfusion ComboBox.
DatePicker
Bug Fixes
-
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value. -
#I69736- Resolved an issue where the error class was not applied immediately when the max date was set dynamically.
DateRangePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
DateTimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Diagram
Bug Fixes
#I798751- The offsetY value applied through programmatically is now working well for group node.#F197953- The document undefined error in Next JS platform has been resolved.
DocumentEditor
Bug Fixes
#I791620 - Resolved the issue in delete a space between endnote references and the endnote itself disappears.
#I793341 - Spell Check Options is not visible in Context Menu Even After 'Ignore Once' Action.
DropDownButton
Bug Fixes
I801275- Resolved memory leak issue in the window resize handler of DropDownButton.
GanttChart
Bug fixes
F159354- Issue in locale text of predecessor tooltip has been fixed.
Grid
Bug fixes
#I799719- Resolved an issue where the filter option was shown as enabled in the column menu when the filter item was included incolumnMenuItemsandallowFilteringis set to false.#I798391- Fixed an issue where grid focus behaviour did not work correctly whenenableHeaderFocusis set to false.
MultiSelect
Bug Fixes
#I795891- Fixed an issue where the MultiSelect Dropdown with virtualization failed at a specific number of record count.
PDF Viewer
Bug Fixes
#I802591- Fixed an issue where the freetext annotation moved outside the PDF page when using a large font size and resizing or dragging it beyond the page boundaries.#I798752- Fixed an issue that caused difficulties in resizing the newly added Calibrate Area annotation when theenableShapeLabelAPI was set to true.
RichTextEditor
Bug Fixes
#I801343- Now images copied using the browser context menu and pasted into the editor will be uploaded to the server with anuploaderpopup whensaveUrlis configured.
Spreadsheet
Bug fixes
#I796692- Issue with "the defined names not working withnon-ASCIIcharacters" has been resolved.#I798245- Issue with "theTIMEandNOWformulas returned incorrect output when the spreadsheet was rendered in other culture" has been resolved.#I798245- Issue with "theTEXTformula returned an empty string instead of the month name when using themmmmformat" has been resolved.#I798245- Issue with "theVLOOKUPformula returned#REF!error after adding and deleting a non formula referenced sheet" has been resolved.
TimePicker
Bug Fixes
#I792230- Resolved an issue where the top border in the Material theme did not render correctly after selecting a value.
Tree Grid
Bug Fixes
I792894- Resolved TreeGrid scroll reset after cell editing with aggregates enabled