Questions tagged [ionic-view]

Ionic View makes it easy to share your Ionic and Cordova apps with clients and testers around the world, all without ever going through the App Store.

Ionic View integrates with the Ionic command line to populate your app portfolio. View uses the Cordova inAppBrowser plugin to launch your apps in their own separate WebView, so you can preview and test them.

450 questions
2
votes
1 answer

How do I force phones to display screen orientation only "portrait", and tablets to only display screen orientation only "landscape"?

Ionic Framework, ionicframework.com, how do I force phones to display screen orientation only "portrait", and tablets to only display screen orientation only "landscape"?
Brian Li
  • 21
  • 1
2
votes
1 answer

How to make ion-scroll fit or wrap all the content inside it?

I have the following but it isn't letting me scroll through the whole list of my items. When I add a height to ` it lets me scroll depending of this height but this isn't correct for lists that can vary in size. Is there any clean way to (without…
CommonSenseCode
  • 23,522
  • 33
  • 131
  • 186
2
votes
3 answers

How to make a 3 grids design in Ionic where 1 grid on the left is double the size of 2 grids (one above the other in the right) sample in post

I want to make something just like this: As you can see one big grid on the left double the size of two grids on the right (which are one above the other): This is my html approach:

SEGUROS

CommonSenseCode
  • 23,522
  • 33
  • 131
  • 186
2
votes
1 answer

Why does $timeout delay the whole page loading inside $ionicView.Enter?

As far as i know, $timeout is a promise object in angular, which means the code will go on running without waiting for the timeout to end. However, when i used it in my ionic code, for some reason it did and the whole loading of the page froze for 6…
kishu
  • 73
  • 1
  • 9
2
votes
1 answer

How to prevent Ionic modal from hidding

I catch modal.hidden event, and do some check on it. When the check is false, I want to prevent the modal from hiding. I use e.preventDefault(). But it doesn't work. My code & CodePen: $scope.$on('modal.hidden', function(event) { var isPassed =…
Feng Lu
  • 55
  • 2
  • 7
2
votes
1 answer

File(Transfer) with PhoneGap Build is not working

Since I could not find the answer anywhere else in related questions, I'm posting a new question. The problem is: when I run my Ionic app via IonicView (useful app to test your application on your device) everything works fine, but when I run my…
2
votes
2 answers

Ionic View not recognized in chrome://inspect

I want to debug my hybride application via the Ionic View App, using the chrome://inspect tab of my desktop chrome browser. I connected my device (Nexus 4) and can open the console for all other opened webpages in Android's chrome-browser. As…
1
vote
2 answers

Ionic View is not Updating with Two way Data Binding

I am creating very basic ionic app. I want to show splash, then admob interstitial and on close of interstitial, i want to redirect to home page. The only problem which I am facing here is updating the view in the home page. In home page, i have…
Johne Doe
  • 442
  • 4
  • 9
1
vote
1 answer

ERROR Error: Error trying to diff '[object Object]'. Only arrays and iterables are allowed in ionic

how do i order it to display this array in the dropdown?? my.html Pilih Kota
1
vote
1 answer

Can I use TestFlight with Ionic 3 without one MacOS?

So I'm developing one application with Ionic 3 and we had some problems to test push notifications and generate one test version for iOS users. Recently Ionic View was removed from Apple store, and same with the Ionic View in the apple store we had…
1
vote
1 answer

Nested loop JSON array ionic 3

I have an issue to display data, currently my view is like this . and my database in table 'jadual' is like this The orange box is a name from pelajar_id column, and the time at below is timestamp from jadual_scan column. and my expected view is…
MrlinY
  • 71
  • 8
1
vote
0 answers

How to test ionic app on Ionic View

I'm using ionic app and try test on ionic view at this link: https://dashboard.ionicframework.com/app I have created a account and push my source from GIT to ionic view.. and then I have downloaded ionic view app to my mobile to test.. But seem it…
luongkhanh
  • 1,753
  • 2
  • 16
  • 30
1
vote
0 answers

Ionic content scrolling up issue when keyboard is open

When we open keyboard, the all content scrolling up in app screen. We are already added this code, but still not working. if(window.cordova && window.cordova.plugins.Keyboard) { window.cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true); …
Divya
  • 11
  • 2
1
vote
2 answers

POST data ionic 3 and backend API restful laravel

I have an issue about POST data at add student page. I'm using ionic 3 and backend API restful laravel, I tried this POST in postman and it's works, but I got an error message "invalid token or token not provided" after click Add button (refer the…
MrlinY
  • 71
  • 8
1
vote
1 answer

How to make an Ionic grid item, editable on double click

I want to make an Ionic table that fetches the data from MongoDB.On double-clicking a row, it should be editable. I tried implementing getElementById(). But it's not supported in Ionic.