phonegap

I'm using CSS3 animations with phonegap, and a specific tag isn't animating properly but works in safari/simulator

I'm using CSS3 animations within PhoneGap, an iPhone web-based SDK that enables you to create native apps using the web technology stack. The particular CSS animation I have below works in Safari, Chrome, and even the iPhone simulator, but for the life of me #image_cat1, #image_cat2, and #image_cat3 are not being displayed on the actual...

Control iPhone volume using phonegap?

Hi all, I was wondering if anyone knew how to control the iPhone's volume using PhoneGap/Titanium/Corona? If not I would very much appreciate a tutorial on how to develop my own plugin that would be able to interface with the iPhone frameworks and develop something along the lines of MPVolumeView. Thanks! ...

HTML5 Video Element on iPad doesn't fire onclick or touchstart events?

I'm trying to attach some events to an HTML5 Video element inside my iPad web app but they don't seem to be firing? I've tested this both on the device and in the simulator and get the same results. The events however (for the onclick at least) work fine in desktop Safari. I've also tried swapping the video element for a div and the even...

can we do push notification in iphone using phonegap fremwork?

hi, i need basic idea about how to implement push notification using phonegap fremwork. ...

How to disable "shake to undo" in iPhone application written with Phonegap?

The only thing I've found is that you have to set UIApplicationSupportsShakeToEdit to false in plist file but it doesn't work for me. ...

Phonegap background service on iOS4?

Can I get a phonegap application running on iOS 4 to have a background service when it's not the active app (e.g. check a url every hour and alert the user if there have been any changes)? And if so, how? ...

Sproutcore + PhoneGap/Titanium?

I'm learning Sproutcore at the moment to write my application on it. The backend will only be a server that pushes json out to the frontend Sproutcore application. I wonder how it will be when I use PhoneGap or Titanium to port my app to the mobile phones. How much of the current Sproutcore application do I have to rewrite? Is it only...

Hide Toolbar on top of iPhone Keyboard

Hi, is there anyway in javascript or HTML to hide the toolbar from iPhone keyboard. I only have one form input and I don't want the user to see the next, previous or done. If anyone can help that would be great, I am using PhoneGap ...

iPhone - Phonegap UI Controls - Tab Bar

Hi there Just started with Sencha today and found it a bit overwhelming. Was able to get a nice custom tabbar working, and top nav panel, however am stuck from where to go. Decided it might be a lot easier to just use JQTouch and a Phonegap TabBar instead. I found: http://phonegap.pbworks.com/iPhone%3A-UIControls-(TabBar) I'm on the...

how to scan barcode using phonegap

I need to scan a barcode using phonegap in Android and iPhone. Is there a way to do this? If yes, please share links. ...

PhoneGap with Native Tabbar / Header UI -> Add & change

Hi there, I'm building a project in jQTouch & PhoneGap. After building the app in jQTouch, i'm at the point where I need to start adding in the fixed header & tabbar to navigate between sections. I used this post to get the components visible: http://phonegap.pbworks.com/iPhone%3A-UIControls-%28TabBar%29 Can i please get some help wi...

Native UIControls with jqTouch

Hi there, After experimenting with a bunch of javascript tabbars (most fail when using forms), i've decided it might be a good idea to go native. Would anyone know how to incorporate native UIControls (tabbar & header) in a jqTouch app. I'd still need to retain control of the 'back' and 'info' buttons in the header. Thanks! Glen ...

Writing a javascript conditional - active/inactive button

Hi there, I have this script, which works great at the moment to navigate window.uicontrols.createTabBarItem("home", "Tab 1", "icon1.png", { onSelect: function() { jQT.goTo("#home", "slide"); } }); window.uicontrols.createTabBarItem("tab2", "Tab 2", "icon2.png", { onSelect: function() { jQT.goTo("#tab2", "slide"); } })...

Some questions about the App Store review guidelines?

I've made some iphone webapps before, using jQTouch and iUI but now i want to try out making a native Apps for iPhone. As i first step i thought of trying to port one of my webapps using Phonegap. So far it works well, but i'm a little concerned about some things in the Apple Review Guidelines and wanted to see if anyone have prior exper...

What other way can I deploy an iphone app besides AppStore?

Is there another way to deploy a phonegap app? Thank you! ...

HTML5 & XML in PhoneGap Iphone

Let said currently I want to pull a XML file from a server which include name, text, video, image & etc. Can HTML 5 directly read the XML and put it into the html body or I can only use JavaScript to pull the information. Will it be the same in the iPhone when using PhoneGap to develop? Thank in advanced. ...

Differences between Blackberry Webworks and Phonegap

I am building an enterprise application using HTML5 for Blackberry OS 6.0. I am planning on using PhoneGap for developing the application. I found out that Blackberry also has something similar called WebWorks. What are the differences between WebWorks and PhoneGap? ...

HTML5 with Web Services

Now the case, I want to develop a iPhone apps/web apps using Phonegap. Ok, imagine the app can do all sort of thing include data processing, transaction, login, video streaming, display data from the web services, so to do this I need use JavaScript (Ajax) to call the web services, then only put it into the HTML? HTML5 now come with sup...

How to use single sign-on on iPhone native app?

I'm developing a mobile version of a web app that uses single signon. How do I use Single sign-on on native iPhone app? ...

PhoneGap.exec() passing objects between JS and Obj-C

The only way I found to passing objects between the JS and Obj-C it's by encoding the JS object by using JSON.stringify() and pass the json string to PhoneGap.exec PhoneGap.exec('Alarm.update',JSON.stringify(list)); ... and rebuild the object in Obj-C: NSString *jsonStr = [arguments objectAtIndex:0]; jsonStr = [jsonStr stringByRe...