-
Hi. I've built a view (defined with In another view, I'm trying to have a clickable link ( What does not work well is to define something like If I do something like How can I achieve that a simple, single click on the link triggers the download? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
@MShekow what you are searching for is
|
Beta Was this translation helpful? Give feedback.
-
I found another small problem: once the user clicks on a download link (created with |
Beta Was this translation helpful? Give feedback.
@MShekow what you are searching for is
interactive
. You can tell the javascript client to not change the behavior of links by settinginteractive
toFalse
A('foo', href='/foo.pdf', interactive=False)