hheyhey568
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Google Spreadsheetoh , I see. I have asked for support at the contact us page also.
I have added the Client ID and Client Secret too following the video of the add on. But any way no luck. Let me wait for Contact us page to respond me.
following are the error coming to my debugging email address :
- syntax error, unexpected identifier “Level”
2. Class “CP_CFF_SPREADSHEET\Monolog\Level” not found
- This reply was modified 3 months, 1 week ago by hheyhey568.
Forum: Plugins
In reply to: [Calculated Fields Form] Wrap the Text Inside Result fieldThank you so much. Perfect.
Forum: Plugins
In reply to: [Calculated Fields Form] Copy many fields at onceThank you
Forum: Plugins
In reply to: [Calculated Fields Form] Page crashingHello,
Even after purging the website , the page is still not loading on mobile and iPad. Is there any thing else we can do to resolve the issue?
Please help
Regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Page crashingOn desktop , the seems resolved thanks for your support but issue is same on phone and tablet.
pls helpForum: Plugins
In reply to: [Calculated Fields Form] Put output on imageThanks, it is working but how to remove the gray area around the image. My image takes center of the top section of the CFF but there is grey area around it. Can we remove it or add a different color same as website background color?
Also how to make the text color other than black as it is kind of matching with the color of image background.
- This reply was modified 1 year, 6 months ago by hheyhey568.
Forum: Plugins
In reply to: [Calculated Fields Form] Put output on imageThank you. How to make this image at the top and center of the CFF form.
Forum: Plugins
In reply to: [Calculated Fields Form] Graphical InterfaceThank a lot. We are almost there.
Lets say in above image which I had shared, there are 4 components. One tank ( red color) and 3 Nos of arrow of blue , purple and green color. Is there any way by which I can click all of these 4 components from the same one image? By doing so , I want to perform 4 Nos of different calculation for the user as per what user has clicked but image will be only one.
Appreciate your reply , thanks
regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Graphical InterfaceHello CFF Team,
Sorry for delay in reply. I have shared the picture at the following location.
I want that when I click rectangle box then it opens Calculated field form which has input and results.
When I click the blue arrow , it opens different calculated field form.
Please check if this can be done in CFF or not.
https://www.processfunda.com/wp-content/uploads/2023/01/Screenshot-2023-01-06-235901.jpg
regards
Forum: Plugins
In reply to: [Calculated Fields Form] Do while loopHello Thanks for your response.
I know that it will go into endless loop but is there any way to just give alert and exit the endless loop so that it gives the user chance to update to correct inputs?
Thank for help.
Forum: Plugins
In reply to: [Calculated Fields Form] Do while loopHello Team,
Following is the code.
When OP becomes negative , the whole page freeze.
Pls help to find a way which can kill the loop from running once OP becomes negative and gives user alert to check the inputs.
Thanks
(function(){
var DA,OP,OD,OF,OV,AV,AD,Number,Factor,Fcalculated,Result;
DA=0.001;
do{
OP=(fieldname83+101.325/100)-DA;
OD=OP*100*fieldname64/8.314/(fieldname79+273.15);
OF=fieldname80/OD;
OV=(OF/3600)/(Math.PI/4*pow((fieldname14*25.4/1000),2));
AV=(OV+fieldname1)/2;
AD=(OD+fieldname65)/2;Number=((fieldname14*2.54)*(AV*100)*(AD/1000))/(fieldname84/100);
if(Number<=2320) Fcalculated=64/Number;
if(AND(fieldname14,fieldname5,Number,0<=fieldname63,fieldname82))
{
var DI=fieldname14*25.4/1000;
var RF=fieldname82/1000;
var NNumner=Number;
var Factor=0.001,LHS,RHS;do{
LHS=1/sqrt(Factor);
RHS=-2*LOGAB(RF/(3.7*DI)+2.51/(NNumner*sqrt(Factor)),10);
Factor=Factor+0.0001;
}while(ABS(LHS-RHS)>0.05)Fcalculated=PREC(Factor,5);
}
Result=PREC(((Fcalculated*fieldname81*pow(AV,2)*AD)/(2*fieldname14*25.4/1000))/(1000*100),3);
DA=DA+0.001;
}while(ABS(DA-Result)>0.05)
getField(70).setVal(PREC(OD,4));
getField(69).setVal(PREC(OV,5));
getField(10).setVal(PREC(Number,2));
getField(11).setVal(PREC(Fcalculated,5));
getField(71).setVal(PREC(OF,5));
getField(85).setVal(PREC(OP-101.325/100,5));if(OR(OD<=0,(OP-101.325/100)<=0))
{
IGNOREFIELD(70);
IGNOREFIELD(69);
IGNOREFIELD(10);
IGNOREFIELD(11);
IGNOREFIELD(71);
IGNOREFIELD(57);
IGNOREFIELD(62);alert(‘Check Inputs’);
return “Check Inputs”;
}
else
{
ACTIVATEFIELD(70);
ACTIVATEFIELD(69);
ACTIVATEFIELD(10);
ACTIVATEFIELD(11);
ACTIVATEFIELD(71);
ACTIVATEFIELD(57);
ACTIVATEFIELD(62);
return Result;}
})();
Forum: Plugins
In reply to: [Calculated Fields Form] Do while loopHello Team,
It is working but when it gives alert , it keeps giving alert.I feel the loop keeping running and continuously giving alert. It is not allowing to change any input variable.
Is there a way , by which we can give alert and if user press ok then the whole loop reset and gives user permission to update the input variables?
Please note that it is calculated variable inside the loop which gets negative.
thanks
- This reply was modified 2 years, 2 months ago by hheyhey568.
Forum: Plugins
In reply to: [Calculated Fields Form] Change Variable name in selection onlythanks
Forum: Plugins
In reply to: [Calculated Fields Form] Error handlingThanks a lot
Forum: Plugins
In reply to: [Calculated Fields Form] Error handlingHello Team ,
Thanks for the help.Can I make this instruct field with different colour like red that user can be warned?
regards,