hheyhey568
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Two fields miss alignedHello,
Please check the following page.regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Two fields miss alignedHello Team,
Thanks for the reply but it did not solve the problem.I have two fields with following CSS code.
fieldname1 – > col-xs-8 col-ms-8 col-md-8 col-lg-8
fieldname2 – > col-xs-2 col-ms-2 col-md-2 col-lg-2Fieldname2 is not having label and it is misaligned with fieldname1 when we open the page in mobile device.
With following code , it misaligned in all the devices even in desktop.
@media (min-width:710px)
{
#fbuilder .fields>label{min-height:10px;display:inline-block;margin:0 !important;padding:0 !important;}
}Please help.
regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Result TableHello Team,
thanks for the try. However I am talking about data table feature in excel for showing the results. The link is below. Is there a way to do it ?https://www.ablebits.com/office-addins-blog/2018/10/24/data-table-excel-one-variable-two-variable/
regards,
KishorForum: Plugins
In reply to: [Calculated Fields Form] Plugin for chartHello teams ,
Thanks for quick reply.
I am having professional version.
Do I need to pay fully for developer or platinum version or pay less fee to upgrade from professional to platinum version ?Regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Change the keyboard to numberThanks a lot.
Forum: Plugins
In reply to: [Calculated Fields Form] Superscript and Subscript in field nameHello Team,
Thanks for the reply.
One more question: Lets say I want the label of certail field to change as per the label of other fieldname.
For example:fieldname1 label= deg C
fieldname2 label= deg F(function(){
var l = getField(3).jQueryRef().find(‘label’);l.text(‘lb/ft3)’,fieldname1 label,fieldname2 label);
})()
In above example , I want that the label of fieldname3 becomes lb/ft3 , deg C , deg F
Is it possible? Please guide.
Forum: Plugins
In reply to: [Calculated Fields Form] Superscript and Subscript in field nameHello Team,
following is the code being used to change the label text.
Can we superscript 3 ?(function(){ var l = getField(3).jQueryRef().find('label'); if(fieldname2=='fps') l.text('lb/ft3)'); if(fieldname2=='si') l.text('kg/m3'); })()
Forum: Plugins
In reply to: [Calculated Fields Form] Superscript and Subscript in field nameThanks a lot.
I have some of the field which are having change label code which changes the label.Can we update the change label method with code which also takes care of superscript?
Forum: Plugins
In reply to: [Calculated Fields Form] See result without using calculated fieldHello CFF Team,
Thanks for the reply.My question is :
Lets say I have only one calculated field which calculates Variable1 , variable2,variable3 upto variable 20.This is the only calculated field which has the code in it.
To check the errors , I want to see the value of all the variables.
To do this , I make many calculated field and then use getField().setValue() method in the main calculated field having code.This make me create many calculated field and need to put getField().setValue() method for each variable in the main calculated field ( the one having the code).
So I am asking , is there any way which let me see the value of all the variables without creating lots of calculated field?
May be there a way which print all the variables hitting print button?
This will save a lots of time to quickly check which variable has error in formula.
regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Superscript and Subscript in field nameHello,
Thank you for reply.
For following case , I want to just make 2 as superscript of ft. How to write it pls?
Btu/hr ft2 F.- This reply was modified 2 years, 10 months ago by hheyhey568.
Forum: Plugins
In reply to: [Calculated Fields Form] Search within dropdown itemsHell0 Team,
When I select “Apply Select2 library (Experimental)” , the color of the input field changes to white from yellow. Is there a way to keep it yellow with “Apply Select2 library (Experimental)” ?
Thanks & regards,
Forum: Plugins
In reply to: [Calculated Fields Form] Search within dropdown itemsthanks a lot.
Forum: Plugins
In reply to: [Calculated Fields Form] Cubic equationThank you , however I mean to say that we need to find the value of X from the following Cubic equations.. Sometimes it has 3 roots ( means answer) or 1 root.
x3-4×2-9x+36=0
Following page gives the code in JavaScript.
https://gist.github.com/weepy/6009631If we use calculator , it has function to calculate the roots of the cubic equation.
- This reply was modified 2 years, 11 months ago by hheyhey568.
Forum: Plugins
In reply to: [Calculated Fields Form] Advanced Equation EditorThank you.
Forum: Plugins
In reply to: [Calculated Fields Form] Exit Function on logicThanks a lot , it is working for me.