Base solution for your next web application

Activities of "globalbilgi"

  this._appNavigationService.GetUserMenu()
            .subscribe(res => {
                this.menu = res;
                setTimeout(() => {
                    this.layoutRefService.addElement('asideLeft', this.el.nativeElement);
                });
            });

Bu şekilde de bir fark olmadı maalesef.

  ngAfterViewInit(): void {
        this._appNavigationService.GetUserMenu().pipe(finalize(() => setTimeout(() => {
            this.layoutRefService.addElement('asideLeft', this.el.nativeElement);
        })))
            .subscribe(res => {
                this.menu = res;
            });
    }
yukarıdaki gibi ya da direkt olarak subscribe içerisine menuyu set ettikten sonra setTimeout konudu çalıştrdım ama bir fark olmadı. Html tarafta ngif kullandığımda hiç bir şekilde tetiklemiyor. Ngif kullanmadığımdada sürekli hata veriyor menu items null olduğu için.

Hayır, sadece mouse ile sol menu üzerine geldiğimde menu yu tetikleyip dolduruyor diğer turkü arkada menu içeriğini ne kadar değiştirirsem değiştireyim ekrana yansımıyor. Neyin engellediğini bir türlü bulamadık.

Merhaba,

.Net Core & Angular projesinde sol menüyü dinamik hale getirmek istiyorum. Gerekli servisleri .net ve angular tarafında yazdım ve SideBarMenuComponent 'inde menu:AppMenu değişkenini :

this._appNavigationService.GetUserMenu().subscribe(res => { this.menu = res; console.log("res,appmenu this.menu", res, this.menu); });

Yukarıdaki gibi set ediyorum fakat sayfa load olana kadar 74 kere aşağıdaki gibi menu items bulunamadı hatası veriyor. Bende bunu çözmek için ngif="menu" yapıyorum bu seferde sol menu hiç dolmuyor. Sadece mouse ile üzerine geldiğimde doluyor.

Bu sorunu çözmek için ne yapmalıyım ?

Hi, After creating two different tenants : We give "Feature of chatting with other customers" as a package .

But the tenants in this feature can't see different users and add as a friend.

What should we do to activate ? Is this a general problem or there is another option ?

Best regards

Showing 11 to 15 of 15 entries