AJAX Call ANGULAR 5
Hi @nbenakis Angular5 is entirely different from Angular1 . You don’t have to make ajax. Use Angulars HttpClient. You can do this data = yours json data; this.http.post('url', data) .map(res =>...
View ArticleIonic View + Firebase notifications
@fortunella did you got fcm working in Ionic View? I have the same issue. It works when running on my local android device, but not in Ionic View The message I receive is “plugin_not_installed”
View ArticleDynamic side menu with categories
I’m currently on Ionic 3 and I can’t find the best way to do this menu ezgif-3-0f8578dfb7.gif600x1067 1.25 MB Basically what I want is: display a list of buttons, after clicking one of these buttons I...
View ArticleIonic 2 Form with ngModel
hi @healer12 you are using let keyword inside a method called editProfile(). let keyword is block scoped, the scope of that variable (dataProfile) is limited to editProfile method. you couldn’t access...
View ArticleImage/File Path
Ionic v2, Android Trying to upload an image take with the camera to a server but cant find image path. .ts file: public takePicture(){ const options: CameraOptions = { quality: 100, destinationType:...
View ArticleIonic 2 Form with ngModel
try this import { FormGroup, FormBuilder, Validators } from '@angular/forms'; export class testClass { testForm: FormGroup; constructor(private fb: FormBuilder) { this.testForm = this.fb.group({...
View ArticleAJAX Call ANGULAR 5
–> folder /provider/loginservice.ts import { HttpClient } from ‘@angular/common/http’; import { Injectable } from ‘@angular/core’; import ‘rxjs/add/operator/map’; import {Observable} from...
View ArticleDynamic side menu once user get logged in
Take a look at the Ionic Conference Application.
View ArticleIonic View - http native - CORS
yondermedia: Why is the Ionic View Pro version so strict on CORS and is there a work around for this? Because it reflects the reality of building an app. yondermedia: It does not look like any of the...
View ArticleHow to perform undo task in canvas draw component (typescript)
no one have solution for this task ?
View ArticleDynamic side menu once user get logged in
You can use *ngIf to hide/show dynamicly, according if the user is a guest or not.
View ArticlePush notification not receiving message in ios
Hey! What are you using in terms of the push server? Google Firebase Cloud Messaging, OneSignal or do you handle everything on your own? If you use Google Firebase Cloud Messaging I can help you out....
View ArticleTaken image from camera not able to show in UI,
@jaydz thank you for solution …am not implement it…but in my case camera is opening in above android 6.0 -v but not opening for android 4 and 5 …any solution please
View ArticleHow to perform undo task in canvas draw component (typescript)
I haven’t really used canvas, but saving all the modifications would be the solution. When the user wants to undo something, clear the canvas and execute every modification except the last one.
View ArticleApplication Error : There was a network Error
if you are running ionic cordova emulate android -cl --address=localhost, then remove the localhost. The network the android device is attaching to probably isn’t localhost
View ArticleHow to perform undo task in canvas draw component (typescript)
Thanks @Matte for solution can you please check my code canvas-draw.ts file import { Component, ViewChild, Renderer } from ‘@angular/core’; import { Platform } from ‘ionic-angular’; import { Camera,...
View ArticleHow to perform undo task in canvas draw component (typescript)
i am drawing on image which is placed on canvas…drawing is working …but not able to use use undo operation…i use clear canvas method but that clear entire drawing on image so solution please
View ArticleIonic View + Firebase notifications
Supported plugins in ionic view Ionic Framework Ionic Framework The Ionic Pro platform helps you build better apps on ionic framework with Pro's integrated suite of tools and services designed for the...
View ArticleIonci Native background geolocation not work
Environment Plugin version: Last version Platform: iOS OS version: 10 Device manufacturer and model: iPhone 7 Cordova version (cordova -v): 7.1.0 Cordova platform version (cordova platform ls): iOS...
View Article