Hello,
I'm trying to set a validation rule in my in-place editor, to flag values below zero. It works fine with any value besides zero, 0.01, or -0.01 etc. But if set to exactly zero, it seems to block the post, but does not trigger the set 'validation' function, or provide any default error message in the UI, if no validation function is provided.
Here is my validation rule:
validationRules="new { AverageFee = new { min= 0 } }"
Thanks very much.