Tabris.js is a mobile framework that lets you develop native iOS and Android apps from a single code base written entirely in JavaScript.
Questions tagged [tabris-js]
22 questions
2
votes
1 answer
Which javascript framework works best in mobile app development
I want to know about for the native app development which framework should i choose
Reactjs or Tabrisjs.
Please explain the advantage and disadvantage of both the frameworks.

Rohit Kumar
- 438
- 2
- 6
- 16
2
votes
1 answer
Get notifications from a closed Tabris-js app
How can I get notifications from the Tabrisjs app in its closed state? similar to the notifications received in apps like Whatsapp or Facebook messanger even when the applications are not open.
The notifications can be either time triggered e.g.…

DerFaizio
- 148
- 7
1
vote
1 answer
Performance comparison of Nativescript vs Tabris.js
Has anyone performed an analysis between NativeScript and Tabris.js to check which one performs better in Android and iOS? For example: in overall application responsiveness and any other metrics of system performance or benchmarks.

user3330840
- 6,143
- 7
- 26
- 39
1
vote
1 answer
Tabris.js system push notifications
I can't find a way to send system push notifications using Tabris.js framework(current version is 2.6.1). According to this answer there is a way to send push notifications using the official firebase plugin, but is there a way to do it with the…

Ярослав
- 11
- 3
1
vote
2 answers
cordova-plugin-media not playing from local URI
Trying to play audio files from the external storage of phone.
Went through this plugin first finding the URI for a particular mp3 file. Then passed that to the cordova-plugin-media instance.
// find music file URI from the sdcard
new…

arjun
- 1,594
- 16
- 33
1
vote
1 answer
Tabris.js XMLHttpRequests not accepting responses: readystate 1
I have a tabris.js app that I needed to connect to a SQL database. In order to do so, I decided the best option would be to create an express REST API and then make XMLHttpRequests to it. When the app makes a request, the API shows that a GET…

Cooper Wolfe
- 111
- 1
- 7
0
votes
1 answer
Javascript version mismatch for Tabris framework
Few month ago I gave a try to Tabris, a nice framework for the development of native Android and iOS apps in Javascript. I wanted to get back to it today but my test app has javascript version issues.
First, the QR code scanning on Tabris mobile app…

mszmurlo
- 1,250
- 1
- 13
- 28
0
votes
1 answer
tabris.js websocket cant recive anything but a string
I am trying very hard and losing my patience with trying to send a simple array across to tabris.js
using this ws.send(JSON.stringify(["friendArray",{data: results}]))
i have to stringify it or it just crashes my tabris app for no reason
but when i…

Nik Hendricks
- 244
- 2
- 6
- 29
0
votes
1 answer
Tabris.js playground examples do not work due to async function
I want to start coding with Tabris.js, and try to get some experience with the playground. But every example which uses
async function asyncFunctionName(...)
doesn't start. The error message is:
Could not load main module: Error: Could not parse…

DaveTW-Berlin
- 1
- 1
0
votes
1 answer
How to test if a file exists in Tabris?
Here is an example (works on playground) of reading and writing a file in Tabris.
(this may be a good snippet to aid in understanding of “paths” on iOS/Android/Windows)
If you try to read the file which doesn’t exist a general error is reported…

mrmccormack
- 143
- 1
- 10
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
1 answer
using npm libraries in tabris-js app
I am new to programming and started with tabris-js mobile app development framework for pure javascript.
Tabris-js supports using npm modules an cordova plugins to extend.
I tried to import mqtt-js npm library into tabris-js app.
Locally installed…

Tragedart
- 1
- 1
0
votes
1 answer
Custom Splash Screen size - Tabris-JS
I've searched around questions but I didn't find anything.
I'm new to Tabris-JS framework, is very powerful and simple but I have some issue with the Splash Screen.
As mentioned in this commit, in Tabris-JS 2.x there are two theme options: one light…

denis
- 37
- 6
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