Its all about relation field

Comments

6 comments

  • Joel Ordesky

    Create a Calculation field as the first field in your app. Call it Website Title and make the formula be something like:

    @website Name + " - " + @website app

    IF occasionally one or the others of those are blank you can get more creative like:

    var wn = @website Name != "" ? @website Name  : "" ;

    var wa = @website app != "" ? " - "  +@website app : "" ;

    wn + wa

     

    Note sometimes you need to != null vs != ""  depending on the field type. 

     

    Also if you are dealing with fields from other apps you might need to use @all of {name of field in other app}[0]

     

     

     

     

    0
    Comment actions Permalink
  • Expert Podio Developer

    0
    Comment actions Permalink
  • Expert Podio Developer

    I hope above screen shot help you understand my task. 

    Two apps:

    1. website

    2. pages 

    1. when user on website app and create a page using relationship field (web pages).

    2. it open pages app to create new page .that time i want to get website name from website app and populate in new page. 

    3. so i understand from which page website i come. 

    0
    Comment actions Permalink
  • Expert Podio Developer

    0
    Comment actions Permalink
  • Joel Ordesky

    It is not possible to pre-populate any fields when creating a new item in podio via the create item button on a relationship field. 

    In a way, you do know where the item came from as the reverse relationship is left behind after you create the item. 

    You can leverage that reverse relationship to after the fact populate that relationship field via a flow as I demonstrate in this video: 

    https://www.loom.com/share/5bde4292a6154598a2a33b23481a35e1

     

     

    0
    Comment actions Permalink
  • Expert Podio Developer

    Thanks Joel 

    to make this video , i can use this approach ..please make the next video and show me how you did that . 

    I really thankful to you .

     

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk