Questions tagged [everlive]
16 questions
2
votes
1 answer
Finding if a user is verified in Icenium Everlive
I am new to Icenium Everlive and I am attempting to block logins by users who are not verified. My login and registration currently works using code like this:
function login() {
var user = {
"username": username.value,
…

Mike Betterton
- 72
- 1
- 9
1
vote
1 answer
Manage Telerik backend push notifications based on data
I've been going around in circles today trying to figure out the best approach, but I'm still lost. Hoping someone here or the Telerik forums has the answer.
My user has a group of records with dates. I need to send a single push notification to the…

Phil Figgins
- 796
- 1
- 8
- 22
1
vote
1 answer
Push notification in Android using Everlive
I am creating hybrid application using Kendo UI Mobile. I want to have push notification with my application. I try to enable notification on simulator and on physical device (kindle fire HD) but it is not working.
As a reference I am using this…

rushabh138
- 17
- 13
1
vote
1 answer
Everlive CRUD example with Kendo grid?
Is there a full CRUD example of how to use Everlive with Kendo grid? All I could find is how to create the data source here: http://docs.telerik.com/platform/backend-services/development/javascript-sdk/kendoui/kendo-uidata-source. What is the…

TruMan1
- 33,665
- 59
- 184
- 335
1
vote
1 answer
Kendo DataSource reads my remote database but won't save things to it
It can Read the remote database, it can Create new items locally, but they don't actually save to the remote database. This is what adds a new item:
function addNewItem(){
dataSource.add({id:"0", petName:"Dusty", petSpecies:"Dog",…

Shonna
- 993
- 2
- 9
- 12
0
votes
1 answer
Telerik Everlive API Nativescript Angular2 Setup
I am trying to set up everlive api for my {N} ng2 app and I have the following set up
const Everlive = require('./utils/everlive.all');
@Component({
selector: "main",
template: " "
})
export class…

adage231
- 126
- 6
0
votes
1 answer
angular-seed-advanced: error TS2304: Cannot find name 'UnderscoreStatic'
I'm trying to integrate Everlive SDK with Angular seed advanced. The SDK is version 1.9.1. It should work seamlessly after adding the typings from the npm package, but when trying to build the project there is that…

viktorstaikov
- 103
- 1
- 7
0
votes
0 answers
WebException was caught. The remote server returned an error: (403) Forbidden
I am trying to send push notifications to iOS devices from back-end. When I run my service this exception is being thrown. "The remote server returned an error: (403) Forbidden." This is my code in c#:
string appid = "my_app_id";
var httpWebRequest…

Siddharath Gupta
- 13
- 1
- 6
0
votes
2 answers
Telerik - Uploading Videos to Everlive, Unexpected Error
I'm currently trying develop an app in which I want to be able to record a video and I'm testing it at the moment with Teleriks everlive service. It takes me to the video camera on my phone correctly but then after recording as far as I'm aware the…

SammyRob
- 49
- 1
- 13
0
votes
1 answer
Telerik Everlive Multiple Queries in one Query
How can I use .or() with .and() in a Everlive query? I basically want the results of (JobNumber && PhoneNumber) || (JobNumber && wgnumber). Thank you.
My attempt:
var query = new Everlive.Query();
query.where()
.and()
…

xinthose
- 3,213
- 3
- 40
- 59
0
votes
1 answer
Kendo UI - save settings locally
I have some settings that are "bound" to a kendo observable, but they are APP-settings, so I don't want them to reset everytime the app is restarted. I want them to be saved, so they are stored in the app for the next time the user opens.
I can't…

Jakob
- 4,784
- 8
- 53
- 79
0
votes
2 answers
Kendo DataSource.filter(date) causes application to crash
I'm trying to filter some data for a chart with date-sensitive information
if I select a date range, with no date, that would return an empty array of results, the application doesn't crash, but as soon as there is data withing the range of the…

Jakob
- 4,784
- 8
- 53
- 79
0
votes
1 answer
How to send push notification node.js everlive
I want to push notification with node.js but the module in node.js don't have the send method.

Julien Cousineau
- 1
- 1
0
votes
1 answer
Can't update dataSource.at(0) in viewModel
In my viewModel i bind the user-property to userDataSource.at(0):
vm.set('userDs',userDataSource);
userDataSource.fetch(function(){
vm.set('user', userDataSource.at(0));
});
This works fine as long as I just use the user data. But it doesn't…

Martin
- 5,197
- 11
- 45
- 60
0
votes
1 answer
Fetching multiple levels of objects with kendo ui datasource?
I'm very new to developing mobile applications with telerik appbuilder. There are some things I have a hard time to understand with fetching data from Everlive.
Lets consider a simple example. Lets say I have Blog Posts and Comments that belong to…

Martin
- 5,197
- 11
- 45
- 60