|
@@ -637,7 +637,6 @@ class VNETDialog(wx.Dialog):
|
|
self.inputData['alayer'].SetValue("")
|
|
self.inputData['alayer'].SetValue("")
|
|
self.inputData['nlayer'].SetValue("")
|
|
self.inputData['nlayer'].SetValue("")
|
|
for sel in ['afcolumn', 'abcolumn', 'ncolumn']:
|
|
for sel in ['afcolumn', 'abcolumn', 'ncolumn']:
|
|
- self.inputData[sel].Clear()
|
|
|
|
self.inputData[sel].SetValue("")
|
|
self.inputData[sel].SetValue("")
|
|
return
|
|
return
|
|
elif itemsLen == 1:
|
|
elif itemsLen == 1:
|
|
@@ -719,7 +718,7 @@ class VNETDialog(wx.Dialog):
|
|
|
|
|
|
if not colVal:
|
|
if not colVal:
|
|
continue
|
|
continue
|
|
- if colVal not in self.inputData[colInptF].GetItems():
|
|
|
|
|
|
+ if colVal != self.inputData[colInptF].GetValue():
|
|
errInput[col] = colVal
|
|
errInput[col] = colVal
|
|
|
|
|
|
return errInput
|
|
return errInput
|