urlOf

To return a link for a given record or view

With this function, you can get a link to a specific record or view, for example, to share it with your members in your workspace.

Syntax

urlOf(nid)

urlOf(string, string)

urlOf(nid, string, string)

Return

link

Examples

urlOf(record) To return a link for a given record.

urlOf(this)

Result: https://app.ninox.com/#/teams/mLsMaTPxEzeGeBtQu/database/na66jbxwfgtt/module/A/view/default/node/A3

urlOf(tableName, viewName) To return a link for a given view in a given table.

urlOf("Events", "New York")

Result: https://app.ninox.com/#/teams/mLsMaTPxEzeGeBtQu/database/na66jbxwfgtt/module/A/view/Vv1GRn1KGySU5wLi

urlOf(record, viewName, tabName) To return a link for a record in a given view in a given tab.

urlOf(this, "New York", "Invoice details")

Result: https://app.ninox.com/#/teams/mLsMaTPxEzeGeBtQu/database/na66jbxwfgtt/module/A/view/Vv1GRn1KGySU5wLi/node/A3/tab/I

See also

url, which returns a link for a given record or view.

Last updated