[AngularJS] I cannot post data to back end from angular6

2018-10-18 Thread chinelookolo28
Am trying to post data to php backend and display json call response message *success* but am having the following errors *Error in src/app/car.service.ts(42,5): error type* *observable is not assignable to type Observable* Here is *app.component.ts* code import { Component, OnInit } from

[AngularJS] window infinite scrolling function not working with angularjs

2018-11-11 Thread chinelookolo28
Enter code here... Enter code here... How to get window scrolling function to work in Angularjs. Am migrating from jquery to angularjs. I need to convert this three line of codes from jquery to angularjs $(window).scroll(function(){ var position = $(window).scrollTop(); var bottom =

[AngularJS] Agularjs shows ReferenceError: $ is not defined at Object

2018-11-11 Thread chinelookolo28
Am migrating from jquery to angularjs. so I need to convert this three line of codes from jquery to angularjs but *Agularjs shows ReferenceError: $ is not defined at Object* $(window).scroll(function(){ var position = $(window).scrollTop(); var bottom = $(document).height() -

[AngularJS] Angularjs Shows only one Message box instead of many based on users selected.

2019-02-25 Thread chinelookolo28
Angularjs Shows only one Message box instead of many based on users selected. Am trying to build a multi-messaging chatbox using angularjs. Within the Angularjs array, I have four users. Here is my issue: The application shows only just one popup box irrespective of the user clicked. *Here