$this->form->getState() without firing validations?

Is it possible to get the data using ->getState() without triggering the validation? I want to implement a save draft feature, that is why.
Solution
$this->form->getRawState()
Was this page helpful?