🗃️ View
6 items
📄️ Environment
The sdk.env object provides essential runtime information about the environment in which the custom function is being executed. This includes data about the authenticated user, the current tenant, locale, public settings, and more. It is especially useful for adapting UI or logic based on context, such as rendering user-specific content or localizing views.
📄️ Function
The sdk.customFunction field allows you to programmatically call other Custom Functions from within your current view. This is particularly useful when you need to reuse logic, fetch data, or trigger actions defined in other functions—either in the same app or globally within the tenant.
📄️ Method
The sdk.method utility allows you to call backend Meteor server methods directly from a Custom View. These methods are part of GridStudio's internal API and can be used to fetch data, trigger backend logic, or access business-specific operations.
📄️ Utils
The sdk.utils object provides a wide range of utility functions that help you build dynamic, user-friendly, and responsive views inside GridStudio. These include formatting, file uploading, timers, role checks, notifications, and more.
📄️ Navigation
The sdk.navigation object allows developers to programmatically navigate between major areas of the GridStudio interface. This is especially useful when you want to guide the user to specific tabs, views, or contextual screens after an action is completed.
📄️ Lib
The sdk.lib object provides access to a curated set of third-party libraries that are safely exposed within the GridStudio environment. These libraries can be used in your Custom View functions to extend functionality, integrate with APIs, parse files, and more.