In Angular 1 (1.5) the form controller had a $setSubmitted() method that allowed you to programmatically set the .$submitted flag to true.
How can I do this in 2 via the NgForm object? I do not want to use the template, aka (ngSubmit)="".
I've tried <formname>.ngSubmit.emit(), but it does not set .submitted to true.