In my form view I have added a simple button of type object-
<button name="select_call_api" string="select" type="object"/>
And in my python model file I have added the function call-
def select_call_api(self):
print("select_call_api called")
But on button click it's by default doing form validation. Like if there are any mandatory fields and
they are not filled, then it's throwing "The following fields are invalid:" Error.
How do I disable or skip the form validation?