Converts Markdown text to HTML.
Call made to retrieve the Markdown to convert.
Used to configure conversion options.
Allows Markdown tables to be turned into structured HTML tables.
Applies the appropriate CSS classes to diagram code blocks. Diagrams are not rendered automatically.
Automatically converts plain text URLs into clickable links.
Automatically generates id attributes for headings.
Treats single line breaks as actual line breaks.
When enabled, alphabetic and roman-numeral list markers will be parsed as ordered lists. Numeric lists are always supported.
The Markdown to be converted.
All columns before the Markdown column will be sent back in the response table.
The Markdown text to be converted.
Store the HTML result from the conversion. This call will receive a temporary table with the data.
CREATE TABLE #Response
(
<XXX> varchar(MAX) NULL,
Html varchar(MAX) NOT NULL,
)
Where <XXX> represents all columns present in the Markdown resultset before the Markdown column.
Displays a user friendly error message to the user. This blocks any forwarding for the user.
Displays a user friendly confirmation message to the user with a delete button as the confirm button. If the user chooses OK the SQL call will be rerun with the parameter @ButtonAction set to 'Delete'.
Displays a user friendly confirmation message to the user with a question style. If the user chooses OK the SQL call will be rerun with the parameter @ButtonAction set to 'Confirm'.
Displays a user friendly confirmation message to the user with a warning style. If the user chooses OK the SQL call will be rerun with the parameter @ButtonAction set to 'Confirm'.
Displays a user friendly info message to the user. When the user clicks OK the user is forwarded.
Displays a user friendly success message to the user. When the user clicks OK the user is forwarded.
The dialog alias of a predefined dialog to show the user. Must be the first column in the result set table. Use multiple result set tables to combine with other forwarding.
Use the menu item "Admin > Dialogs" to register new dialogs or find aliases for existing ones.
Any column without special meaning in the result set with the first column ADMIN_Dialog will be used to make replacements of placeholders in the message and title text.
Additional information to show the developer when using ADMIN_Dialog.
Any column with no other specific meaning will be passed along to the menu item or link you are forwarding to.
Number of steps in the page history to jump back if the user clicks Cancel in an ADMIN_FORCE dialog (the default being none). This value overrides cancelcidstepsback specified in the query string.
Jumps back to the menu item with this alias if the user clicks Cancel in an ADMIN_FORCE dialog (the default being none). If no prior menu item is found with the given alias, then an error is thrown.
Alias of the menu item to execute if the user clicks Cancel in an ADMIN_FORCE dialog (the default being none). This value overrides cancelmenuitemid specified in the query string.
Number of steps in the page history to jump back after execution (the default being one step back). This value overrides any destination specified by the query string.
Jumps back to the menu item with this alias after execution. This value overrides any destination specified by the query string. If no prior menu item is found with the given alias, then an error is thrown.
Prompts the user with the specified text and the user may answer OK or cancel. If the user chooses OK the sql call will be rerun with the parameter @force set to 1.
Displays a user friendly message and then forwards to the next menu item.
Alias of the link to forward to.
Alias of the menu group to show after execution (instead of former menu item). This value overrides any destination specified by the query string.
Alias of the menu item to execute after execution (instead of former menu item). This value overrides any destination specified by the query string.
Displays a user friendly error message to the user.
Pastes HTML into an HTML editor. See ADMIN_SetFieldValueFromPopup.
Sets the value of the field specified in the menuitempopup call. Only select this column if menu item is opened in a popup.
If this column is anything but NULL the popup will be closed. Only select this column if the menu item is opened in a popup.
If this column is anything but NULL the popup will be closed and the parent will be reloaded. Only select this column if the menu item is opened in a popup. Avoid using this feature if the opener is a newEdit as that may interrupt the user's ongoing input.
When the value is not NULL all navigation history is cleared and the user can't navigate back. This is only supported when forwarding to another menu item.
Will trigger a reload of the sidebar if the column is anything but NULL.
Cache key to be cleared. Supports wildcards.
Either a user id or '%'.
Clears all caches (e.g. access permissions) related to the specified user id.
Use '%' to clear caches for all users.
Changes the text of the Cancel button when used with ADMIN_Force, ADMIN_ConfirmWarning, ADMIN_ConfirmQuestion, ADMIN_ConfirmDelete.
Changes the text of the OK button when used with ADMIN_ErrorMessage, ADMIN_ConfirmWarning, ADMIN_ConfirmQuestion, ADMIN_ConfirmDelete, ADMIN_InfoMessage, ADMIN_SuccessMessage, ADMIN_Message, ADMIN_Force, or ADMIN_Forward. ADMIN_Force,