
Riël Notermans
- Total activity 96
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 28
Activity overview
Latest activity by Riël Notermans-
Riël Notermans commented,
If you need to get rid of them quick, open the console in Chrome, and enter this line:$(".mark > img").each((i,e) => $(e).click()) Ik will click all task checkboxes.
-
Riël Notermans commented,
Hello Ingrid, we can offer this intergration als an API Add-on using Google Apps Script.
-
Riël Notermans created a post,
Bundling responses using fields parameter
In the documentation there is a short mention about building responses. We use Google Apps Script, and because a podio response is about 30kb, we can hit a daily 100Mb limit quite fast. I want to o...
-
Riël Notermans commented,
var name = @firstname var spouce = @spoucename var lastname = @lastname if (!spouce) { name + " " + lastname } else { name + " & " + spouce + " " +lastname }
-
Riël Notermans commented,
See how that works: https://docs.google.com/a/zzapps.nl/file/d/0B_5HSTQXtXmsNm1nSzg0QnRFMkE/edit?usp=drivesdk
-
Riël Notermans commented,
@bob, something like type this first to make it a text-field: @incomingfield Then type: var text = @incomingfield var number = text.match( /([0-9]|-)+/ ) if (number) { number[0]; }
-
Riël Notermans created a post,
Construction file upload payload
I am using Google Apps Script to upload files, which uses UrlFetchApp to construct the headers and the payload JSON. In the docs, I can't find a way to construct this data. What does podio expect?...
-
Riël Notermans created a post,
Add all fields in the item response instead of only existing fields
AnsweredSince item fields are not nesessarily filled with data, when I request an item, it only returns an array of itemfields. But it is not possible to show all fields with the item-information. I often...
-
Riël Notermans created a post,
Error message field.date.time_disabled
I want to add 'time' to a duration item via the API, but I get this response: field.date.time_disabled POST: var time_spent = 288.0; var fields = { "duration":time_spent, ...
-
Riël Notermans commented,
yes, or switch, while, for... and all that stuff