Breaking Changes in v2011 vol 2.6
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
ASPxHtmlEditor
DXDocking for WPF
eXpressApp Framework
BC1442: CriteriaPropertyEditor - The @RangeStart and @RangeEnd read-only parameters are now converted to the RangeStart and RangeEnd functions operators.
Use the Criteria Property Editor's Text tab to type these function operator names into a criteria. To see an example, open the FeatureCenter demo application and navigate to the KPI section. Open the Definition item and click the Text tab. You will see a criteria that uses these function operators.
See also: BC1416 breaking change.
BC1453: FileDataPropertyEditor.Web - A file selected via the File Upload dialog is uploaded to the server immediately after clicking the Open button Previously, files were uploaded to the server after executing the Save Action . Now, files are uploaded immediately. BC1445: LayoutGroupTemplateContainer - The IsContentVisible property has been marked obsolete as it is not used anymore BC1446: LayoutItemTemplateContainerBase - The Visible property value cannot be changed directly anymore.
Add the LayoutItemTemplateContainerBase.ControlVisibilityKey key to the LayoutItemTemplateContainerBase.Visibility BoolList via the BoolList.SetItemValue method instead. For instance, replace this code:
[C#]
item.Visible = false;
with:
[C#]
item.Visibility.SetItemValue(LayoutItemTemplateContainerBase.ControlVisibilityKey, false)
XtraCharts Suite
XtraEditors Library
BC1456: The FilterControl.RefreshNodes method has been removed. There is no need to manually refresh the FilterControl's nodes. The FilterControl automatically updates nodes when relative properties are changed.
XtraReports Suite
|