Breaking Changes in v2010 vol 1.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
DXPivotGrid for WPF
BC759: PivotGridControl.DataFieldUnboundExpressionMode property type was changed to UnboundExpressionMode This was necessary to provide the capability to assign this property from XAML. You should replace DataFieldUnboundExpressionMode with UnboundExpressionMode in your C# and VB code.
eXpressApp Framework
BC830: The CalculatedModelNodeList<> class has been moved from the DevExpress.ExpressApp.SystemModule namespace to the DevExpress.ExpressApp.Model one. BC800: The SelectedInterval property of the IModelListViewScheduler model interface has been replaced with the SelectedIntervalStart and SelectedIntervalEnd properties of DateTime type.
Before
<?xml version="1.0" encoding="utf-8" ?>
<Application>
<Views>
<ListView Id="Event_ListView" SchedulerViewType="WorkWeek" SelectedInterval="07/12/2010 00:00:00;07/17/2010 05:00:00" />
</Views>
</Application>
after
<?xml version="1.0" encoding="utf-8" ?>
<Application>
<Views>
<ListView Id="Event_ListView" SchedulerViewType="WorkWeek" SelectedIntervalStart="07/12/2010 00:00:00" SelectedIntervalEnd="07/17/2010 05:00:00" />
</Views>
</Application>
BC814: The TreeListEditorController class is removed Previously, this controller was used to auto-commit changes in the TreeList editor when the node being edited lost focus. This functionality is provided by the ListViewAutoCommitController controller now.
XtraCharts Suite
BC825: Currently, the GridLines.Visible property hides only major grid lines. To hide minor grid lines, use the MinorVisible property.
XtraReports Suite
|