Podio offers the feature of getting generated webforms in an app of your own. For example: Imagine that you have a “Contact us” web page. Users will fill your webpage forms in, and then you will get items in your Podio app with those data. Let’s create an app that will get all the […]
About Lilia Amundsen
Author Archive | Lilia Amundsen
Add web links in Calculation field
Podio Calculation field makes use of Markdown features, so we are free to use them. As a result, we are free to add web links. There are two way to do so: 1) By writing down the URL. It then automatically it becomes a link. Just copy paste the following code to a Calculation field: @Text ? “https://www.google.com” : “” /* […]
Add YouTube videos in Calculation field
Podio Calculation field makes use of Markdown features, so we are free to use them. By combining two of Markdown features we are able to add a YouTube video in Podio. Just copy paste the following code to a Calculation field: @Text ? “[](https://youtube.com/watch?v=VIDEO_NUMBER_HERE)” : “” /* ——————————————————————————————————- Created by BendixKiel ApS – Copenhagen based Podio Preferred Partner […]
How to put images in calc fields
Podio Calculation field makes use of Markdown features, so we are free to use them. One of those features is to put an image from the internet in a Calculation field. We will use the following syntax; ! [ text ] ( webAddressForImage ) text can be anything, it is not taken into account at […]
Bold, Italics and Strikethrough in Calculation fields
Podio Calculation field makes use of Markdown features, so we are free to use them. 1) One of those simple features is to write a text in italics. In Markdown, we call it “Emphasis”: Just copy paste the following code to a Calculation field: @Text ? “*SmartGantt*” : “” /* ——————————————————————————————————- Created by BendixKiel ApS – Copenhagen based […]
Math in Calculation field
Podio can execute 4 math actions, using the following symbols: +, -, *, /. Here you can find more math that can be done with Podio. Let’s say we have a number in a Number field: 321.1234 You can take the integer part by using the following Javascript: var n = @Number; n – (n […]
Add blockquotes in Calculation field
You might not know what are blockquotes, but I am sure you are using them all the time. They are the symbols put by your email service for email replies: > Blockquote Markdown is supported in Podio. Let’s suppose we have the following text: I am saying hi. With kind regards, John […]
Adding a line (Horizontal Rule in Markdown)
Podio Calculation field makes use of Markdown features, so we are free to use them. One of those simple features is to add a horizontal line. Just copy paste the following code to a Calculation field: @Text ? “—” : “” /* ——————————————————————————————————- Created by BendixKiel ApS – Copenhagen based Podio Preferred Partner -with more than 6 years […]
Add a table with lots of rows
Podio Calculation field makes use of Markdown features, so we are free to use them. One of those features is to add a table: Let’s include a table with 20 rows and 3 columns. It is safe to add more columns. Just copy paste the following code to a Calculation field: /* @Any_Field */ var firstLine = […]
Add a table using your app’s Text fields
Podio Calculation field makes use of Markdown features, so we are free to use them. One of those features is to add a table: Let’s include a table with 3 columns and just 5 rows. Just copy paste the following code to a Calculation field: /* REPLACE ARRAY ITEMS WITH WHAT YOU WANT! YOU CAN […]