Hey guys,
I need a combo box that validates the value entered and also it allows empty values.
DropDownValidate seems to do the trick since it offers type-ahead functionality and it also verifies the value entered is part of the data source.
The problem is that even when the underlying column type is string (obviously allows nulls) and also an empty item (and a null item) has been added to the list, the grid keeps showing the following message:
"Unable to update the data value: Value in the editor is not valid"
Is this expected behavior? so does DropDownValidate definitely not like nulls?
I read somewhere that a solution is to validate manually with the BeforeCellUpdate event. So I was writing to see if this the "best and easy" way to do it. Since it looks to me that the DropDownValidate style has a silly limitation.
Thanks.
ureys84,
ureyes84 said:Is this expected behavior?
There are two options:
Hey thanks for your reply.
I had already gone for this first option, I had added a value with an empty string and I got the same result. That's exactly the reason why I asked if it was the expected behavior.
I guess I'll have to go for the second option.
Thanks !