Tagged Questions

Rhodes is part of the suite of RhoMobile (now a Motorola company) products used for developing client side mobile applications. The entire suite of RhoMobile products include: Rhodes RhoHub RhoStudio RhoConnect RhoGallery

learn more… | top users | synonyms

7
votes
3answers
776 views

How do cross-platform mobile app development frameworks work?

How are Rhodes, Phonegap, and Appcelerator able to take Javascript or Ruby, and compile them into binaries for app SDKs that normally require apps to be written in Obj-C, Java, and others?
6
votes
2answers
558 views

ruby on android : ruboto vs rhodes?

Anyone have tried develop android app using ruby? If one want to try it which tool you recommend? advantage, disadvantage between both? Any experience sharing,insight,etc will be much appreciated.
5
votes
1answer
479 views

Developing Cross Platform Mobile application in latest frameworks (Rhodes, PhoneGap, jQTouch)

We have recently developed an iPhone, iPad, Android application with the Rhodes framework and have found it to be painful to say the least. As we are approaching the finishing stages and now testing ...
4
votes
0answers
69 views

Signature Capture in Rhodes

I am trying to implement signature capture using Rhodes targeting android tab. I have managed to get the canvas and scribble on it. But am unable to save the signature at a desired location. The ...
4
votes
3answers
252 views

Rhodes or Titanium for Rails app in iphone?

Hi i wanted to develop an iphone app with Ruby.. Is Rhodes or Titanium the best option? i need to integrate GPS and google maps
4
votes
1answer
869 views

Rhodes : Error!!! Wrong Android API version

I just did un-installation of instant_rhodes-2.4.1.exe and install instant_rhodes-3.0.0.exe to Windows 7 Now when I rhodes app HelloWorld cd HelloWorld rake run:android it show me Error!!! ...
4
votes
1answer
525 views

What do you think of Rhodes framework?

When developing for mobile applications I want to target multi platforms, thus, i found that Rhodes Framework allows to code "a single application that works on all major smartphones". As it's a ruby ...
3
votes
2answers
114 views

Passing parameter in a ruby function from HTML[solved]

I have two files. .rb(with ruby code) and .erb(HTML file with some ruby script). I am calling a ruby fuction in .rb from .erb. .erb <a href="<%= url_for :action => :showProducts(i) ...
2
votes
2answers
796 views

Can't run sample rhodes application

I installed Android sdk version and Andorid ndk . Using Android SDK and AVD Manager, i installed SDK Plaform Android 2.2, API8, rev3 and 1.6, API4, revsion3 When i try rake run:android I got the ...
2
votes
3answers
282 views

rhosync not starting!

I installed rhodes as per the tutorial on the website and i also installed rhosync Now when i try to start rhosync then i get error [12:06:07 PM 2011-02-23] Rhosync Server v2.1.1 started... ...
2
votes
2answers
971 views

Rhodes v/s Titanium

Which is the best framework to develop cross platform application. Especially for android and iphone. I have been through the reviews present over the internet, but those seem to be pretty old. I ...
2
votes
2answers
160 views

What does “” (two double quotes) do in Ruby?

I've seen Ruby code in which there are only two double quotes ("") on a line. What does that line do?
1
vote
2answers
48 views

Android Emulator Showing Chines character

I have run my rhodes application in Android emulator. When i type characters in input field, i got chines character. How can i change lang setting please ?
1
vote
1answer
70 views

How to made SOAP request from Rhodes?, I don't want to use Rhoconnect

I am having my rhodes application. I would like to make SOAP request . I dont' want to make user of rhosync/rhoconnect. How can i found soap header and body please ?
1
vote
1answer
144 views

'Error Loading Page' when testing RhoMobile application on a phone - using jQuery Mobile

I'm developing a mobile app using the Rhomobile framework/Rhodes - a combination of Ruby and JqueryMobile. When I build and test my application on my desktop on the emulator, clicking on a link ...
1
vote
1answer
85 views

Alert ok button event - Ruby

I am creating a Rhodes cross platform application. Somewhere in my application I am displaying an Alert with a default OK button. This is my code : Alert.show_popup "Payment successful. Your ...
1
vote
1answer
254 views

