Explorar o código

Support for setting the value to null in example

tznind %!s(int64=4) %!d(string=hai) anos
pai
achega
85f0e9667c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      UICatalog/Scenarios/TableEditor.cs

+ 1 - 1
UICatalog/Scenarios/TableEditor.cs

@@ -79,7 +79,7 @@ namespace UICatalog.Scenarios {
 			if(okPressed) {
 
 				try {
-					tableView.Table.Rows[tableView.SelectedRow][tableView.SelectedColumn] = tf.Text;
+					tableView.Table.Rows[tableView.SelectedRow][tableView.SelectedColumn] = string.IsNullOrWhiteSpace(tf.Text.ToString()) ? DBNull.Value : (object)tf.Text;
 				}
 				catch(Exception ex) {
 					MessageBox.ErrorQuery(60,20,"Failed to set text", ex.Message,"Ok");