Questions tagged [backendless]

Backendless provides an instant backend to help developers build better apps faster.

The Backendless Platform is a tightly integrated system designed to streamline and accelerate application development process. Individual platform products can address requirements of developers working on mobile, web-based or enterprise applications. However the platform as a whole establishes a unified approach for building applications faster, at a reduced development cost and with the utmost reliability.

Backendless.com

255 questions
0
votes
1 answer

Backendless swift HOW TO LOAD OBJECTS FROM AN MBAAS STORAGE

I followed the example LOAD OBJECTS FROM AN MBAAS STORAGE, from Backendless site, however I've got an error (saying Value of type 'AnyObject' has no member 'name') trying to get the values (from Restaurant collection) by direct reference as in the…
Hermes
  • 467
  • 5
  • 8
0
votes
0 answers

Installing BackendLess via CocoaPods generates multiple build errors

I am replacing Parse with BackendLess on an iPhone app and when I install it via CocoaPods, I get 10 "no member named 'xxx' in the global namespace" errors in another library which is using C++ functions. I am using Xcode 7.2 building for iOS 9.2.…
robMontesinos
  • 123
  • 2
  • 9
0
votes
1 answer

How to send information between 2 clients (Android)

What do I have? Backendless server code (backendless.com). Genymotion emulator with 2 virtual devices. What do I want? I want to send information between 2 virtual devices. I use Backendless server as intermediate server. It helps clients to…
fyufuisb
  • 1
  • 2
0
votes
1 answer

Save object to existing table "Backendless.com"

I am using backendless.com as a BaaS. So, I can not add objects to existing table. That`s why I am creating table in my .js file: function Contacts(args) { args = args || {}; this.age = args.age || ""; this.name = args.name || ""; …
0
votes
1 answer

advanced search - code 1017 invalid where clause [Backendless]

I have a table called Request with an entry with requestId F92G3W. When I do curl -H "Content-Type: application/json" -X "GET" -v "https://api.backendless.com/v1/data/Request?where=requestId%3DF92G3W" or Request?where=requestId=F92G3W (with equal…
EricY
  • 376
  • 1
  • 3
  • 19
0
votes
3 answers

Why gulp-uglify breaks backendless?

I actually have no idea, which part of code should i show you. I have a webApp (reactJs, flux, react-router, nodejs+express server); It works fine, right untill i uglify main.js file. Here the "search" through backendless database…
stkvtflw
  • 12,092
  • 26
  • 78
  • 155
0
votes
1 answer

Async call to backendless data

This works, but it freezes the page during call: getAllNewEstate: function(callback) { function NewEstateData() {}; var items = Backendless.Persistence.of( NewEstateData ).find().data; callback(items) }, How can i make async…
stkvtflw
  • 12,092
  • 26
  • 78
  • 155
0
votes
1 answer

Backendless: delete row in 1st table when related row in another table is deleted

I have two tables. UserFavourites and Action. UserFavourites has Action as its property (column). I want the system to delete UserFavourite row, when related Action is deleted in Action table. Currently, When I delete a row in Action table, that is…
sermilion
  • 185
  • 1
  • 15
0
votes
1 answer

Backendless: How to load only the data which belongs to the currently logged in user

I have two tables which has "photo URL" columns, that contain same image URL. So when I change value in one table, I would like the value in another to update automatically. So how can I set this relationship in Backendless? Like foreign key in…
sermilion
  • 185
  • 1
  • 15
0
votes
1 answer

Getting parent element form backendless relations

I have table Places in Backendless, that has field Events (relationship with another table). Events table has field Places that has relationship with Places table. So, I want to get Place form Event object. When I try to load Events object, it does…
sermilion
  • 185
  • 1
  • 15
0
votes
1 answer

Backendless iOS: intermediate table between two tables

I am new in Backendless and I have read all the manuals about relations, but still not sure how to create san intermediate table between two tables. For instance, I have table called users and tables called Events. A user can subscribe to events. So…
sermilion
  • 185
  • 1
  • 15
-1
votes
0 answers

Temporary password-only authentication for front-end

I'm looking for solutions for my Vue 3 app that will allow me to authenticate users only with a password. No email address needed - the login page will have only the password field. Users will not be registering themselves. They will be provided…
DemiA
  • 333
  • 1
  • 11
-1
votes
1 answer

How do I monitor for ANY changes of class properties in swift

This seems like a simple question, but now I've been going in circles for an embarrassingly long time so time to ask. What is the best method for detecting a change in ANY property of a reference object? I am using Backendless as the backend so I'm…
david dt
  • 31
  • 2
-1
votes
1 answer

How to save object with relation using JAVA in Backendless 4.0?

(SAVING DATA WITH RELATION USING BACKENDLESS 4.0) I would like to save data with one to one relation. example: -person_table have a relation with adress_table the data is save in person_table and address_table without relation. how can make this?…
-1
votes
1 answer

Entering data into Backend Less table

I started using Backend Less to support a project I'm making. But I'm unable to figure out how to enter data. Here's my code: var APP_ID = '00000000-0000-0000-0000-000000000000'; var API_KEY =…
Saurav Sircar
  • 165
  • 1
  • 13
1 2 3
16
17