Uses the web browser's built in capabilities to display documents.
Supported document types depend on the user's web browser. Most desktop browsers support PDF and text documents, but not RTF or Word documents. Attempting to display a document that the browser does not support will download it instead.
When used in Multipart, the component will use as much screen height as is available without scrolling down.
The MIME type of the document.
The ID of the document in the database. It is used by the Get document call to retrieve the file.
Use the Url column instead if the document is not stored in the database.
Exactly one of DocumentId and URL must be set.
The name of the file. Used together with DocumentId.
The title to show for this document.
Mandatory when using the Url column, and optional otherwise.
If DocumentId is used and Title is not provided, the title will be based on the filename.
The URL of the file.
Use the DocumentId column instead if the document is stored in the database.
Exactly one of DocumentId and URL must be set.
The MIME type of the file.
The document. Must be the last column in the result set.
Allows you to validate the SQL parameters before any other SQL is run in the component. This call is only made if the SQL is a stored procedure and Validate parameters is checked.
Use this call to restrict which entries a user is allowed to view and edit, and to log which entries a user views.
Access to a menu item is normally controlled through functions and roles alone but some entities need more fine grained control. For example, a user may have access to the View Member menu item for normal members but not for members with a protected identity.
The menu items a user visits are always logged (in ADMINLogMenuItem) but for sensitive data you may need to log exactly what entries are viewed. Do the logging in this call as the common ways of viewing data (grid and InfoSQL) are not allowed to modify the database.
If you bind a scalar function instead of a stored procedure to this call then its name must end with '_GrantAccess'.