How to make div unclickable in ionic?
Hi @saty932, can you check whether your content has loaded or not in you .ts file by any method? If yes then I’ve a very simple solution for that. Let me know.
View ArticleFloating label overlaps with date input
Try removing value="" or ngModel. Choose one or the other. Setting both on an input has unwanted effects if I’m not mistaken.
View Article[Warning] Native: deviceready did not fire within 2000ms. This can happen...
In my case i just forgot this : " IonicStorageModule.forRoot() " in the app.module.ts
View ArticleIonic segment modal problem
mfouash: (ngModelChange)=“stateChange($event)”> The docs suggest (ionChange) as opposed to (ngModelChange). That might do the trick.
View ArticleIonic 3 Tinder Like Cards
I did, but the trick was to add the module even in the page.module.ts:)
View ArticleregisterBackButtonAction doesn't work
nakamurakota: platform.registerBackButtonAction(() => { console.log("Backbutton pressed."); }, 100); Wrap that in this.platform.ready().then(() => )
View ArticleIonic PWA, setRoot()
Looks like Azure is not using its callback and authenticating the user. Used a variable to see if the user was authenticated, always returns false. But it only happens when it is in PWA, browser works...
View ArticleHow to make div unclickable in ionic?
I finally able to achieve this by showing some content on top of the original content with ion-fixed and background as transparent.Then hiding after I fetched whole content. Thanks, Sathish
View ArticleIon-searchbar in real time with database
I try and that’s work ! But just one question please. Why did you put $event in this “getResults($event)” ?
View ArticleSearch submit button text: Search or Go
@ebellempire I think I have fixed it! Try adding action="." into your form tag and let me know if this works for you.
View ArticleCan't hide the scroll bar in ionic 3
How to remove scroll? ionic can you add below code in you app.scss ::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }
View ArticleHow to show scrollbar in popover content?
@NorthFred <ion-content> <ion-scroll scrollX="true"> <ion-list *ngFor="let eachVisitedPlace of offersCommonData.previouslyVisitedBeaconsAndGeofences"> <button ion-item...
View ArticleFloating label overlaps with date input
solved it. it was just a matter of platform. this was run on browser, but when I emulated on android it worked fine
View ArticleHow to make a draggable Fab?
If you click the FAB (with PC) then you’ll note that the FAB is slightly offset from the location where you click. Looks a bit unnatural. Don’t know how it looks on touch device. That is why I said...
View ArticleErr while uploading Image
Hi everyone I’m little stuck at a place. I’m trying to upload a image(not base64) to a rest api but can’t upload. Can anyone please tell me what wrong am I doing??? import { Component } from...
View ArticleIon-select with "select all" option
Hi @filippodicostanzo , have you found your solution yet? i am also face out same problems
View Article