A lightweight, dead simple, micro-tiny, modular JavaScript framework for building mobile web applications

learn more… | top users | synonyms

0
votes
1answer
20 views

How to read xml in xui js

I am using xui js in PhoneGap and I want to read xml through xui js.I have written some code and I am getting root Element successfully.And running forloop for each element I am also getting element ...
0
votes
1answer
47 views

set up canvas - dynamic width and height using xui.js

I would like to count scale of canvas but i have problem how to write it directly using xui.js - my try: xui.extend ( { canvasSetup:function(scale) { var canvas = ...
2
votes
0answers
72 views

xui supports private browsing for iOS safari devices?

I have a website that is using xui.js When turning on Private Browsing mode on an iPhone iOS5+, the xui.ready function does not get called. Is there a fix for it? <script> alert('test'); ...
1
vote
1answer
50 views

Xui.js parent object

Xui.js doesn't support .parent() by itself, though it can use x$(this)[0].parentNode to access it, however that returns the literal DOM object it seems. Anyone with xui experience mind telling me how ...
0
votes
0answers
40 views

xui: how can i set an accept header?

My Goal is to add header - information to an Rest-call. The Call looks like: x$(document).on('DOMContentLoaded', function(){ x$().xhr("/anyServer/responseJSON", { ...
1
vote
2answers
141 views

Need to wait until XMLHttpRequest completes

Whenever I try to find answer of this question everyone refers to ajax start/stop etc. I am using XUI JS's XHR function for cross domain calling, now I want exactly like this callMyXHRfunction(); ...
0
votes
1answer
121 views

xui swipe gesture not working on real device

I am using xui-swipe.js for detecting swipe left and right gesture on a Phonegap application. It is working fine on both android emulator and iPhone simulator. But when I installed this application ...
0
votes
1answer
67 views

Disable iphone move page when focusing on input

The thing is that if you focus on input the page moves to the place where you can see this input the best, but I don't want it to move. I just want to tap on my input and page should stay where it is. ...
2
votes
1answer
1k views

Simple Phonegap application to call simple web service

I am a beginner in Phonegap and I made a simple web service in Microsoft Visual studio 2010 with two simple method. I want to call a method from that service from my Phonegap application for android ...
0
votes
2answers
184 views

Xui js input value

i'm using xui.js (v 2.3.2) and try to return the value of an input text field. x$('#field-email').value -> return undefined x$('#field-email').attr('value') -> return ['name@domain.com'] ...
0
votes
1answer
206 views

xui.js swipe plugin - how to get element id

i'm using xui in a photegap project as it's going pretty well except that, when using the swipe plugin, I can't find a way to get the tapped element id attribute. Can anyone help me on thie one? ...
0
votes
0answers
254 views

to run the file transfer in background in phonegap application

i am creating the phonegap application using raphael js svg in ios. i am transferring the many image files from server to the ipad(client).At first i am getting the main folders name from server and ...
0
votes
1answer
182 views

Xui.js .children() alternative

What's the xui.js (or pure javascript if necessary) alternative for jQuery's .children(). To be more specific, I'm trying to get the child of $x(this) but $x(this).children('p') doesn't work (as in, ...
0
votes
1answer
271 views

vertical range slider for mobile using webkit

I've almost completed my project but just have this last thing which I've been putting off for awhile. I currently have several sliders (all are horizontal) - they all work. I'm currently using the ...
0
votes
1answer
164 views

emile.js and xui animation needing double click?

I am using xui and emile to make a collapsible panel but the first click needs a double click then all future clicks works fine on single click. I need the first click to work on single click. I also ...
0
votes
0answers
558 views

Sending post request using xhr in xui phonegap

I am using xui a phonegap plug in to consume web services. It is working fine with get request but when i am giving post request. Its always calling error function. I am using following code - ...
2
votes
1answer
272 views

xui.js for mobile devices including Windows Phone 7

I want to use xui.js in a mobile web project that needs to work on iOS, Android and Windows Phone 7. The documentation (http://xuijs.com/) is a little unclear as what the different versions include. ...
1
vote
1answer
242 views

animated javascript scrollLeft using XUI

i want to animate my scrollLeft = value using XUI (note that I can't use any JQuery animation for this one). I tried using the tween function as such: x$('#divID')tween(scrollLeft : value + 'px') and ...
1
vote
1answer
669 views

zepto.js vs xuijs for PhoneGap

I'm developing with PhoneGap for a month already. In my first app, I used JQuery and the results were horrible. I learned about zepto.js and xuijs being two of the most recommended libraries for ...
0
votes
1answer
354 views

Moving a DIV using XUI

I'm trying to create a dragging effect on a div using xuijs. I don't really know which event to look listen too and what to do with it to make it slide. I need it to follow the cursor of the mouse ...
1
vote
3answers
1k views

JQuery replacement - Which to choose?

Just a quick question about JQuery, I've been using phonegap and made a few apps with JQuery. One in particularly runs really slowly so I've been trying to slim it down as much as possible. One ...
0
votes
1answer
361 views

how do you handle error while using xui's xhr?

I'm using the following code to get some data from an external website. <script type="text/javascript"> xui.ready(function() { var url = 'http://www.domain.com/getData.aspx'; ...
1
vote
2answers
534 views

Can XUI create swipe, slide and fade transitions?

I'm trying to build a phonegap application that I hope to work on blackberry OS6+, iOS 4+ and android 2.2+ devices. I'm taking a look at XUI.JS as the javascript library. Does XUI offer me the tools ...
1
vote
1answer
568 views

how do I use XUI tween?

I don't understand how to use XUI tween. On the xui website, they give the following example code: x$('#box').tween([{left:'100px', backgroundColor:'green', duration:.2 }, { right:'100px' }]); ...
0
votes
1answer
675 views

Getting JSON/JSONp data from PHP file on external server via XUI on a PhoneGap App?

I'm currently working on a mobile app at the moment. Using PhoneGap 1.1.0 on an iOS 5 iPhone 4. I have some of the basics working. I haven't been working on it long and now I need to be able to get ...
1
vote
1answer
848 views

XUI Ajax example

I don't understand how to use the XUI xhr (ajax) call. Consider the following code: x$('#left-panel').xhr('/panel', { async: true, callback: function() { alert("The response is " + ...
1
vote
2answers
137 views

How do I remove elements with xuijs?

I have: <div class="result"> <div class="child"> <h2>afsdf</h2> <p>ardyh</p> </div> <div class="child"> <h2>.... .. ...
0
votes
1answer
228 views

XUI toggleClass error

I have a input that I press then this event is called: document.getElementById("nearest").addEventListener('click', function(){ x$("#popup").toggleClass('hide'); }, false); then I get this ...
2
votes
1answer
191 views

Extend without override

I'm in a way to make compat between XUI & Backbone but I met a problem in my design. I guess. There it is. I want to extend XUI with a method call attr which would be able to deal with a hash of ...
0
votes
1answer
146 views

Getting some data from a PHP (json_encode) and now need to access it within the javascript?

I am currently using Phonegap and XUI to create web app. I am retrieving some data from an external domain using a http request via XUI. This is working correctly and I receive the JSON data back ...
0
votes
1answer
638 views

How do I submit form values with Xui framework's xhr object?

I'm giving the Xui javascript framework for mobile apps a spin and I'm stuck on form submission using its xhr ajax object. I'm trying to submit username and password form values to a php script. This ...
1
vote
1answer
236 views

Exposing public methods in XUI JS framework plugin?

I've created a plugin for XUI, for example: xui.extend({ myPlugin : function(){ var options = []; function methodOne(obj){ } function methodTwo(){ } ...
0
votes
1answer
692 views

Xui.js page anatomy

Info: I am using JQuery Mobile (in Phonegap) for building pages and navigating via them by $.mobile.changePage() or hash. This is JQuery Mobile page anatomy: <div id="foo" data-role="page"> ...
1
vote
1answer
127 views

one json-request to multiple DOM-destinations - how?

I'm having a "list" that I want to populate with a background-json request. Items have different headings and traffic should be minimal (mobile webapp), DOM-structure something like: <div ...
0
votes
1answer
813 views

XUI library: call web method (cross-domain)

I found only one example how to use xui.js to call web service here: http://wiki.phonegap.com/w/page/32513809/Simple-Web-Service-Consumption-with-PhoneGap-and-XUI But it isn't clear. How to invoke ...
0
votes
2answers
273 views

tween back to auto-height with xuijs

I'm having problems to create a equivalent slideDown for xuijs. The slideUp (hide) is easily done with x$('elm').tween({height:'0'}); but there seem to be no way to revert back to original height ...
1
vote
1answer
3k views

minimal jquery alternative for fast mobile webapps

I need a dead simple jq alternative, as tiny as possible and more or less with only requirements: slideUp/down. json get basic DOM The iPhone-look alike-frameworks doesn't do it for me (overdone ...
1
vote
0answers
219 views

ajax function broke on Blackberry OS/6

I was using XUI javascript library for Blackberry web application (OS 4.7 and 5.0). I just tried code on Blackberry Bold with OS6. Problem is that http ajax calls to remote server fail. No errors ...
1
vote
2answers
689 views

How can I make Xui JS x$('') work with existing jquery code $('')?

I suspect this is ridiculously simple, but I can't figure it out. We have some simple code that we've written using jQuery, but I suspect it would work fine with xui, and since this is a mobile app ...
11
votes
4answers
15k views

Sencha Touch vs. jQtouch vs. GWT mobile vs. XUI vs. jQuery Mobile vs. [closed]

Hey, there are some posts out there discussing mainly Sencha Touch and jQtouch. I understand that Sencha is more for heavy apps. Read here: http://9-bits.com/post/723711597/jqtouch-and-sencha-touch ...
0
votes
1answer
688 views

How do I the get touched coordinates using the xui library

How do I get the coordinates that the user touches? I am using xui and Javascript. On my index.html I do not know how to get the x and y coordinates from a user interaction.
1
vote
1answer
696 views

jquery slideUp/ slideDown xui equivalent

Hello im trying to create the same effect of jQuery's slideUp and slideDown function with [xui]http://xuijs.com) so far i have created the fade effect xui.extend({ fadeOut:function(dur, ...
3
votes
2answers
1k views

BlackBerry Torch 9800 webkit browser issues with Javascript events

I seem to have a huge issue with the BlackBerry Torch 9800 webkit browser. That browser support HTML5 and javascript. The look of a web page developed for mobile device in HTML 5 looks the same for ...
3
votes
3answers
1k views

trying to get XUI working

I am trying to get javascript framework XUI working, but having trouble getting it to work on any desktop browser. More on XUI here... http://xuijs.com/documentation <script ...
0
votes
1answer
202 views

Javascript toolkit recommendations for Blackberry OS 4.6+

I'm looking for javascipt toolkit for Blackberry OS 4.6 and above (but must be 4.6 comptible!) for business applications. XUI looks interesting but can'y find examples or more than 1 page of ...
3
votes
1answer
2k views

xhr with phonegap on the blackberry

I am trying to submit an xhr using phonegap on the blackberry. Currently when I make the request it fails silently. I have tried using jQuery jQuery.getJSON(url , callback), an xhr object var ...
2
votes
4answers
4k views

QuickConnect vs Phonegap

What JavaScript Mobile development tool would you use based on momentum, existing documentation and functionality, and ability to get passed the App Stores strict policies?
1
vote
2answers
485 views

Anyone use xui? JavaFX?

Warning: Java newbie. Been looking at XUI for Java. Its looks quite interesting. Sort of liek a WPF way of designing interfaces. But googling around I don't see much other than articles saying it ...