When you click on this button, your RT will begin to initialize. After the initialization is complete, a “Person” object will be created in the table, and you will receive a corresponding message. All subsequent creation of objects in this table will trigger this event.
Hi Nikita,
yes that’s excactly what I’ve did in my application. Triggering the event handler (e.g. AddCreateListener) from the Backendless UI Console works nice!
But when I create a new object from Backendless REST-Console or Client-App (Xamarin.Forms iOS and Android) this event does not get raised on the receiver
Have you tried using the code I provided?
It is very strange. I checked this case - everything worked for me. Can you provide a minimal reproducible example?
Hi Nikita,
sure I’ve prepared a simple demo app with basic RT-Data features.
During development of the code I realized it works stable and fast with the Person Database! Awesome!
But then I checked with my real customized database-scheme and it stopped immediately
I identified the column “GeoPoint” in my table stops the expected result of RT.
To show the behavior in the demo app, simply add another property in the Person-Model like:
public Point GeoPoint { get; set; }
and create an object with this property set to real coordinates (not “null” !).
When it is null, it works just fine. That was the real reason why it behaves so strange on my side (as described in my first message) because I don’t enter a POINT from the Backendless UI, but automatically from my code when saving objects.
Maybe we can nail the issue down with this information?