I guess there is no id. It's just empty value option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Seems you are asking for a Multi/Single Selection of a customfield. For customfields you need the option value, not the id. Option value for "none" is -1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It depends what you mean by ID. I assume you're talking about HTML select e.g:
<select name="options"> <option value="none">None</option> <option value="one">One</option> <option value="two">Two</option> <option value="three">Three</option> </select>
Value of None option is "none" in this case but it can be anything and there is no ID. You can have
<option value="0" id="none">None</option>
in such case value of None is 0 and ID is "none".
There is no generic answer for your question I'm afraid. You would need to check the output HTML to see the concrete values.
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.