Questions tagged [phonejs]

PhoneJS is a HTML5 JavaScript framework for smartphones and tablets.

PhoneJS is a HTML5 JavaScript framework for smartphones and tablets.

PhoneJS contains everything you'll need to create native client applications using HTML5 and JavaScript with a single codebase and deliver solutions that target today's most popular smartphones and tablet devices.

With a touch-optimized user experience, natively rendered widgets, straightforward page navigation, view management, and data access layers, PhoneJS is a single page application (SPA) framework for your next iOS, Android and WindowsPhone application, ready for online publication or packaged as a store-ready native app using Apache Cordova (PhoneGap).

72 questions
0
votes
1 answer

Custom navigation in Phonejs

I am trying to create mobile application using Phonejs. So far things are working. But now I need to implement authorization in mobile application. So, based on User rights navigation menu will be displayed. So, as per documentation I can give…
kunjee
  • 2,739
  • 1
  • 23
  • 38
0
votes
1 answer

PhoneJs: update dynamically slideout

I would like to update a specific field in slideout from database(websql), to show the current user and he can access to his profil. The targert is : title: log1, for that I used save:function (), and I have one record in database. I spent many days…
Guest Guest
  • 411
  • 1
  • 6
  • 9
0
votes
1 answer

Display svg image as node of d3.js in phonejs

Making application with phonejs, using d3.js with force layout. I want to display images as node of d3. Here is how node is created: node = container.append("g").selectAll("image.node") .data(nodes_edges_json.nodes) .append("svg:image") …
Alina
  • 130
  • 1
  • 13
0
votes
1 answer

Apply dxhold/touch event of phonejs on d3 node

Making mobile application with phonejs, I'm using d3.js with force layout. I want to add some functionality when node of d3 is double-tapped or held-with-tap. But double-click event does not do anything in phone. I also tried jQuery touch events…
Alina
  • 130
  • 1
  • 13
0
votes
1 answer

Devextreme: Custom dxTemplate and with static header row

I'm trying to create a dynamically filled table using knockoutJS/DevExtreme but I'm having trouble with my header row. If I put the template line as an attribute of a holding div like this and then nestle the table underneath all is good except my…
rory
  • 1,490
  • 3
  • 22
  • 50
0
votes
0 answers

Optimize the phonejs mobile application

I am currently working on LOB application for mobile. And using phonejs as base framework. As a start I am following sample application and guide line, and putting everything in different HTML, JS and CSS. But while testing on Android phone, start…
kunjee
  • 2,739
  • 1
  • 23
  • 38
0
votes
1 answer

Binding YouTube Video to Div Element from Seperate JS file

I have this problem embedding YouTube video in a PhoneJS single-page mobile application. In PhoneJS, the JS scripts are defined in a different file. So I defined the HTML div like this:
Now in the JS file, I did…
Machiavelli
  • 411
  • 4
  • 15
0
votes
1 answer

Phonejs dxlist drag down refresh in android not so smooth like ios

I use the framework phonejs to develop a mobile project. When I use the widget dxList enable the func drag down to refresh. It's not so smooth like ios. How to fix it ? Can anybody give me some help...?
Tyler.z.yang
  • 2,402
  • 1
  • 18
  • 31
0
votes
1 answer

Phonejs route param with array

Recently, I use phonejs to develop a new project. And I want to transfer parameters in different view, I know it can define the route like: AppNamespace.app.router.register(":view/:personId/", { view: "view_home",personId:'' }); However, when I…
Tyler.z.yang
  • 2,402
  • 1
  • 18
  • 31
0
votes
2 answers

Phonejs toolbar menu text shows twice

Recently, I use the Html5 framework: "phonejs" to develop a mobile project, when I want to make a toolbar menusheet in empty views, It seems menu text will show up twice in this demo:…
Tyler.z.yang
  • 2,402
  • 1
  • 18
  • 31
0
votes
2 answers

How to read value of input field using PhoneJS?

Here is my HTML :
Vishwajeet Vatharkar
  • 1,146
  • 4
  • 18
  • 42
0
votes
3 answers

pass parameter value to web service using javascript

This is my hltm5 code

user2841549
  • 1
  • 1
  • 1
0
votes
0 answers

Simple Android App with PhoneJS and PhoneGap just freezes

I'm using phonegap and phonejs to write a small android app. Code is below. The problem is that the application 1) takes 2-3 seconds to load even though the amount of data loaded is fairly small 2) it doesn't react to clicks, the overlay that I want…
kaidentity
  • 609
  • 4
  • 10
  • 26
0
votes
0 answers

phonegap + phonejs style challenges

I'm starting to use phonegap and phonejs to write mobile hybrid applications. I've followed the tutorial http://phonejs.devexpress.com/Documentation/Tutorial/Getting_Started/Your_First_Application and the app works but both on the emulator and on…
kaidentity
  • 609
  • 4
  • 10
  • 26
0
votes
1 answer

How to incorporate phoneJS code into rails app?

I currently have a rails app serving up JSON, and a separate app created with phoneJS consuming that JSON. I'd like to be able to integrate the phoneJS code directly into my rails app, but am unsure how. The folder structure for phoneJS is very…