Hi Everyone, this is my first post, but before I get to my question, I want to say as a former IT Director what a great tool you have, but also as an Angular web developer, I wish I had more control over the user interface!
After learning from the sample apps, I decided to strike out on my own and create something. I decided on something familiar like an Address Book found in many email programs. I wanted to capture more than one email address per contact. Everything is progressing well, but I got hung up on some odd behavior of Email Address of type EMAIL.
In the Inline view, I see the clickable email icon. Thatโs great functionality, but Iโd also like to see the Email Address text. My solution was to create a Virtual Column called Email Address Text of type TEXT that simply takes on the value of Email Address. I was able to get this to work to my satisfaction, but then I discovered problems elsewhere, particularly when I edit the Contact. Now the Inline view shows the Email Address as text, not as an icon. The result is that I see two columns for Email Address, both are text.
Iโd like the Inline view to behave like this:
Iโm sure that this is a lot easier than Iโm making it out to be. All help welcome!
Thank you,
Brian
Solved! Go to Solution.
Marc, thank you very much for your reply.
CONTEXT is the function I needed, thank you for leading me to it. It worked at hiding the value, but unfortunately it did not remove the column in the inline table in the Form View. Perhaps there is a way of controlling that.
So I opted for the simple solution: Only show the โEmail Address Textโ field in the Inline View. It works perfectly, but the disadvantage is that I need to click one more time to compose an email. Not a big deal.
Thanks again,
Brian
Inline Actions buttons always overwrite the actual value and the column header inside of Table views (an โinlineโ view is also a Table view). I donโt personally care for that, which is why I have a feature request to change that:
What you did with the VC of Text type was a good option for getting the display how you want.
I take it that you have a main Contact record, then child records beneath it for each email address? I think what youโre experiencing is the inability to execute Actions inside of Form views (โthinkโ being an operative word, itโd help if you provided some screenshots). And so when โeditingโ the Contact (i.e. opening its Form view), those inline email Actions get removed from the inline Table, and thus the actual value is displayed again (alongside your new VC).
There are probably multiple ways to solve this. I think an acceptable solution would be to give a CONTEXT() expression in the show_if of your new VC, to hide the new VC values when youโre inside of the Contact Form. Iโll assume the view is called โContact_Formโ, so you can use this expression:
CONTEXT("View") <> "Contact_Form"
Now, I did say an โacceptableโ solution, not โperfectโ. This wonโt actually hide the entire column, itโll just hide all of the values. But instead of continuing with further solutions Iโll let you try that first and reply again and make sure weโre on the right track.
Marc, thank you very much for your reply.
CONTEXT is the function I needed, thank you for leading me to it. It worked at hiding the value, but unfortunately it did not remove the column in the inline table in the Form View. Perhaps there is a way of controlling that.
So I opted for the simple solution: Only show the โEmail Address Textโ field in the Inline View. It works perfectly, but the disadvantage is that I need to click one more time to compose an email. Not a big deal.
Thanks again,
Brian
A solution is documented here: https://support.google.com/appsheet/answer/10108131?hl=en
Summary:
Now the email address value will be displayed, and not the email icon.
User | Count |
---|---|
15 | |
11 | |
10 | |
8 | |
3 |