Live Query utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.
Questions tagged [livequery]
127 questions
0
votes
1 answer
When was .on() introduced to jQuery?
I have a legacy code that uses the Live Query plugin extensively. This code uses jQuery 1.3.1. I need to replace the deprecated .livequery() with the modern .on() (http://api.jquery.com/on/), but I do not think .on() was available with jQuery 1.3.1.…

Jaime Montoya
- 6,915
- 14
- 67
- 103
0
votes
1 answer
What is a "matched element" in Live Query?
I know, from one of the comments I was reading at Is livequery deprecated, "livequery is dead." However, I need to study it in order to upgrade some legacy code that I received.
I was reading the Live Query official documentation at…

Jaime Montoya
- 6,915
- 14
- 67
- 103
0
votes
1 answer
iOS, LiveQuery - Subscribe to a range of events at once?
I'm trying out the LiveQuery SDK and I want to know, if it's possible to subscribe to create and update events, in one subscription...

Sotiris Kaniras
- 520
- 1
- 12
- 30
0
votes
1 answer
Parse LiveQuery in Cloud Code
I have an iOS and android application, deployed in a Parse Server. Now, I want to use the LiveQuery SDK, from a cloud function!
Here's my cloud code:
Parse.Cloud.define("subscribeQueryFunction", function(request, response) {
var query = new…

Sotiris Kaniras
- 520
- 1
- 12
- 30
0
votes
0 answers
Swift Parse Live query - crashing when subscription comes across new object with PFFile
I am creating a swift 3 parse live query messaging application. When a picture is sent, if the subscription gets the new message then i get the following error
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:…

user6520705
- 705
- 3
- 11
- 38
0
votes
1 answer
Couchbase LiveQuery doesn't work with other keyPath than "rows"
I have a problem: I use Xcode and Swift in addition to the latest Couchbase Mobile Solution. LiveQuery also works perfectly, if I use the String "rows" in order to register the Observer and then listen to it. But I have a view in my app, where I…

Sebastian Petric
- 3
- 2
0
votes
1 answer
Parse Server LiveQuery Subscribe for Multiple contacts and Events (Android)
I am developing Chatting Application for Android.
I want to Subscribe Live Query for multiple Contacts in _User Class on Online Status of Users.
ParseQuery query= ParseQuery.getQuery("_User");
…

AAhmad Blal
- 181
- 2
- 9
0
votes
1 answer
Parse-Server LiveQuery not sending events
I am trying to get live queries working with iOS and Parse-Server. The following is my setup for my Parse-Server:
...
let api = new ParseServer({
databaseURI: databaseUri || constants.DATABASE_URI,
cloud: process.env.CLOUD_CODE_MAIN ||…

RPK
- 1,830
- 14
- 30
0
votes
1 answer
AjaxUpload: why do I have to click twice?
The code below uploads files to the server using AjaxUpload.2.0.min.js
But you need to click several times on the “Add File” button for the OS window (where to pick the file you want to upload) to show, instead of clicking just once.
Also, if you…

ADM
- 1,590
- 11
- 36
- 54
0
votes
1 answer
Chat application in Android using Parse Server
I have to develop an Android chat application and i have Parse Server as a backend.
I read documentations about Live Query it can do the job for real-time tasks, but this solution is only available for iOS.
Is there a way to use Live Queries for…

Fadwa_lmh
- 276
- 2
- 11
0
votes
2 answers
Livequery unsupported pseudo issue
I am using livequery in order to detect created elements and apply some css.
It works, but I have a problem with certain selectors.
HTML:
TEST3
JS: $("body").livequery("#Test\:SomeElement\.Id" , function() {…
Milos
- 2,927
- 1
- 15
- 27
0
votes
2 answers
jQuery/CSS image issue. Opera only loading parts of the images for unkown reason
Not that it's a surprise you encounter daily problems with Internet Explorer, but when you actually do it with a browser like Opera - it kind of throws you off the chair.
I got most things working with Firefox, Chrome and IE (apart from the fact…

arvdsn
- 75
- 1
- 2
- 7
0
votes
2 answers
.NET UpdatePanel + LiveQuery
I have used LiveQuery to detect when an element is added to the page. The element is inside an .NET AJAX UpdatePanel. When the UpdatePanel is refreshed, live query does not detect the new element.
…
user351178
0
votes
1 answer
jQuery: Ajax firing only once even though binded with livequery()
OK, so, I use livequery() to bind a function to the click event of all links of class 'ajaxLink'. The function fires perfectly...once. After the first successful ajax call on a click, subsequent clicks don't fire the ajax, which means (I'm guessing)…

hannebaumsaway
- 2,644
- 7
- 27
- 37
0
votes
2 answers
jquery. livequery() strange behavior
trying to run jquery plugin "livequery" to highlight some words in a dynamically generated search results doesn't work !
However adding an alert() function before excuting the code make the highlighting appear! so what is the problem?…

Newbie
- 69
- 2
- 8