appframework

Determine Active Panel

雨燕双飞 提交于 2020-01-03 03:17:25
问题 I'm on a phonegap project. I do my project with JQMobi (new name is Intel's App Framework).. On this project i want to determine the visible/active panel to startup my functions according to it. Here is what i've tried ; $(document).bind('pageshow', function () { var id = $.ui.activeDiv[0].id; if ($.ui.activeDiv[0].id=="contents01"){ getLive(); } }); function getLive(){ alert('on live page!'); } how can i do this in jqmobi/app framework ? i used this in jquery mobile and it was working. $

How to connect to the server on mobile application?

不想你离开。 提交于 2019-12-31 22:28:10
问题 I am new to mobile applications. I am basically from a web development platform. I am just playing around mobile frameworks like App Framework, LungoJS, Jquery Mobile, kendo etc to gain some knowledge in this vertical. The app I am developing is still in UI level. All I need is to fetch data from the server and populate in my app. I need some ideas to establish server communication between the smart device and the server. My questions are What kind of server needed for mobile applications ? A

How to send an Android Push Message using Intels App-Framework?

对着背影说爱祢 提交于 2019-12-25 02:47:28
问题 I'm looking for a solution to send a Push Message from PHP in Intels App-Framework, but I can't find any good solution. I have found this: https://gist.github.com/prime31/5675017 But how can I get the DEVICE_REGISTRATION_ID? It's very difficult to find some code or solution. 回答1: Ive found the Solution. I have forgott to type the IP 0.0.0.0/0 into the Google API Console. And i added the Google API Key and Projectnumber by the Push Category on Build Window. Then i copy paste the code from http

Switching from Jquery Mobile to AppFramework

江枫思渺然 提交于 2019-12-20 08:00:08
问题 I've built a project using Jquery Mobile. JQM seems perfect for fast prototyping but the end result on an iphone 3GS/IOS 5.1 is far from fluid. I've tried a lot of hacks/tricks to make it faster and got rid of transitions but still, I cannot get a satisfying result. I've been looking around. What I need is a lightweight solution with a decent UI (JQM is perfect for what I need in that domain). trigger.io and AppFramework seem to be the 2 solutions which are available (maybe I'm missing some

Which mobile development open source Framework should I use? [closed]

蹲街弑〆低调 提交于 2019-12-18 10:36:51
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . My company would like to develop a mobile application. Web app, native app or hybrid app ? They actually don't know. In that context, they asked me to make some researches (I'm not a mobile development expert) on open source Framework for mobile development (cross platform

Disable page scroll but allow Google map scroll

耗尽温柔 提交于 2019-12-13 04:46:56
问题 I have an app using appmobi/xdk/appframework when I put in the package It disables the scrollinf of the page vertically on the iPhone. However, it also disables the scrolling of the Google map on the page. Any ideas on how to re-enable the map scrolling? 回答1: Just add scrolling="no" in your panel and data-footer="none" if u want more space for map <div id="main" class="panel" selected="true" scrolling="no" data-footer="none"> 回答2: <!--If your are using the appmobi 3.4.0 platform --> <div id="

Offline caching with Intel app framework?

守給你的承諾、 提交于 2019-12-10 09:50:21
问题 I'm starting an uphill journey developing a small app for my wife's speech pathology practice. We want to publish an app that contains several html5 based games that promote language development. Currently I'm looking at the intel app framework and xdk to do this. We plan to start with a simple game (building words for example) then adding more games over time. My question is this, html 5 has a cache mechanism using a manifest. If I limit the games to a single page, can I store the games on a

Determine Active Panel

被刻印的时光 ゝ 提交于 2019-12-07 00:23:25
I'm on a phonegap project. I do my project with JQMobi (new name is Intel's App Framework).. On this project i want to determine the visible/active panel to startup my functions according to it. Here is what i've tried ; $(document).bind('pageshow', function () { var id = $.ui.activeDiv[0].id; if ($.ui.activeDiv[0].id=="contents01"){ getLive(); } }); function getLive(){ alert('on live page!'); } how can i do this in jqmobi/app framework ? i used this in jquery mobile and it was working. $(document).bind('pageshow', function () { var id = $.mobile.activePage[0].id; if (id=="home"){ getHomePage(

Offline caching with Intel app framework?

落爺英雄遲暮 提交于 2019-12-05 22:05:49
I'm starting an uphill journey developing a small app for my wife's speech pathology practice. We want to publish an app that contains several html5 based games that promote language development. Currently I'm looking at the intel app framework and xdk to do this. We plan to start with a simple game (building words for example) then adding more games over time. My question is this, html 5 has a cache mechanism using a manifest. If I limit the games to a single page, can I store the games on a web server rather than forcing the user to download all of the content with the app at the time of

How to connect to the server on mobile application?

随声附和 提交于 2019-12-03 02:24:58
I am new to mobile applications. I am basically from a web development platform. I am just playing around mobile frameworks like App Framework, LungoJS, Jquery Mobile, kendo etc to gain some knowledge in this vertical. The app I am developing is still in UI level. All I need is to fetch data from the server and populate in my app. I need some ideas to establish server communication between the smart device and the server. My questions are What kind of server needed for mobile applications ? A cloud or a regular web server is enough ? What are the ways to connect the app with the server ? ( on