Breaking Changes in v2009 vol 3.3
This page lists important behavior and API changes, which were introduced in this version. If you already have projects using DXperience, you will need to peruse this list in order to understand the changes you might need to make to your source code to support this new release. Note that we only publish the changes to the public interface of our controls. We reserve the right to change the protected, internal, or private interfaces when needed.
Table of Contents
All ASP.NET Components
ASPxGridView and Editors Suite
DXEditors for WPF
DXGrid for WPF
eXpressApp Framework
BC456: Localization - PagesText, AllPagesText and LoadingPanelText localization items of ASPxGridView are now obsolete. The DevExpress.ASPxGridView control's PagesText, AllPagesText and LoadingPanelText localization items were removed from the Application Mode. Use the DevExpress.ASPxExperience's following items instead:
Pager_SummaryFormat,
Pager_SummaryAllPagesFormat,
Loading. BC483: Navigation - Now, empty navigation groups aren't displayed by the navigation control. BC475: The CustomizeTemplate is now raised for custom templates. Before it was raised only for default templates. BC479: XafExtendedFilterControl - The hierarchy of child tab controls has been changed. Now, child tab controls are placed on panel controls which in turn are placed on tabs.
Previously, to access child controls you would use the following code:
...
Control.FilterTab.Controls
Control.TextTab.Controls
...
Now, the following code should be used instead:
...
Control.FilterTab.Controls[0].Controls
Control.TextTab.Controls[0].Controls
...
|