Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 15:30:35 (10 years ago)
Author:
rstoll
Message:
  • Moved logic from DataGridContent to DataGridContentLogic
  • Created interface for IPreprocessingDataManipulation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs

    r10239 r10246  
    2929      if (!dataGridView.ReadOnly) {
    3030        string errorMessage;
    31         if (Content != null && !Content.Validate(e.FormattedValue.ToString(), out errorMessage, e.ColumnIndex)) {
     31        if (Content != null && !Content.DataGridLogic.Validate(e.FormattedValue.ToString(), out errorMessage, e.ColumnIndex)) {
    3232          e.Cancel = true;
    3333          dataGridView.Rows[e.RowIndex].ErrorText = errorMessage;
Note: See TracChangeset for help on using the changeset viewer.