|
@@ -131,7 +131,7 @@ namespace InABox.DynamicGrid
|
|
|
if(window.ShowDialog() == true)
|
|
|
{
|
|
|
Filter = getMethod.Invoke(window, Array.Empty<object>()) as IFilter;
|
|
|
- TextBox.Text = Filter?.AsOData();
|
|
|
+ TextBox.Text = Filter?.ToString();
|
|
|
CheckChanged();
|
|
|
}
|
|
|
}
|
|
@@ -147,7 +147,7 @@ namespace InABox.DynamicGrid
|
|
|
Filter = Serialization.Deserialize(typeof(Filter<>).MakeGenericType(FilterType), value) as IFilter;
|
|
|
else
|
|
|
Filter = null;
|
|
|
- TextBox.Text = Filter?.AsOData();
|
|
|
+ TextBox.Text = Filter?.ToString();
|
|
|
}
|
|
|
}
|
|
|
}
|