Hey, I'm trying to make a condition in Power Portal Web Form Step where I would like to validate two attribute of the same entity. The first field is Token while the other is Fill Token. Where can I find the entity attribute logical name and is it possible for me to operate two attributes instead of one attribute and one value? Thanks in advance
Solved! Go to Solution.
Hi @Anonymous
If you want to hide token field then add below code in webform step:
$( document ).ready(function() {
$("#cr898_token_label").hide();
$("#cr898_token").hide();
});
--------------------------
If you like this post, give a Thumbs up. Where it solved your query, Mark as a Solution so it can help other people!