The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I’d like to prompt the user for the password to an API call but input.textAsync displays the input in plain text on the screen.
Is there a way to mask the input so it shows as ********** when the user is typing?
Like with HTML input type=password?
Came across this thread while looking for a way to link fields and find record ids. Here is the function I use to find a unique value and get the id.
async function findRecord(tableName, fieldName, searchValue)
{
let returnID = '';
let thisT...
My workaround right now is to create a field for each status I need to count then roll them up in a related table.
Example: Employee Status field is Active, Inactive, Starting, or Leaving. I create 4 hidden formula fields with If(Status=“Active”,1),...