This is my console ,i need to display all these item onto screen, what should...
Give me the .ts code which is print this console log.
View ArticleShow/Hide LoadingController while making network calls
Hello You need to use this way var self = this; self.loadingProgress = self.loadingCtrl.create({ content: 'Please wait...' });
View ArticleHiding an input form
Declare Variable like isShowDiscountInput in .ts file and set if condition in Discount % input in html file. Set toggle On/Off Event While Toggle is on set variable value isShowDiscountInput = true....
View ArticleShow/Hide LoadingController while making network calls
Thanks for Replying, I don’t have any problem with presenting the loader, I have problem with dismissing them. I haven’t used this self so far in angular. Where do you insist me to include that line ?...
View ArticleIonic app changes are not working
Try “cordova clean ios” then “cordova build ios” in CLI
View ArticleCORS issue on real device
It is usually your API server that’s refusing your connection. What is your API server? PHP?
View ArticleShow/Hide LoadingController while making network calls
Hi, @leorjoseph you need to create present loading function, // For present loading presentLoading() { this.loadingProgress = this.loadingCtrl.create({ content: 'Please wait...' });...
View ArticleIonic app changes are not working
Thanks cedrickd, tried but not working.tried from CLI and run app from Xcode.
View ArticleIonic iOS status bar
I might have a solution wich I didn’t tested yet, maybe you can test it out ? import { StatusBar } from '@ionic-native/status-bar'; constructor(private statusBar: StatusBar) { } ... // let status bar...
View ArticleIONIC Tutorials
Hi! I have started teaching ionic framework in youtube. Can you tell me how the tutorials are?...
View ArticleIONIC 3: Execution failed for task ':app:processDebugResources'
Did you find any solution to that error? Even I am getting the exact same error after executing, ionic cordova build android.
View ArticleThis is my console ,i need to display all these item onto screen, what should...
thankyou sir, loadCart() { this.storage.forEach( (value, key, index) => { console.log(“This is the value”,value) console.log(“from the key”, key) console.log(“Index is”, index) })
View ArticleThis is my console ,i need to display all these item onto screen, what should...
provider cart const CART_KEY = ‘cartItems’; @Injectable() export class CartsProvider { constructor(public storage: Storage) { } addToCart(product) { return this.getCartItems().then(result => { if...
View ArticleThis is my console ,i need to display all these item onto screen, what should...
addToCart(product) { var productPrice = this.productCount * parseInt(product.price); // this.cart=[]; let cartProduct = { product_id: product.id, name: product.name, image: product.image, count:...
View ArticleShow/Hide LoadingController while making network calls
Thanks @addwebsolution. This solution seem to work for a normal flow, but it is not working inside success blocks or promises.
View ArticleViewChild access custom component in ion-slide [solved]
Btw. you could then mark your issue as solved, looks like you didn’t yet
View ArticleThis is my console ,i need to display all these item onto screen, what should...
i tried this way, but i could display items at data[1] only this.storage.get(“cartItems”).then(data=> { if(data) { this.cart=data[1]; } });
View ArticleProblems with cordova plugin cordova.plugins.diagnostic
well you didn’t provide that much details so I will just provide a wild guess. Did you install or upgrade cordova.plugins.diagnostic to its version 4? If so, have you read the CHANGELOG/README and did...
View ArticleCreate custom NPM Package. its not work in ionic project
Are you doing this? (Wording will be different bc you have a different component.) github.com...
View Article