Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V21.2
  • SnapControlOptions.DataSourceOptions Property

    Allows you to specify whether to prohibit the ObjectDataSource data retrieval, prompt the user or silently load the data.

    Namespace: DevExpress.Snap

    Assembly: DevExpress.Snap.v21.2.dll

    NuGet Package: DevExpress.Win.Snap

    Declaration

    public DataSourceOptionsContainer DataSourceOptions { get; }

    Property Value

    Type Description
    DataSourceOptionsContainer

    An object that contains data source options.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to DataSourceOptions
    SnapControl
    .Options .DataSourceOptions

    Remarks

    If the DataSourceOptions specifies prompting the user, the IObjectDataSourceValidationService service is called for validation. You can implement your own service and provide a custom validation instead of displaying the default warning dialog.

    Example

    View Example

    snapControl1.Options.DataSourceOptions.ObjectDataSourceLoadingBehavior = DevExpress.DataAccess.DocumentLoadingBehavior.Prompt;
    
    See Also