Questions tagged [tabris]

Tabris is a cross-platform mobile framework for Java.

Tabris is a Java framework written by Java developers for Java developers to build mobile apps.

It uses standard JavaEE technology to create an application on a server. Native clients act as a player for the applications's UI. They access the application by calling a URL that provides a JSON representation of the UI. The clients will use this JSON message to render the UI using native components.

Native components are Cocoa Touch widgets in iOS, Java based widgets in Android and HTML5 in a browser.

53 questions
0
votes
1 answer

How to reference a Tabrisjs widget without id, without class, after creation

Here is an example (works on playground) that creates widgets with a forEach loop. I use index to create a unique ID for the widgets: id: 'txiFirstName' + (index + 1) I understand I can change properties of the widgets by using id’s and…
mrmccormack
  • 143
  • 1
  • 10
0
votes
1 answer

Adding Multiple TextView's to CollectionView in Tabrisjs

I'm able to easily add Widgets to CollectionView, but I can't seem to add more than one Widget type. I'm trying to add 2 TextView's. Here's what I got so far, it only outputs the firstName twice. (this runs in Playground) Also, is it possible to add…
mrmccormack
  • 143
  • 1
  • 10
0
votes
2 answers

Audio file plays only once, simple example Tabrisjs 2.4

I'm writing a very simple tutorial on how to play an audio file with Tabrisjs with this simple code which you can test in Playground. It works, but will only play the audio file once and I have to Reload it to have it play again. How do I get the…
mrmccormack
  • 143
  • 1
  • 10
0
votes
0 answers

Tabris JS fetch api handle preflight requests

I have a UPNP MPD server running on a Raspberry Pi connected to my home network. I am trying to control it through the Tabris app. fetch('http://192.168.1.6:49152/ctl/RenderingControl', { method: 'POST', headers: { "SOAPAction":…
arjun
  • 1,594
  • 16
  • 33
0
votes
1 answer

Tabris.js developer app not loading my app

When I try to access my app via the URL in the Tabris.js 2 Developer app, I briefly see the message below, and the app returns me back to the URL screen: "Could not load boot.min.js or boot.js file from tabris module 'node_modules/tabris'" I tried…
Nick
  • 1,049
  • 2
  • 8
  • 12
0
votes
2 answers

Tabris.js getting started - fail

Tabris.js claims to be simple and offers a "getting started" demo app for noobs to try for themselves with a step by step guide. Downloading the cli tool works seamlessly, and creating the initial demo app asks clear and sensible questions: what to…
Brian Lowe
  • 4,943
  • 1
  • 18
  • 20
0
votes
1 answer

TabrisJs working with Upnp

Upnp looks harder to work with in TabrisJs. It supports node packages to a large extent, but I am finding a tough time working with Upnp. In package.json I got node-upnp-client "dependencies": { "tabris": "^2.0.0-rc2", "moment": "~2.8.4", …
arjun
  • 1,594
  • 16
  • 33
0
votes
1 answer

adding npm module to Tabris results in a failed build with cordova

Being rather new to mobile app development i'm looking at Apache Cordova paired with Tabris. Tabris requires a particular installation procedure, this creates a ./node_modules sub-folder under the regular ./www folder of a typical cordova project.…
Saint Crusty
  • 53
  • 1
  • 10
0
votes
1 answer

Saving your canvas image

Im using clientcanvas to edit pictures in my app created with tabris. So far it's working quite well, but I got a problem to save the edited picture as a new image. Does anybody has any experience with that?
0
votes
1 answer

add/read parameters to/from the url

If I add parameters to the url in the Objective-C code, is it possible to read it from the client? Example: - (NSURL *)serverURL { return [NSURL URLWithString:@"http://rap.eclipsesource.com/demo?parametername=value"]; } In the Client-JavaCode I…
Michael
  • 65
  • 7
0
votes
1 answer

Using Tabris-js, and trying to use the cordova file and file-transfer plugins

Pretty new to tabris-js, however so far very impressed at the speed and ease of getting a native mobile app running. I am playing with the camera function of cordova.. since there is a tabris-js example, that part is fine. However, I am trying to…
Dav.id
  • 2,757
  • 3
  • 45
  • 57
0
votes
1 answer

How to determine OS type on device with Tabris

I've looked through the official documentation on the Tabris site, but I've not yet found an answer. So, within a Tabris app, how does one determine the current OS its running within? Specifically, I'd like to be able to detect Android or…
Paul Gregoire
  • 9,715
  • 11
  • 67
  • 131
0
votes
1 answer

Tabris.js facebook and twitter login

I think tabrisjs is looking like a very good native solution for javascript developers. I am investigating this framework now. But I could not find any details for social login solution for tabris.js Is tabrisjs supportting facebookSDK for ios and…
Kerem
  • 995
  • 7
  • 19
0
votes
1 answer

Local Photo Gallery

Is there a way to get Photos from the Gallery of the Device with Tabris? I know that it wasnt possible like half a year ago, maybe there is a way now? Couldnt find any information on the tabris homepage.
0
votes
1 answer

Is there a way to get back to the top level page from any given page in tabris?

Is there any other way than the openpage() method? Also I guess I found a bug with that way. When I do it with openpage() I get back to the top level page but the back button on the upperleft(IOS) is shown which should not be there on a top level…