Renovation
Search…
Renovation
1.1.0
Overview
Introduction
Getting Started with Renovation
Under Construction 🛠
Frappe App [renovation_core]
Introduction
Core SDK TS/JS
Getting started
.auth
.default
.meta
.model
.perm
.storage
.translate
Errors
Core SDK Dart/Flutter
Getting started
.auth
.default
.meta
.model
.perm
.storage
.translate
Renovation-CMS
Sidebar
Dashboard
Renovation Script
Custom Dialog
Form Custom Button
Spinners / Loaders
Routing
Form Custom Dashboard
Link Field Custom Queries
List Row Status
Nginx Configuration
Powered By
GitBook
Link Field Custom Queries
You can modify the behavior of Link fields using the query-options
Basic Usage
You can specify a custom python function using the
query
if you need fine control over the results.
1
core
.
ui
.
setLinkQueryOptions
(
"Item"
,
"item_price"
,
{
2
// optional custom query
3
query
:
"my_app.custom_item_price_link"
,
4
5
// custom filters
6
filters
:
(
core
,
doc
)
=>
{
7
return
{
8
item
:
doc
.
name
9
}
10
}
11
});
Copied!
Previous
Form Custom Dashboard
Next
List Row Status
Last modified
2yr ago
Copy link