[AngularJS] Re: Backloading an Angular js form

2016-10-16 Thread Hugo Arthur Amaral
Hi, Peter. Which version of Angular are you using? Could you send your code so that we can take a look? On Saturday, October 15, 2016 at 10:01:19 PM UTC-3, Peter Cawdron wrote: > > Hi, > > I'm new to Angular. I've got an Angular js form that has rendered and > works properly (updates, etc). I

[AngularJS] Child route base component rendered on every child route

2016-10-16 Thread Luke
Hey, *I have a module with child routes working like this:* const appRoutes: Routes = [ { path: '', redirectTo: 'login', pathMatch: 'full'}, { path: 'login', component: BackendLoginComponent }, ]; @NgModule({ imports: [RouterModule.forChild(appRoutes)], exports: [RouterModule] }) *defined

[AngularJS] Re: Backloading an Angular js form

2016-10-16 Thread Peter Cawdron
Hi Hugo, My problem ended up being the result of combining AngularJS and bootstrap. The solution was to update both, so I've used //Update angular values $scope.data.mydata["IO:"+ array-cycling-through-fields ].value = newValue; //Update browser so the change in data is visible to the user