Hi All,
I have one multifield and I want to hide the first index of multifield , for example I want to hide TabName#1 - HomePageSection as shown below (highlighted in yellow)
How can I do this ?
Thanks for your help.
Solved! Go to Solution.
Views
Replies
Total Likes
You can do that as well with javascript
$('coral-multifield.yourclass coral-multifield-item:first-of-type > button').hide();
you can CSS to hide the first of type
coral-multifield.yourclass coral-multifield-item:first-of-type { display:none; }
Hi @arunpatidar and all,
Thanks for your reply. But here my requirement is that I want to hide the delete and replace icon for first multifield only in my JavaScript , as highlighted in red in below screenshot.
Thanks & Regards
You can do that as well with javascript
$('coral-multifield.yourclass coral-multifield-item:first-of-type > button').hide();
thanks , it is working fine