waiting for your help guys, thank you for your time
kindly inform me of any needed details.
A
Latest posts made by aseelmqannasa
-
RE: Unsubscribing to firebase firestore's updates listener
-
Unsubscribing to firebase firestore's updates listener
Hello,
what is the best way to unsubscribe to firestore.collection().onSnapshot() on logout?Note: I am using multiple stores and I am using a listener to updates in every store, but I want to unsubscribe to all listeners on logout.
-
RE: Listing different depths object using the same element
@dmoylan yes that’s it thank you!!
-
Listing different depths object using the same element
Hello,
I am trying to list objects with different depths using q-tree element, to clarify:
I am working on a dashboard, and I want to display lookups list of objects, but I do not have a specific depth for every lookup, like the following:
I may have the following object in the list:{ "country": { "SA": { "city": { "Ruh": { "locale": { "ar": "Riyadh", "en": "Riyadh" } } }, "locale": { "ar": "Saudi Arabia", "en": "Saudi Arabia" } } } }
and may also have the following one:
{"currency": {"JOR": {"locale": {"ar": "Dinar", "en": "JOD"}}}}
and I want to list both of them using the same element, I am sorry if that isn’t clear enough, please ask me anything to clarify more.