Tagged Questions
A lightweight, dead simple, micro-tiny, modular JavaScript framework for building mobile web applications
5
votes
4answers
9k views
Sencha Touch vs. jQtouch vs. GWT mobile vs. XUI vs. jQuery Mobile vs.
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
...
3
votes
0answers
937 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 ...
2
votes
1answer
72 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 ...
2
votes
4answers
727 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 ...
2
votes
1answer
1k 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
3k 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
1answer
48 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
184 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 ...
1
vote
1answer
103 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' }]);
...
1
vote
1answer
136 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(){
}
...
1
vote
1answer
72 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 ...
1
vote
0answers
127 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
1answer
439 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, ...
1
vote
2answers
386 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 ...
0
votes
0answers
11 views
Working example with PhoneGap and Xui JS
There is some working sample that explains the usual functionalities implemented with xui, that may i follow in order to learn it? I cannot found any besides ...
0
votes
0answers
18 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. ...
0
votes
0answers
11 views
xui.2.3.2.min “cannot find function addEventListener in object” exception
I just downloaded the minimized version of XUI JS framework version 2.3.2, and the compiler gives me the error Cannot find function addEventListener in object [object global]. The error are risen on ...
0
votes
0answers
8 views
windows ce xuijs set html no effect
building a web app for winCE.... :-|
using xuijs,
x$('h2').html('set this..');
x$('#myId').html('inner','or this..');
nothing works.
Clueless, using IE-version of xuijs,
thankful for any help.
0
votes
0answers
11 views
callback on modal html buttons - how?
Buildning web UI for windowsMO6.5 I'm abit puzzled how to solve callbacks when user hits button in modal html dialog. Should i create a JS-class or what would be best practice?
concept:
On click ...
0
votes
1answer
61 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 ...
0
votes
2answers
79 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
73 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';
...
0
votes
0answers
185 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 ...
0
votes
1answer
201 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 ...
0
votes
1answer
117 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 " + ...
0
votes
1answer
35 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
55 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 ...
0
votes
1answer
42 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
199 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 ...
0
votes
1answer
375 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">
...
0
votes
1answer
334 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
1answer
98 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 ...
0
votes
1answer
463 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 ...
0
votes
2answers
408 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 ...
0
votes
1answer
439 views
How to get touch coordinates using xui library
hi how to get the coordinates that the user touch? i am using xui and javascript to do however at my index.html i do not know how do i call the x and y coordinates that the user get.
0
votes
1answer
157 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 ...