DLoT

Results 6 comments of DLoT

Hi Amit, what's your template look like? > $validator.validate($scope, **_'formSubmit'**_) formSubmit has to be the form name or a validation group

Try to give your form a name ``` html ``` and then pass it to the validateFn ``` javascript $validator.validate($scope, 'FORM_NAME') ``` or use validator-group on the element and pass...

i think you looking for [validator-group] use validator-group="someGroup" in your form element and then $validator.validate($scope, 'someGroup')

We may have found the culprit... After seen this log in the Daemon Server error stack... `[NX Daemon Server] - 2023-05-16T08:02:29.766Z - Server stopped because: "Stopping the daemon the set...

@kasir-barati yes after removing the generation from the project.json configurations the error went away. We are doing the generation beforehand now.

I got it to work by adding the dependencies of the fresh app into my root deno.jsonc ```json // root deno config { "workspace": [ "./projects/fresh-app" ], "tasks": { "dev:fresh-app":...