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 Methods that return a value are allowed in tags. They can be used anywhere that uses tags i.e. mimics, logic, OPC. The arguments to the method are server-side expression, so to read a variable cell from a data grid, you could use:
".Data.GetCellValue( "".RowNum.Value"", 1 )"
where RowNum is a variable containing the row number to read from the Data Grid named "Data".
Using two double quotes escapes them, so a single double quote will be passed to the server. The argument expressions in this case will be ".RowNum.Value" and 1. I believe relative tags in this case are relative to the object the method is being called on. So here, the relative reference .RowNum is looking for a location relative to the data grid, not the mimic from which it was called.
Without the STR, the indirect tag expression contains an error as you can't concatenate strings with numbers. You need to wrap the number in STR(). As a hint, if ever an indirect tag isn't working, try creating a text box with the indirect tag inner expression (without []) on the Value property and see if it gives the tag you are expecting.
Its debatable which is more efficient. The first is probably the best option as then tags aren't removed & added whenever RowNum changes.