mkgn

Results 17 comments of mkgn

I think I got a bit far with this. According to [https://nodejs.org/en/docs/guides/nodejs-docker-webapp/](url) I need to customize dockerfile to rebuild a new image. So now what I tried was edited dockerfile...

Well, removing the questions seems to be the only thing that doesn't work. The stack trace is attached. [surveyjs-error.txt](https://github.com/surveyjs/surveyjs_angular_cli/files/2014007/surveyjs-error.txt) Any insight to troubleshoot will be much appreciated.

Ok got it fixed. Nothing wrong with your code or mine. Just changed some configurations. 1) commented out registering the ck-editor. //SurveyEditor.SurveyPropertyModalEditor.registerCustomWidget("html", CkEditor_ModalEditor ); This is because I don't have...

The problem of saving is that the method signature should be; saveMySurvey = (**saveNo, callback**) => { console.log(JSON.stringify(this.editor.text)); //this.surveySaved.emit(JSON.parse(this.editor.text)); }; If you have; saveMySurvey = () => { console.log(JSON.stringify(this.editor.text)); //this.surveySaved.emit(JSON.parse(this.editor.text));...

There is another strange behavior( I feel) which I cannot explain. If you want you can try it and see whether it happens to you as well. In survey.editor.component.ts file...

Sorry for late response. Well, I did it like this; public sealed class ToDoSecurityClaims : SecurityClaims{ public static readonly ToDoSecurityClaims todo_complete = new ToDoSecurityClaims("Complete any todo", $"{nameof(todo_complete)}"); public static readonly...

Having the same issue, noticed couple of issues related to this and some PRs but it's not clear what needs to be done to get this working properly. Anyone who...