One such example of this is a Property (or leads) App that could reach to 30 or more fields. Not being able to group those fields into sections makes information tough to find quickly. What we need is a Podio App Section Header!
Here is the problem…
My Solution to Grouping…
The idea is to re-purpose one of the Podio predefined field types to create a line break (or even just a gap). There are really only 2 field types (Category and Calculation) fields that can be used.
Category Field Type
The setup for this is very easy…
- Drag a Category field to a spot in-between two of your groups
- Add a Label that describes the group below it
- Remove all Category Items
In the template editor what you should have is something like in the image below.
Calculation Field Type
1. Add the Calculation Field
Put this field where you want your group section to start.
2. Add the text you want to use for the heading
Any text that you out put in a calculation field must be surrounded by double quotes (“).
To get around this minor annoyance you can just add in a dummy variable and assign it a value from one of the existing fields.
"— Group Property Details —"
We are in luck, because the calculation field supports something called markdown syntax. This means we can do some formatting and make it look nice.
The Heading
Let’s start off by making the group heading text actually a heading. We can do this using Markdown Syntax by putting a single pound sign (#) before the text like so…
"# Group Property Details"
The next thing i’d like to add is a horizontal line to create even more of a visual cue that a new section is starting here. We can do that by adding a new line (“\n”) and also three dashes (“---”). Let me show you…
"# Group Property Details"
+ "\n ---"
The last part that I like to add to my section headers is a short description. It says what the group is but also serves to help catch your eye even more as you scroll through the form.
To do this we add another line break (“\n”) and then the text.
"# Group Property Details"
+ "\n"
+ "---"
+ "\n"
+ "The **Group Property Details** section is where you can add add information about the property."
One thing that I didn’t mention is that you need to have a value in the Calculation field label on the left side. You can use what ever you want, I chose to use a ‘>’ symbol.
Here is a look at what my entire form looks like with the calculation field section groups inserted. Do you think it looks better?
Quick Markdown Guide
Headers
There isn’t much noticeable difference between the different levels of headings in Podio. The Header 1 (#) works best in my opinion.
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Links
Use this to insert links into your headings. For instance, you can put a link to the Tax Assessor’s website in the heading. This way you can just click the link to quickly go there to grab the properties tax info.
[example link](http://example.com/)Underlines
These create a full width underline. 3 or more or each will get you a line.
--- dashes
*** asterisks
___ underscores
Emphasis
*Emphasis* = Emphasis
_Emphasis_ = Emphasis
**Emphasis** = Emphasis
__Emphasis__ = Emphasis
**__Emphasis__** = Emphasis
~~Emphasis~~ = Emphasis
More…
If you want to see what else you can do, go over to this cheat sheet
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
One Minor Issue
What this means is that when we are adding a new item the section group headings will not show. What you see is a “—” value. This means there is no value.
More Podio Tips!
Get More Podio Tips!Share this Post
The post Podio Quick Tip – App Section Headers appeared first on Struggling Investor.