We have developed an application in Sencha touch 2.1 .
We need to display our records in Column chart, so we used Sencha touch charts 2.0 beta .
It works well in Chrome, Safari browsers and android emulator.
But in Iphone device the chart seems blurred . We cannot even read the labels in charts.
Related
I have a Codename One app which orientation is locked to portrait. That app is build to Android and iOS. It's a social and the portrait orientation is fine, except for video and images when they are landscape oriented.
To see a full screen image in a landscape orientation, I workarounded the problem rotating the image before showing it. However I suppose that the same workaround is not applicable to play a video.
How can I programmatically change the orientation of a Form to landscape when the app is locked to portrait? Otherwise, how can I satisfy the use case that I described? Thank you
This only works on Android and doesn't work for our iOS port. Notice that if you use the setNativePlayerMode it will work for iOS as well but you won't have any control as described here: https://stackoverflow.com/a/59495797/756809
You can set orientation to landscape explicitly using CN.lockOrientation(false). You can release the lock using CN.unlockOrientation().
But this will only work on Android and won't really impact iOS.
I have been dealing with this particular issue for 4 days and it is really frustrating. I have a page that has a couple of form fields. When one of the input field loses focus, the keyboard slides down as expected but then a white background is displayed in place of where the keyboard appeared. I have attached an image to demonstrate the problem.
http://i.stack.imgur.com/ZHsBB.gif
I am testing on a HTC One M8 running Android 4.4 using Ionic 1.0.0 and the Ionic Keyboard plugin. I really need help with this issue.
I'm using the Responsive theme ( Theme Url https://demo.gavick.com/joomla25/simplicity/ ) for one of my site and have used the built-in menu manager (Joomla platform), with everything appearing as should on web and iPhone and android devices.
However, on Blackberry it does not display the 'header-menu', where as all of the other menus - footer, top, etc are appearing fine.
Anyone know what could be going wrong?
FYI - Blackberry Curve 9320.
I'm implementing google maps api v3 in angularjs. I have two maps on the page: one shows the user's location and sits in the sidebar while the other allows users to add markers. This second map is only used in a form to add entries to the system.
It work fine in everything except mobile Safari on iOS 7. On an iPad running iOS 7 the side map works - ie: you can pan and zoom, but the other map is as if it's an image - no panning, zooming, or clicking to add a marker.
In the iPhone on iOS7 both maps are static, as if they're images. Debugging in Safari doesn't show any errors.
Debugging does show that they don't ever fire the click event to add markers.
The iPad on iOS6 is fine. Android is fine. Desktop browsers are fine.
I'm using Angular-ui ui.Maps to generate the maps.
I can't even think how to debug this further. Has anyone had trouble like this with iOS 7?
.
Is iOS7 mobile Safari the new IE? I've had quite a few issues now that only crop up on iOS7.
Update:
The Doctor was right. Here's the code to fix it:
$timeout(function(){
_.each(document.getElementsByClassName("gm-style"), function(e){
this.addEventListener('touchstart', function(event){});
});
}, 3000);
I get the sense that iOS7 Safari is a bit buggy when it comes to touch events.
I found this thread which talks about a specific touch event but I think other events have similar issues. `-webkit-overflow-scrolling: touch` broken for initially offscreen elements in iOS7
I have a project with an image slider with zoom functionality which is deployment target is iOS 5.1 and it works fine. But when I upgraded to iOS 6, image sliding is working but can't zooming. So, when I pinch to zoom, the image goes out of screen. How can I create an image(s) slider in iOS 6?