Markus Guder

Results 13 comments of Markus Guder

@yuntuowang The problem, and I think @dinvlad is having the same issue, is that your userhandler is not working in angular. ``` this.auth.userhandler = { onSuccess: session => this.onSuccess(session), onFailure:...

Fixed this problem. You have to init the handler bevore calling: `this.auth.parseCognitoWebResponse(this.router.url);`

first: thanks for the answer. second: what is StringWidget?

is your widget used? Do you see any changes in the ui? If not I assume your widget registry does not work correctly

Thanks for your fast reply. I use this statement in my app.component.html `` And I use $event.value to update my model value in the app.component.ts In the onChange() method I...

okay I sloved the problem by simply removing `[model]="element.model"` this was causing the problems.

@ebrehault I think that there is still a bug somehow? If I change the value of the select input, the (onChange) method does not get triggerd. I am right?

nope in your sample application it works

@pankyka where in my html template can I reference to this method? In the ?

yeah - I got this. Do you not reference from the html template to `onFormChange(e)`. Because actually if something is changing in the the (onChange)="METHOD()" should get triggerd. I dont...