How to extract values from a multifield inside custom dialog customization js? | Community
Skip to main content
Manu_Mathew_
Community Advisor
Community Advisor
July 8, 2022
Solved

How to extract values from a multifield inside custom dialog customization js?

  • July 8, 2022
  • 1 reply
  • 628 views

How to extract labels(not the values inside it) from a multifield inside custom dialog customization js?

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Aditya_Chabuku

Hi @manu_mathew_ ,

try this jquery code on label name you want to catch value of label, I tested & it works on multifield as well

$("input[name='./<yourNameElement>']").parent().find("label").text()

~Aditya.Ch

1 reply

Aditya_Chabuku
Community Advisor
Aditya_ChabukuCommunity AdvisorAccepted solution
Community Advisor
July 8, 2022

Hi @manu_mathew_ ,

try this jquery code on label name you want to catch value of label, I tested & it works on multifield as well

$("input[name='./<yourNameElement>']").parent().find("label").text()

~Aditya.Ch

Thanks,Aditya Chabuku