Hi everybody!
I have 1 custom field multi checkbox and 3 option. Also I have 3 custom field type text. I need hide text field on depending where I'm not put a checkbox. Any idea do you have ? :) I hope on your answer and help!
There's no built-in functionality that does this, but you might want to try taking a look at:
Thanks David!
Bahaviour plugin is not what I need. Yes, I can hide/visible custom field, but only on depending some permissions or compare users in role/groups. I don't know how to set exactly option value in multi checkbox custom field that hide/visible field.
Another above solution, we have a script:
<script type="text/javascript">
function toggleXXXXSelect() {
if (checkbox.checked)
Unknown macro:
else
Unknown macro:
};
checkbox = document.getElementById('customfield_10111_1');
toggleXXXXSelect = document.getElementById('customfield_10400FieldArea');
// Hide the target field by default
toggleXXXXSelect.style.display = 'none';
checkbox.onclick=toggleXXXXSelect;
toggleXXXXSelect();
</script>
unfortunately, i'm not strong in javascript, could you tell me please, what is toggleXXXXSelect(). Is it real name function or not? So, could you correct this script?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.