Questions tagged [angular16]

For questions regarding Angular specific to version 16. Please include all relevant tags on your question; e.g., [Angular], [TypeScript], etc.

120 questions
0
votes
0 answers

Developing Angular v16 App into Remote VPS using VS Code SSH remote connection

I am facing difficulties to develop my angular v16 using remote ssh in Visual Code, because my VPS is free to use i try to develop Angular into it. But when try to make build by typed "ng serve" and going into browser access localhost:4200 its not…
BlossomX
  • 31
  • 4
0
votes
0 answers

Can't bind to 'filterable' since it isn't a known property of 'kendo-grid-column' in angular 16

compile error Error: src/app/user-management/user-management.component.html:77:61 - error NG8002: Can't bind to 'filterable' since it isn't a known property of 'kendo-grid-column'. 1. If 'kendo-grid-column' is an Angular component and it has…
0
votes
0 answers

Not able to open source file and debug in angular 16

Updated my angular project from 7.2 to 16 in that case i'm not able to debug and not able to open source file is any solution available for it? added "configurations": { "production": { "sourceMap": true, } but still not working this
0
votes
0 answers

Angular 16: Problems with "child_process"

import { exec } from "child_process"; I am having a problem with using child_process in Angular 15. I always get this error: ERROR in src/app/gerfactory/gerfactory.component.ts:6:22 - error TS2307: Cannot find module 'child_process' or its…
0
votes
0 answers

Unable to use GoogleMapsComponent in a Standalone Angular 16 app

Description I'm unable to use Google Maps Component with a Angular 16 app which doesn't use NgModules. I have imported GoogleMapModule in the imports array of my standalone component and yet the template cannot recognize the
0
votes
0 answers

Angular 16 Subscribe to multiple same components not working

I have a component which subscribes to a service. I have placed multiple (4) of it in my view. When the service emits data Only one out of the multiple actually gets it. The rest don't. This is my code: For the service isDark = false; getTheme :…
0
votes
1 answer

Routing in Angular 16 not working for Standalone Components

Code - https://github.com/suyashjawale/Angular16 I have generated my Angular 16 project using following command and selected routing to yes. ng new myapp --standalone And then I generated other components using ng g c components/home Since, i used…
Suyash Jawale
  • 190
  • 2
  • 13
0
votes
0 answers

styles.scss is not getting loaded

In one of my project (Angular version 16) styles.scss is not getting loaded. We have added styles.scss into angular.json file also along with the path src/styles.scss though it is not getting loaded in chrome browser.
bhumika
  • 9
  • 2
0
votes
0 answers

Getting issue After Upgrading Angular 16

I have upgraded my project from Angular 14 to Angular 16. we are facing the below issue: Uncaught SyntaxError: Unexpected token '=' in main.js file Uncaught SyntaxError: Unexpected token '=' in zone.min.js file Not able to run the project in to…
bhumika
  • 9
  • 2
0
votes
0 answers

I created Angular project and do it live but when i live the page is blank on when i use www

I created Angular project and do it live but when i use "https//" then the page is apear but i use "www." the page is blank but the favicon and the web title is appear when deploy the project I use this:- ng build --configuration production…
adil
  • 1
  • 1
0
votes
0 answers

Shared assets between angular libraries

I have 2 libraries on my project, let's call them ui1 and layout2. The first one exports assets that contains a file called cores.scss. On the second library I want to import that file like @import ui/assets/cores.scss on a button.component.scss but…
0
votes
0 answers

How to tell if angular site is ssr

I've built a new Angular 16 ssr site. The build structure look identical to a normal build. If I view the site in a browser, what is the tell tail sign that the app is ssr?
Daniel Aldridge
  • 496
  • 4
  • 9
0
votes
2 answers

Error when implementing 'ng-multiselect-dropdown' for Angular version 16

I am implementing ng-multiselect-dropdown on Angular 16 project. I have installed the library with command npm i ng-multiselect-dropdown I have imported it in app.module.ts file as well. import {NgMultiSelectDropDownModule} from…
Surendra Mourya
  • 593
  • 3
  • 8
  • 29
0
votes
0 answers

NgScrollbar not working with Fuse in Angular16 throwing console error "properties of undefined (reading 'sensorDisabled') at new NgScrollbar

Today I am facing below err in console after building angular 16 app with 'ng serve' without any build err. Basically I am trying to upgrade from angular 7 to angular 16.So we were using angular 7 + fuse-perfect-scrollbar.But now its…
Anushweta
  • 21
  • 5
0
votes
1 answer

Angular 16 ProvideMockStore() breaking TestBed after using this.store.selectSignal()

After upgrading an Angular project to v.16 and refactoring RxJS to start using Signals, I started using the new function this.store.selectSignal(). Does someone else has ever faced the following error? TypeError: Cannot read properties of undefined…