Scriptcase Full [upd] — Link

import requests # The Scriptcase Full Link url = "http://myserver.com/scriptcase/apps/api/report_grid.php?report_id=5&format=json" response = requests.get(url) print(response.json()) The Scriptcase Full Link is far more than just a URL. It is the bridge that connects your grids, forms, and external worlds. By mastering how to construct it, pass macros, and capture parameters, you transform your Scriptcase applications from isolated pages into a fully integrated web system.

http://localhost/scriptcase/apps/orders_grid.php?customer_id=id scriptcase full link

This article will dive deep into what the Full Link is, how it differs from standard links, how to construct one manually, and advanced techniques to master navigation in Scriptcase. In Scriptcase, a Full Link is the complete, absolute URL that points to a specific form (grid, form, chart, or calendar) within your application, including all necessary parameters and filters. Unlike a relative link (e.g., products_grid.php ), the Full Link usually contains the server path, application root, and dynamic variables. import requests # The Scriptcase Full Link url

| Macro | Replaced By | | :--- | :--- | | id | Value of the primary key of the current row | | field_name | Value of any field in the current row | | user | Current logged-in Scriptcase user | | date | Current server date | http://localhost/scriptcase/apps/orders_grid

In the world of low-code development, Scriptcase stands out as a powerful tool for generating complete web systems directly from a database. One of its most versatile, yet often misunderstood, features is the "Full Link" option. Whether you are a beginner trying to pass a parameter or an expert building complex dashboards, understanding the Scriptcase Full Link is essential for creating seamless, dynamic applications.