Separator
AnsweredI miss a simple separator line or a non-editable text field to organize and group the form in blocks of interests
-
I just discovered that one can use Markdown (https://en.wikipedia.org/wiki/Markdown) and Unicode characters in the text of a calculated field. Also, the field name for the calculated field can contain Unicode characters, and they don't have to be unique.
So taking Jayraj's idea a little further, I've come up with this, which is a nice visual separator:
if(@Name != '') {text='# ░░░░░░░░░░ FORMS ░░░░░░░░░░'}
Name is a text field (which is required, so it will always contain something).
Then I've named the calculated field ░░░░░░░░░░ which means I get a nice separator across the whole page.
-
For me the best option here would be to put fields into separate Sections.
Those Sections can then be shown in different tabs for each Item.
Going even further, users can then choose which tabs they want to see and even re-arrange the tabs.
So for us then, we could have sales people see one set of tabs for a customer, while support people can see a different set of tabs for the same customer.
That would be really powerful.
-
Like this? - https://ibb.co/knU44F
-
I've just created a work around for this. NB this is only useful after the form has been saved once as it uses the form to create the line.
I am just starting to learn js and use it in Podio, so there may be a way to reference text fields, but this is how to reference to a number field where you know the value will be greater than 0 after you create the item. Create a calculation field where you want your line to be (I've called mine 'Do not fill below this line'). Put the following in the calculation field and reference to the relevant number field:
if ([number field]) > 0) {
text = '---------------------------------------------------';
}Hope this helps.
-
Hey everyone!
Barry gave me the idea for the extension. so i decided to create it myself.To put it simple, any CALCULATION FIELD gets placed into this format.
I have converted it and uploaded it into the Chrome Web Store.
Extension Link:
https://chrome.google.com/webstore/detail/podio-helper/fhjdnhpildnjpfelhpbicemjohfompdm
Updated: June 12, 2019
------------------Podio currently does not offer a section break for Podio.
In order to use this extension.Create an APP with a calculation field.
My Setup :
1. Modify Template
2. Create 'Text Field' named 'Separator'
3. Change 'Text Field' to 'Always Hidden'
4. Save Template
5. Reopen Modify Template (you do this so it saves the separator field)
6. Add 'Calculation Field'
7. Inside 'Calculation Field' enter 1 or 2 choices below:**HEADER ONLY:
if (@Separator!=''){'Custom Header Info\n===\n'}**HEADER WITH ADDITIONAL TEXT:
if (@Separator!=''){'Custom Header Info\n===\n' + 'additional information'}
8. Verify that the entry below has a blue '@Separator', otherwise it wont save
9. Save TemplateWith this plugin installed you should now have a blue separator.
-
Very nice plugin thanks but is it normal that the separator is displayed on each Calculation field?
Please sign in to leave a comment.
Comments
21 comments