Tagged Questions
2
votes
1answer
85 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
788 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
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
0answers
40 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
73 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
248 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
142 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
78 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
1answer
451 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, ...
0
votes
0answers
23 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 -
...
0
votes
0answers
18 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
83 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
1answer
115 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
1answer
43 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
67 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
54 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
389 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
109 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
2answers
428 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
482 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
161 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 ...