If so let me know how to set that up.
Sorry I dont tihnk I understand you at all. Do you want to have a table for a custom field? Or have a table pop-up from a customfield when you click on it? Either way its not possible to do so without some customisation.
Hi there,
Not sure if you are requesting for this, actually you can add a prompt as a pop up for the user to input value, selection etc. To do so you need to go to that particular custom field and inspect element to check what will be the ID of the field, next replace the customfield_10001 below and try this out.
<script type="text/javascript"> customfield = document.getElementById("customfield_10001"); var name=prompt("Please enter your name","Test"); if (name!=null && name!="") { customfield.value = name; } </script>
Hope this helps :) cheers!
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.