“Cannot find Rhodes” creating a new Rhodes application in Eclipse

I just started with Rhodes cross platform mobile application development. I followed the rhostudio tutorial to install RhoStudio and to start creating a Rhodes application. Once I click the Finish ...
1
vote
1answer
175 views

Rhomobile back function

I'm having a problem getting the back button function to work in Rhomobile. I've tried various methods of url_for(:index, :back => ....) etc etc and nothing seems to work. The problem with this ...
1
vote
1answer
97 views

Jquery Ajax call not working in Rhodes

In my application i am using simple Jquery Ajax call, but it is not working. Here is my code try{ $.ajax({ type: "GET", url: ...
1
vote
1answer
154 views

Setting up Rhodes environment with Ruby on Rails already installed

I am learning and have already set up a Ruby on Rails environment based on Hartl's book. I would also like to set up a Rhodes environment for mobile app development. How would I set up Rhodes after ...
1
vote
1answer
112 views

Decrypting a PHP encrypted string using Ruby

I'm fairly new encryption and decryption so please excuse my lack of knowledge in the subject. I am trying to decrypt a string in Ruby. The string is read from a server where it was encrypted in PHP ...
1
vote
0answers
350 views

rhodes jqtouch jquery HIERARCHY_REQUEST_ERR: DOM Exception 3

I am getting error in my rhodes app . I/APP ( 379): I 08/19/2011 14:59:45:680 afd4d440 ChromeClientNew| IERARCHY_REQUEST_ERR: DOM Exception 3: A Node was inserted somewhere it doesn't ...
1
vote
2answers
275 views

jquery mobile flashes previous page after transition

Have page have list with link to show item. when I click back to list item from show page, it goes back to list, flashes show page and comes back to list. <div data-role="content"> <ul ...
1
vote
1answer
173 views

rhomobile prepopulated DB and reset

Hi I am prepopulating the db as said here http://docs.rhomobile.com/faq#how-to-pre-populate-client-database but I have a problem, that when I make reset DB with default code def do_reset ...
1
vote
1answer
233 views

rhodes without rhosync

I am new in rhodes world. I want my rhodes app to talk directly with web server i.e I dont want to use Rhosync. How can I achieve this? Also I have seen about Rho AsyncHttp, is it the same I do ...
1
vote
1answer
69 views

Rhodes before_filter for controllers

Does Rhodes has before_filter for controllers similar to Rails.
1
vote
2answers
320 views

Ruby and Rhodes

We need to develop a cross-platform mobile web app for iOS, Android, Blackberry and Windows7. It will read users' Geo location and suggest places nearby they might be interested in visiting. The ...
1
vote
1answer
386 views

redirection from one controller to another in rhodes mobile application frame work using ruby

i like share this to programmers who are new in rhodes frame work. I got one problem in redirecting from one controller to another. First time i tried below code. redirect_to :controller => :User, ...
1
vote
1answer
378 views

Models in Ruby Rhodes basic questions

I'm fresh to Rhodes and don't have any experience with RoR. I created a new model in my application: rhogen model CoffeeKind name,description,vendor,picture I would like to: add a new property ...
1
vote
4answers
486 views

Writing a mobile phone radio station app - is Javascript/HTML/CSS viable, or do we need to go native?

I want to write an app that will stream MP3s from a server to any of the three major smartphone operating systems in the US (iPhone, Blackberry, and Android). Here is the tradeoff I'm concerned with: ...
1
vote
3answers
172 views

App development for both smartphone and website?

I've been looking at mobile development frameworks including Rhodes, Titanium, and PhoneGap. As a large part of the application we're developing will also be integrated on the web (a game), we'd love ...
0
votes
0answers
8 views

a demo application on rhoConnect while developing rhodes application

hi I am new to Rhodes application .We are facing problem in how to start rhoConnect. can u please share me the demo application. Please help. Thanks,
0
votes
0answers
18 views

how to use AsyncHttp instead of SyncEngine?

i am using asynchttp for do_login. but am using syncengine in all other session.. i have to change everything to asynchttp... how to do it.?? if i do like this my rhodes models are working and i can ...
0
votes
1answer
14 views

Raising an intent / opening a pdf or epub in an external viewer in rhodes (rhomobile)

Hi is it possible to open a file in an external program from within rhodes? Open / Viewing a pdf or epub? Thanks a lot!
0
votes
0answers
17 views

How to make a post request to https server with paramaters from rhodes mobile app?

I'm using to make my mobile app and want to connect to my rails backend on Heroku. It uses ssl because security is important. I want to make a post request to the server, and I know the server works ...
0
votes
0answers
16 views

RhoMobile: SSL on iOS Devices

Problem Description: In the Rhodes app, we are making a request to a URL via HTTPS. The actual call that is issued in the Ruby code is result = Rho::AsyncHttp.get( :url => url, ...
0
votes
0answers
6 views

Rhoconnect and Rhodes synchronization - sync_err error

I am trying Rhoconnect, rhodes synchronization and using rails app to fetch the data. When i run my rhodes app from Rhostudio and after login when i saw 'perform sync' it returns an error " Action ...
0
votes
1answer
13 views

Is there any Rhodes local storage like android have Shared Preference

I want to store login details on Rhodes what i ll have to do.Like In android Shared Preference is there.please help me.
0
votes
0answers
21 views

in rhostudio how to store data in the home page after clicking create button

i am using async http for creating iphone application. am not creating or using any external folders or rhode models like Product to create new automatic display pages. i am creating my own display ...
0
votes
0answers
35 views

In rhostudio app how to authenticate and validate username and password while using AsyncHttp…?

i am doing an iphone application using Rhostudio with ruby script for coding. eventhough i had done authentication code for username and password without login name and password it is redirecting to ...
0
votes
0answers
14 views

Rhodes - Error running `rake run:android` on one computer, fine on the other

I've got the basic 'storemanager' app from the rhodes tutorial running fine on one computer, but really want to do my development on another. On the second, when running rake run:android, it runs for ...
0
votes
0answers
14 views

How Rhomobile using Device's Web Browser Engine?

I am interested in learning Core structure of rhomobile, i have got better understanding. Anyone could explain how rhomobile uses devices web browser engine ? How rhomobile loads browser engine for ...
0
votes
0answers
29 views

How to get access token in Google Authentication ?

using Rhodes-ruby framework.. I am getting code value, redirecting to specified page, but access token fails---showing error as grant_type missing....... but i have given the grant_type value as ...
0
votes
0answers
65 views

Xml processor module not found error when try to consume soap service by using soap4r

I am trying to consume soap web service by soap4r gem. I am using ryby 1.8.7 rails 2.3.4 soap4r 1.5.8 rhodes 3.2.3 I tried the following in IRB. require "rubygems" require "soap/wsdlDriver" wsdl ...
0
votes
0answers
14 views

Custom extension for rhodes not loded on android emulator

I have included soap4r gem into my project inside frameworks folders. When i run (rake:run:android), Emulator always shows loading. It doesn't show any errors. What could be the problem.
0
votes
0answers
33 views

Rhodes System.exit generates error on exit on Win Mobile

As it is referenced in API, I used System.exit to quit my application. It seems to be working fine on IPhone emulator, but on Win Mobile it shows message : A problem has occurred with myApp.exe. ...
0
votes
0answers
24 views

Driver Map from Current location to two or more locations in Rhodes framework

Is it possible to show driver map from current location to two or more locations in Rhomobile (Rhodes) framework?
0
votes
1answer
47 views

jqGrid alternate for Mobile apps

Is there any thing similar to jqGrid available for Mobile applications ? Could someone please suggest a javascript plugin that I can use with RhoMobile platform ?
0
votes
1answer
12 views

How can I unzip a local data file using RhoMobile

I am writing an app using RhoMobile. There seems to be some permissions problem since System.unzip_file is not producing any results. My zip files is distributed with my app in the public folder. I ...
0
votes
1answer
25 views

Accessing the iPhone/Android address book through Rhodes

Is it possible to build a library or an application with Rhodes that connects to an iPhone's/Android's native address book and uses those address books natively (e.g. still has the available API for ...

1 2 3