Hi, I have a field defined as:
and I noticed that when performing an add, validation is triggered on the field for the integer type.
This happens even though the field is then ignored for the INSERT.
Actually, there's a mistake is in my code since the field should have been of type text, but I was wondering whether it is normal that it still gets validated even if it will later be ignored.
Code:
<field name="foobar" type="integer" customSelectExpression="myTable.foo" customSQL="true"/>
This happens even though the field is then ignored for the INSERT.
Actually, there's a mistake is in my code since the field should have been of type text, but I was wondering whether it is normal that it still gets validated even if it will later be ignored.
Comment