Hi David,
The stale build issue was a red herring - it turns out that the test expression we posted had "userId" where it should have been "userID". The corrected test expression:
.. produces the expected result (lack of validation error) in builds after 8/20.
However, as to your original test, we notice a serverConstructor is used, so we can't fully run the test - what's in that serverConstructor? If you remove it and run your code against a post 8/20 build, are you still seeing a problem using "update" with isUnique?
The stale build issue was a red herring - it turns out that the test expression we posted had "userId" where it should have been "userID". The corrected test expression:
Code:
var boundForm = isc_DynamicForm_0; boundForm.editRecord({userID:1, email:"kamirov@server.com", firstName:"Dave", surname:"Barker"}) boundForm.validate()
However, as to your original test, we notice a serverConstructor is used, so we can't fully run the test - what's in that serverConstructor? If you remove it and run your code against a post 8/20 build, are you still seeing a problem using "update" with isUnique?
Comment