Activities of "mahmut.gundogdu"

Sorry, I made a mistake about your email, I resend again, pleas have a look.

I have checked still I did not see anything. Does the problem still continue or is it fixed?

I can pruduce the issue without kendoUI. Here you can check it. https://stackblitz.com/edit/angular-ivy-yarpzq?file=src/app/app.component.html Ngx-validate does not work well without form-group. But it could be. Here I opened issue. https://github.com/ng-turkey/ngx-validate/issues/93 I am also a contributor of ngx-turkey. I will fix that.
I am closing the issue, You can track the status of issue via github issue page.

I don't have KendoUI Commercial license. I've requested demo for reproducing the issue. Now, I am waiting the trial license but you can send the project to me. Then i can check the issue. My email address is mahmut.gundogdu@volosoft.com

Hello, I've send a email to you.

I checked my email, but I didn't see anything about your email.

For a now extraProperties support only Angular projects. It will be implemented

Here, it is my package.json that I've tested. Could you send your code mahmut.gundogdu@volosoft.com

  "dependencies": {
    "@abp/ng.components": "~5.3.4",
    "@abp/ng.core": "~5.3.4",
    "@abp/ng.setting-management": "~5.3.4",
    "@abp/ng.theme.shared": "~5.3.4",
    "@volo/abp.commercial.ng.ui": "~5.3.4",
    "@volo/abp.ng.account": "~5.3.4",
    "@volo/abp.ng.audit-logging": "~5.3.4",
    "@volo/abp.ng.gdpr": "~5.3.4",
    "@volo/abp.ng.identity": "~5.3.4",
    "@volo/abp.ng.identity-server": "~5.3.4",
    "@volo/abp.ng.language-management": "~5.3.4",
    "@volo/abp.ng.saas": "~5.3.4",
    "@volo/abp.ng.text-template-management": "~5.3.4",
    "@volo/abp.ng.theme.lepton": "~5.3.4",
    "@angular/animations": "~13.3.3",
    "@angular/common": "~13.3.3",
    "@angular/compiler": "~13.3.3",
    "@angular/core": "~13.3.3",
    "@angular/forms": "~13.3.3",
    "@angular/localize": "~13.3.3",
    "@angular/platform-browser-dynamic": "~13.3.3",
    "@angular/platform-browser": "~13.3.3",
    "@angular/router": "~13.3.3",
    "rxjs": "~6.6.0",
    "tslib": "^2.1.0",
    "zone.js": "~0.11.4"
  },

The problem is roleGroups field that was added by you.

roleGroups: FormGroup[]; // <-- here your code
  setRoleGroups(): FormGroup[] {
    return ((this.form.get('roleNames') as FormArray)?.controls as FormGroup[]) || [];
  }

but still the users.component.ts already has a getter that name is roleGroups

  get roleGroups(): FormGroup[] {
    return ((this.form.get('roleNames') as FormArray)?.controls as FormGroup[]) || [];
  }

I think, if you change the variable name, it will be fixed.

Yes, this is working with log out > login but this is still an issue. Why a user must log out and then login after editing his profile? Why should incorrect data come from server after that profile name and surName is edited? These are bugs. Also, The other problem is when you switch between Linked Accounts and these data are null for new switched account, while the name and surName are previously set and exist for each account.

Yes. I have tested. There is an issue. I have opened a task. Probably it will be fixed in version 6.0 and patch version of 5.3. The issue is that My-Profile endpoint is updated when the user changes profile info, but the CurrentUser key of ApplicationConfiguration won't be updated. Until the logout, then re-login. I think the information is stored in the auth-token. but it should be invalidated or updated. (if we can)

Note: We have talked about the issue. The information of "CurrentUser" come from the Claims of Identity-Server/Openiddict. The only way to update this information is logout-login. There are tasks that releted to "implementing Refresh-Token feature" in identity-server and Openiddict. When Refresh-Token feature is implemented, Angular UI could have the feature that refreshes the claims without logout-login

ABP uses Angular 13, Bootstrap 5, and much more, and that deps drops the IE support. But there Is some js polyfill like https://coliff.github.io/bootstrap-ie11/ .

The Extra properties serialised 'as-is'. if you want to return 'socialSecurityNumber' for a now you should write camelCase. I am looking the better solution. Maybe we will add Newtonsoft.Json.JsonProprertyAttribute support.

Showing 241 to 250 of 282 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13