
Rainer Grabowski
- Total activity 2826
- Last activity
- Member since
- Following 0 users
- Followed by 26 users
- Votes 20
- Subscriptions 1083
Activity overview
Latest activity by Rainer Grabowski-
Rainer Grabowski commented,
In var url you need a + and "\n" between @property address and "# Stage Information ..." because variable tokens (like @Property Address) and text inbetween "" must always be concetanted with a +. ...
-
Rainer Grabowski commented,
Ignore that error notification. Just save the template. If you can't save it add a new calculation field and enter @Unique ID (and pick the token). Save it. Come back and add the phone number code ...
-
Rainer Grabowski commented,
== means: equal toFor "contains" you have to use .indexOf() > -1 In your case: var status = @status;var jn = @jn;status.indexOf("CMPLT") > -1 ? status : status + "-" + jn
-
Rainer Grabowski commented,
Hi Fasih,a) You can't mix markdown (\n) and HTML. b) You can't center neither with markdown nor with HTML.c) Podio cuts automatically more than 2 consecutive \n, you must interruot it after 2 \n Th...
-
Rainer Grabowski commented,
Hi Venom,the main challenge is that the Podio calculation field doesn't know "today" (explanation and solution see my comment here ; that's where you need PWA).After you have connected all items in...
-
Rainer Grabowski commented,
It's generating the desired results. If it's generating the desired results - why do yo need advice? :) If it doesn't work: What's the result and what is wrong?What kind of field are @ARV and @Re...
-
Rainer Grabowski commented,
Hi Venom, 3 questions:1. Are the 2 apps connected via a relationship field?2. Do you want to see the results always in the same item in the second app (means: the app has one item only) or do you w...
-
Rainer Grabowski commented,
Hey John, it's simply: var name = @All of Last Name[0];var addr = @ Property Address;var formal = @Formal Name;formal != null ? name + ' ' + addr : formal or even shorter: @Formal Name || (@All of...
-
Rainer Grabowski commented,
Same way: But because var quizContent is an array and the json is element 0 in the array you must get element 0 first key = "answers";delete quizContent[0][key];JSON.stringify(quizContent)
-
Rainer Grabowski commented,
Simply delete the key - see image