The workflow was about 186 KB in size, can't be exported(published), if I removed the form in one task, the size got small(134 KB), It was OK to export, I had search the maximum size of the workflow in Office 365, same questions were asked, but his case was not match mine, any solution for this?
Hello Kevin,
I'm not sure if there is a size limit, because I have a workflow with 211KB and can still be exported.
But of course that doesn't help you
What I suggest is that you contact the Nintex support to ask for support.
Regards
Oliver
We had refer to the support team about this problem, Just got an answer there was no limit about the size. so we decided to reuse the "Assign a task" Action component to stay away from this issue.
Great...
But good to hear that you found a workaround.
Regards
Oliver
Hi Oliver,
Do you know how to handle the Control's Control Mode(Auto,Edit Display) by Javascript(Jquery)? eg: I need change the control Mode from Edit to Display, or from Display to Edit whenever I have to. However, In GUI Setting form below, I could only choice a value, after this, the control will have a fixed view mode and can't be changed. besides, it's too much boring if there are too much input controls.
Best Regards,
Kevin Xiong
Hello Kevin,
you can do this by usings custom javascript code.
In your Form go to FormSettings, then open the section Advances. Here you'll see the Custom JavaScript includes.
If you configure the 'Store Client ID in JavaScript variable' you can access it within your js.
In the javascript you can access find the control eg.
NWF.FormFiller.Events.RegisterAfterReady(
function () {
var changeControl = NWF$("#" + UniqueClientID);
// then change the controlmode and update the control
NWF.FormFiller.Functions.ProcessOnChange(changeControl );
});
Hope it helps, regards
oliver
Hi Oliver,
I'm so glad to receive your reply, I know how to use Jquery in Nintex, but I don't know the specific code to change the control mode.
==============================
NWF.FormFiller.Events.RegisterAfterReady(
function () {
var changeControl = NWF$("#" + UniqueClientID);
// then change the controlmode and update the control
NWF.FormFiller.Functions.ProcessOnChange(changeControl);
//could I set changeControl to display mode or eidt mode directly? how?
if(XXX){
.......//set control to display mode
}
else{
.......//set control to edit mode
}
}
);
==============================
It's not enough to help, what's should I do then to change a control of Display mode to Edit mode? Thanks in advance!
Best Regards
Kevin Xiong
Oh I see, but I'm unfortunately also not able to provide you the specific code, yet. Because I didn't had the requirement until now.
sorry, maybe another user where able to help you out.
Best regards
Oliver
Well, it's OK, you are kind enough, many thanks whatever.
Best Regards
Kevin Xiong
Hi Vadim,
Sorry to trouble, is there any common function supplied to solve the problem I had?
Best regards,
Kevin Xiong
After client had upgraded the server, this problem solved, so it was none of nintex's business.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.