


How to extract labels(not the values inside it) from a multifield inside custom dialog customization js?
Views
Replies
Sign in to like this content
Total Likes
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
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