Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
📖HomeBack When configuring an embedded list on a mimic, object menus will not appear in ViewX unless the "Id" column is in the query.
For example,
SELECT Id,Name,CurrentValue FROM CDBPoint
The Id field is not shown by default in the list, it is simply used as a handle to display the Object Menu.
However, the above list query will not show a pick menu on the web interface as the FullName column is required for the web interface to be able to display Object Menus.
For example,
SELECT Id,FullName,CurrentValue FROM CDBPoint
If you don't want the FullName column to be shown in the list, yet want the menu to appear on the web interface, alias the FullName column to something with an _ (underscore) before it and the FullName column will not be shown.
For example,
SELECT Id,FullName AS "_FullName",Name,CurrentValue FROM CDBPoint