Data Validation

Data validation is a feature of RadSpreadsheet that helps you define restrictions on what data can be entered in a cell. This is achieved by defining data validation rules which consist of a rule type, one or more arguments and a comparison operator for some of the rule types. You can specify messages that users will see before editing a cell or after entering invalid data.

How to Set Data Validation Rules

You can easily set data validation rules using the data validation dialog which can be shown from the Data tab in the predefined RibbonView. Figure 1 shows the dialog.

Figure 1: Data Validation Dialog

Rad Spreadsheet UI Data Validation 01

Detailed information on the different validation rules is available in the Data Validation for SpreadProcessing article.

The dialog contains two other tabs - one allowing to customize the input message that is shown when the cell is selected, and one allowing to change the alert shown when there is an error in the cell.

Circle Invalid Data

Data Validation allows you to turn on the option to circle invalid data. This way you can always see if there is any invalid data in your document. You can toggle this option using the ribbon or through code.

Figure 2 shows hot to turn the option on and the result when invalid data is present in the worksheet.

Figure 2: Circle Invalid Data

Rad Spreadsheet UI Data Validation 01

Example 1 shows the use of the two methods that toggle this functionality - CircleInvalidData() and ClearInvalidDataCircles().

Example 1: Turn on and off Invalid Data Circles.

if (showCircles) 
{ 
    this.radSpreadsheet.ActiveWorksheetEditor.CircleInvalidData(); 
} 
else 
{ 
    this.radSpreadsheet.ActiveWorksheetEditor.ClearInvalidDataCircles(); 
} 
If showCircles Then 
    Me.radSpreadsheet.ActiveWorksheetEditor.CircleInvalidData() 
Else 
    Me.radSpreadsheet.ActiveWorksheetEditor.ClearInvalidDataCircles() 
End If 

See Also

In this article