Hi everyone.
This is my first post on this community.
I’ve been an active user and member of the AppSheet community, but I don’t like the way things are going lately.
I took a look at Glide a couple of weeks ago and apart from the automation part that AppSheet provides, it seems like it’s a good replacement for me.
I don’t know if I’m completely right about this but is it true that all of the automation stuff is managed by third parties here? I mean Zapier, Make (aka Integromat), etc?
If so, something that’s powerful and easy on AppSheet like sending email reports and make paginated reports may be a big hussle and, at the same time, more expensive to do here.
What are the solutions you have used to make reports via GlideApps?
About the same thing, how can you display child records on a report using GlideApps?
It looks great. I’m already using HTML/CSS with my templates on AppSheet anyway
Kinda like that.
Not necesarily a table but that’s ths most common scenario.
An invoice with invoice items as children where they are added to the template as rows on a table. But this can be any kind of repeated thing.
We have ‘Template Start:’ expressions on AppSheet, which are a way to tell the backend we need to repeat a certain part of the template (like a row) the same amount of times as rows are pulled via the expression.
Now that I think about it and since I already made an app using Glide, is this done here sending an array on our JSON using webhooks?
I’m looking for a platform that’s at least partially compromised with their community and users and not focused on just their own interests.
Google owning AppSheet was a move that killed what made AppSheet special from it’s people pov.
Now it’s just a powerful platform that can go anywhere without prior notice and that’s what make me hate about it now.
It’s not the only platform, and eventhough pricing on GlideApps makes it unapealing for me at first, I’m learning it to have another tool that I can make use of.
To make things clear, AppSheet is not broken, it works fine for my needs (I made ERP-like apps which interact with about 40+ tables). The problem is that I feel like it’s going anywhere, and I hope I can feel better here.
GlideApps and AppSheet are actually very different, I wouldn’t say one is better than the other. Something that makes one awesome is not present on the other one and viceversa.
I hope you are open to more questions because for sure I’ll need to ask new things on my journey
HI @Darren_Murphy
Thanks for your suggestions, it seems like you already did something like this in the past and that’s what I needed.
Now, I don’t get the third point.
I was able to make a JSON object on each row and make an array on the parent table but since I understand JSON but I haven’t studied yet, can you show me a litle example of the thing I need to do to build a JSON from the list/array I already made (collection)?
My collection column looks like this:
[{
"field1":"data1"
}, {
"field2":"data2"
}
]
When I send this through webhook, it’s a string and not an array for Make, that’s where I’m not so sure what to do next
Thanks @Darren_Murphy
As far as I know, indentation is not a problem, rather a preference, so even if it looks weird it shouldn’t have any effect on the parsing phase. Am I right?
[
{
"field1":"data1"
},
{
"field1":"data2"
}
]
I’m going to try to parse the data on Make and I’ll be back with more comments.
I appreciate your time