How can I download my uploaded file on Bonita using a Link The Next CEO of Stack OverflowHow to increase the max upload file size in ASP.NET?jQuery Ajax File UploadHow to upload files to server using JSP/Servlet?Django File upload size limitHow does HTTP file upload work?Download File issue, CarrierWave uploadPHP file show download link after renamed uploadUploading file on Step in BonitaLaravel multiple file upload validationHow to create a new folder in Bonita web server?
Is it professional to write unrelated content in an almost-empty email?
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
How many extra stops do monopods offer for tele photographs?
What happened in Rome, when the western empire "fell"?
What steps are necessary to read a Modern SSD in Medieval Europe?
What would be the main consequences for a country leaving the WTO?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
Expressing the idea of having a very busy time
Does Germany produce more waste than the US?
Where do students learn to solve polynomial equations these days?
Film where the government was corrupt with aliens, people sent to kill aliens are given rigged visors not showing the right aliens
Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?
IC has pull-down resistors on SMBus lines?
Is it okay to majorly distort historical facts while writing a fiction story?
Physiological effects of huge anime eyes
Does higher Oxidation/ reduction potential translate to higher energy storage in battery?
Is French Guiana a (hard) EU border?
Is a distribution that is normal, but highly skewed, considered Gaussian?
what's the use of '% to gdp' type of variables?
What is the difference between "hamstring tendon" and "common hamstring tendon"?
Won the lottery - how do I keep the money?
Towers in the ocean; How deep can they be built?
Is there an equivalent of cd - for cp or mv
How to avoid supervisors with prejudiced views?
How can I download my uploaded file on Bonita using a Link
The Next CEO of Stack OverflowHow to increase the max upload file size in ASP.NET?jQuery Ajax File UploadHow to upload files to server using JSP/Servlet?Django File upload size limitHow does HTTP file upload work?Download File issue, CarrierWave uploadPHP file show download link after renamed uploadUploading file on Step in BonitaLaravel multiple file upload validationHow to create a new folder in Bonita web server?
I have created my submission form in Bonita and I have added all my variables. Here below is a photo of my submission form

Here is the Validation Form

I want to be able to get the file uploaded on the first form, to the validation form, so I can be able to download it as a link.
But when I tried to reference it, I get an error message when I tried to click on the link


How can I reference the file correctly? Any Ideas?
file-upload bonita
add a comment |
I have created my submission form in Bonita and I have added all my variables. Here below is a photo of my submission form

Here is the Validation Form

I want to be able to get the file uploaded on the first form, to the validation form, so I can be able to download it as a link.
But when I tried to reference it, I get an error message when I tried to click on the link


How can I reference the file correctly? Any Ideas?
file-upload bonita
add a comment |
I have created my submission form in Bonita and I have added all my variables. Here below is a photo of my submission form

Here is the Validation Form

I want to be able to get the file uploaded on the first form, to the validation form, so I can be able to download it as a link.
But when I tried to reference it, I get an error message when I tried to click on the link


How can I reference the file correctly? Any Ideas?
file-upload bonita
I have created my submission form in Bonita and I have added all my variables. Here below is a photo of my submission form

Here is the Validation Form

I want to be able to get the file uploaded on the first form, to the validation form, so I can be able to download it as a link.
But when I tried to reference it, I get an error message when I tried to click on the link


How can I reference the file correctly? Any Ideas?
file-upload bonita
file-upload bonita
asked Mar 7 at 18:01
Labelle DorianeLabelle Doriane
2418
2418
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
- If you are saving the input file to a process "Document", then you can fetch as
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document. - I understand from your first image that you have the file is child inside a complex contract input. But as you cannot save a file inside a business object, you can instead save the document URL in the process and while loading, you can simply use
'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URL
add a comment |
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050155%2fhow-can-i-download-my-uploaded-file-on-bonita-using-a-link%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
- If you are saving the input file to a process "Document", then you can fetch as
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document. - I understand from your first image that you have the file is child inside a complex contract input. But as you cannot save a file inside a business object, you can instead save the document URL in the process and while loading, you can simply use
'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URL
add a comment |
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
- If you are saving the input file to a process "Document", then you can fetch as
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document. - I understand from your first image that you have the file is child inside a complex contract input. But as you cannot save a file inside a business object, you can instead save the document URL in the process and while loading, you can simply use
'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URL
add a comment |
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
- If you are saving the input file to a process "Document", then you can fetch as
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document. - I understand from your first image that you have the file is child inside a complex contract input. But as you cannot save a file inside a business object, you can instead save the document URL in the process and while loading, you can simply use
'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URL
Note: You would need to press the fx button in the URL field and provide the input like '/bonita/portal/' + context.file_ref.url
Also there are couple of cases to check in your question:
- If you are saving the input file to a process "Document", then you can fetch as
'/bonita/portal/' + context.file_ref.url
where
file is the name of the process document. - I understand from your first image that you have the file is child inside a complex contract input. But as you cannot save a file inside a business object, you can instead save the document URL in the process and while loading, you can simply use
'/bonita/portal/' + context.submit_ref.File
where submit is the name of the business variable and File is the attribute where you saved the document URL
answered Mar 11 at 19:03
Raji MallaRaji Malla
664
664
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55050155%2fhow-can-i-download-my-uploaded-file-on-bonita-using-a-link%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
