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.