Questions tagged [rhomobile]

With the RhoMobile Suite you can use your web skills to build cross-platform native mobile applications. Main focus are enterprise apps, targeting iOS, Android and even Windows Mobile.

With the RhoMobile Suite you can use your web skills to build native mobile applications.

The RhoMobile Suite is an open source enterprise mobility suite of products previously owned by Zebra Technologies. With RhoMobile you can develop, integrate, deploy and manage your enterprise mobile applications.

Components of the RhoMobile Suite are:

  • RhoStudio - IDE based on Eclipse for Windows and OS X
  • Rhodes - Opensource Frameworks with MIT license to build B2C application
  • RhoElements - based on Rhodes, adds functionality like support for Windows Mobile, requires a subscription to compile applications
  • RhoConnect - Integration and synchronization engine - requires a subscription to be used
  • RhoHub - Cloud service to develop Rhodes/RhoElements apps & hosting RhoConnect
  • RhoGallery - Enterprise Application Management. Simple and Easy to use

Zebra Technologies has built Launchpad, a community site with recorded webinars, documentation, blogs and public forum for all the interested developers.

RhoMobile is now developed in the open by Tau-Technologies

347 questions
1
vote
1 answer

How to pass variables to partial in Rhomobile

I have a partial where i need show the value of variable catchedEvent, Partial
Here to show the value of the variable
On my erb page i'm calling this using <%= render :partial =>"mypartial" %> I can't get the way to…
user2759215
1
vote
1 answer

Can we use native code as plugin in Rhomobile?

I need to run a java code for Android inside Rhomobile app. Is there any way i can call the java code. I have seen some of the plugins to interact with native codes for Android. I tried searching and i did get to this url…
user2759215
1
vote
1 answer

How to send data as json object in post method of Rho::AsyncHttp

I sending data to a server using the Rho::AsyncHttp.post method, but i'm unable to send the data as json object. But sending the data as string reaches the server but the server api requires json data. Here the code i'm using, data = { :query1 =>…
user2759215
1
vote
1 answer

how to upload file to google drive using sdk in uploadtype=media

I am trying to upload file to google drive. as token_res = Rho::AsyncHttp.post( :url => "https://www.googleapis.com/upload/drive/v2/files?uploadType=media", :headers => {'Content-Type'=> 'image/jpg','Content-Transfer-Encoding'=> 'base64',…
Dheena
  • 117
  • 9
1
vote
1 answer

How to show loading message when making a ajax call in controller

I have a Rhomobile Application, where i need some data to fetch from the server in the controller. I have been using the below code, result = Rho::AsyncHttp.get( :url => "http://www.example.com/API-vs-1" ) @get_result = res["body"] When i…
user1455842
1
vote
1 answer

MC40 Application UI changing when Scanner Enabled (Android OS)

I am developing RhoMobile Application for Motorola MC40 device. When I include app_type: "rhoelements" in build.yml for enabling the scanner, the UI getting shrink but scanner is working perfectly. If I am not including the app_type, UI is perfect…
Augustine P A
  • 5,008
  • 3
  • 35
  • 39
1
vote
1 answer

Can I store persistent data in a Rhomobile application?

Can I store persistent data in a Rhomobile application without a license throughout multiple times I turn the app on or off? All I am looking to store is a simple coordinate, two numbers.
reZach
  • 8,945
  • 12
  • 51
  • 97
1
vote
1 answer

integrating images in ruby command

I have an index.erb and now I want to show a picture dependent on a condition. So, I choose a If loop, but I don´t know how to call up a image written in html within a ruby command? Perhaps it´s easy, but I don´t have any idea, because i´m a newbie…
1
vote
2 answers

Rho Mobile: Parse and create a model using JSON

I am able to parse a JSON using the following code $httpresult = @params['body'] $jsonresult = Rho::JSON.parse($httpresult) But I don't know how to create a model from $jsonresult.
1
vote
1 answer

Rhodes undefined method `[]' for nil:NilClass

I am making a rhodes application for iPhone. I am getting "undefined method `[]' for nil:NilClass" exception while the executing the line of code given url_string = url_for(:action => :my_callback) "MyScanner < Scanner" is my class and the Scanner…
Augustine P A
  • 5,008
  • 3
  • 35
  • 39
1
vote
1 answer

does RhoMobile or PhoneGap or Mosync can work with SQL Server CE or SQLite database and does it work with barcode scanner manufacturer provided dll?

I am going to use RhoMobile or PhoneGap or MoSync framework to develop a mobile application taht will be deployed on device with Windows CE or Windows Mobile. This application should ready barcodes through its barcode scanner not the camera. The…
1
vote
1 answer

Rhomobile supports graphics?

Does the rhomobile support drawing with 2-d(3-d) graphics or is the graphic capabilities limited to static images?
AndersK
  • 35,813
  • 6
  • 60
  • 86
1
vote
0 answers

Rhomobile app not working if 3G network proxy is active

If my phone 3g network use proxy, rhomobile app is not working. It loads splash screen and after remain stucked to a white screen without response. Is there a solution/patch for this problem? Or can I test if proxy is activated and show popup whith…
b3n1Am1n
  • 47
  • 4
1
vote
2 answers

Calling finance.yahoo api using jquery

I want to send http request for fetching finance.yahoo stock data with url like : http://finance.yahoo.com/d/quotes.csv?s=GAIL.NS+BPCL.NS+%5ENSEI&f=snl1hgp which returns a csv file. I want to read the response data and fill it in a listview using…
Anil
  • 1,028
  • 9
  • 20
1
vote
2 answers

Performing Left Join in Rhomobile

Is it not possible to perform a left join in Rhomobile? I have models PriceGroups, PriceLookup which have a 1-many relationship (ie. each PriceGroup and have many PriceLookup records). I need to do a simple SQL Left Join so I have the required…
amrcus
  • 103
  • 11