• Resolved justin_19

    (@justinsmith19)


    Hi guys

    I have a calculated field that returns the dropdown value.

    How do I make the calculated field only show the dropdown text, not its value.

    Please advise
    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter justin_19

    (@justinsmith19)

    Plugin Author codepeople

    (@codepeople)

    Hello @justinsmith19

    The plugin always access to the fields values through the equations, if you need to access to the text of the selected choice, you will need some of additional code.

    For example, assuming the DropDown field is the fieldname1, edit the equation as follows:

    
    (function(){
    var value = fieldname1, text = getField(1).jQueryRef().find('option:selected').text();
    
    /** The rest of the equation here with the return instruction **/
    })()
    

    I’m sorry, but the support service does not cover the implementation of the users projects (forms or formulas). If you need additional help implementing the equation, you should request a custom coding service visiting my private website: Customization

    Best regards.

    Thread Starter justin_19

    (@justinsmith19)

    Hi @codepeople

    Doesn’t seem to be working…

    but don’t worry about it, I’ll figure it out.

    You have offered over enough help.

    Thanks so so much.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Calculated field to show dropdown text, not its value’ is closed to new replies.