You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 30, 2019. It is now read-only.
I very sastisfy with the title_links about friendly of field. However, there a problem with Gridview (Report view) when listing the field, the client will try to translate all the title field which lead to the massive request to server. The code for this is at js script at
frappe.form.formatters.Link = function (value, docfield, options, doc) {
var doctype = docfield._options || docfield.options,
title;
var original_value = value;
if (value) {
frappe.call({
'async': false,
'method': 'title_links.routes.search_title',
'args': {
doctype: doctype,
name: value
},
callback: function (res) {
if (!res.exc) {
title = res.message[1];
}
}
});
}
How can we limit this code only for form view only. not for other
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi all,
I very sastisfy with the title_links about friendly of field. However, there a problem with Gridview (Report view) when listing the field, the client will try to translate all the title field which lead to the massive request to server. The code for this is at js script at
How can we limit this code only for form view only. not for other
The text was updated successfully, but these errors were encountered: